diff --git a/.eslintrc b/.eslintrc index 581b556003..1388511b2a 100644 --- a/.eslintrc +++ b/.eslintrc @@ -1,4 +1,3 @@ - { "parser": "@typescript-eslint/parser", "env": { @@ -101,5 +100,11 @@ "project": "./tsconfig.json" }, "extends": ["standard", "semistandard", "plugin:@typescript-eslint/recommended", "prettier"], - "ignorePatterns": ["src/polkadot/", "src/middleware/types.ts", "docs/*", "src/sandbox.ts"] + "ignorePatterns": [ + "src/polkadot/", + "src/middleware/types.ts", + "src/middleware/typesLatest.ts", + "docs/*", + "src/sandbox.ts" + ] } diff --git a/src/api/client/Claims.ts b/src/api/client/Claims.ts index e4913bb959..d28e011203 100644 --- a/src/api/client/Claims.ts +++ b/src/api/client/Claims.ts @@ -209,7 +209,7 @@ export class Claims { let targetIssuers; const filters = { - scope: scope ? scopeToMiddlewareScope(scope, false) : undefined, + scope: scope ? await scopeToMiddlewareScope(scope, context) : undefined, trustedClaimIssuers: trustedClaimIssuers?.map(trustedClaimIssuer => signerToString(trustedClaimIssuer) ), @@ -437,7 +437,7 @@ export class Claims { if (isMiddlewareAvailable) { const filters = { dids: [did], - scope: scope ? scopeToMiddlewareScope(scope, false) : undefined, + scope: scope ? await scopeToMiddlewareScope(scope, context) : undefined, includeExpired, }; diff --git a/src/api/client/__tests__/Claims.ts b/src/api/client/__tests__/Claims.ts index 4760ae4dc0..a84a081b4b 100644 --- a/src/api/client/__tests__/Claims.ts +++ b/src/api/client/__tests__/Claims.ts @@ -236,6 +236,9 @@ describe('Claims Class', () => { const targetDid = 'someTargetDid'; const issuerDid = 'someIssuerDid'; const scope: Scope = { type: ScopeType.Ticker, value: 'someValue' }; + jest + .spyOn(utilsConversionModule, 'scopeToMiddlewareScope') + .mockResolvedValue({ type: 'Ticker', value: 'someValue' }); const date = 1589816265000; const accreditedType = ClaimTypeEnum.Accredited; const claimData = { diff --git a/src/api/entities/Asset/Fungible/index.ts b/src/api/entities/Asset/Fungible/index.ts index c057b18918..db99e07bb3 100644 --- a/src/api/entities/Asset/Fungible/index.ts +++ b/src/api/entities/Asset/Fungible/index.ts @@ -36,10 +36,17 @@ import { bytesToString, middlewareEventDetailsToEventIdentifier, middlewarePortfolioToPortfolio, + portfolioIdStringToPortfolio, stringToTicker, tickerToDid, } from '~/utils/conversion'; -import { calculateNextKey, createProcedureMethod, optionize } from '~/utils/internal'; +import { + calculateNextKey, + createProcedureMethod, + getAssetIdForMiddleware, + getAssetIdFromMiddleware, + optionize, +} from '~/utils/internal'; import { FungibleSettlements } from '../Base/Settlements'; import { UniqueIdentifiers } from '../types'; @@ -217,13 +224,15 @@ export class FungibleAsset extends BaseAsset { public async getOperationHistory(): Promise { const { context, ticker: assetId } = this; + const middlewareAssetId = await getAssetIdForMiddleware(assetId, context); + const { data: { tickerExternalAgentHistories: { nodes }, }, } = await context.queryMiddleware>( tickerExternalAgentHistoryQuery({ - assetId, + assetId: middlewareAssetId, }) ); @@ -250,6 +259,8 @@ export class FungibleAsset extends BaseAsset { const { context, ticker } = this; const { size, start } = opts; + const middlewareAssetId = await getAssetIdForMiddleware(ticker, context); + const { data: { assetTransactions: { nodes, totalCount }, @@ -257,34 +268,41 @@ export class FungibleAsset extends BaseAsset { } = await context.queryMiddleware>( assetTransactionQuery( { - assetId: ticker, + assetId: middlewareAssetId, }, size, start ) ); - const data = nodes.map( + const data: HistoricAssetTransaction[] = nodes.map( ({ - assetId, + asset, amount, - fromPortfolio, - toPortfolio, + fromPortfolioId, + toPortfolioId, createdBlock, eventId, eventIdx, extrinsicIdx, - }) => ({ - asset: new FungibleAsset({ ticker: assetId }, context), - amount: new BigNumber(amount).shiftedBy(-6), - event: eventId, - from: optionize(middlewarePortfolioToPortfolio)(fromPortfolio, context), - to: optionize(middlewarePortfolioToPortfolio)(toPortfolio, context), - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - extrinsicIndex: new BigNumber(extrinsicIdx!), - // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - ...middlewareEventDetailsToEventIdentifier(createdBlock!, eventIdx), - }) + }) => { + const fromPortfolio = optionize(portfolioIdStringToPortfolio)(fromPortfolioId); + const toPortfolio = optionize(portfolioIdStringToPortfolio)(toPortfolioId); + + const assetId = getAssetIdFromMiddleware(asset); + + return { + asset: new FungibleAsset({ ticker: assetId }, context), + amount: new BigNumber(amount).shiftedBy(-6), + event: eventId, + from: optionize(middlewarePortfolioToPortfolio)(fromPortfolio, context), + to: optionize(middlewarePortfolioToPortfolio)(toPortfolio, context), + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + extrinsicIndex: new BigNumber(extrinsicIdx!), + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + ...middlewareEventDetailsToEventIdentifier(createdBlock!, eventIdx), + }; + } ); const count = new BigNumber(totalCount); diff --git a/src/api/entities/Asset/__tests__/Fungible/index.ts b/src/api/entities/Asset/__tests__/Fungible/index.ts index e01d726421..247113843b 100644 --- a/src/api/entities/Asset/__tests__/Fungible/index.ts +++ b/src/api/entities/Asset/__tests__/Fungible/index.ts @@ -27,6 +27,7 @@ import { dsMockUtils, entityMockUtils, procedureMockUtils } from '~/testUtils/mo import { ErrorCode, SecurityIdentifier, SecurityIdentifierType } from '~/types'; import { tuple } from '~/types/utils'; import * as utilsConversionModule from '~/utils/conversion'; +import * as utilsInternalModule from '~/utils/internal'; jest.mock( '~/api/entities/Identity', @@ -37,7 +38,7 @@ jest.mock( require('~/testUtils/mocks/procedure').mockProcedureModule('~/base/Procedure') ); -describe('Asset class', () => { +describe('Fungible class', () => { let bytesToStringSpy: jest.SpyInstance; beforeAll(() => { dsMockUtils.initMocks(); @@ -668,6 +669,7 @@ describe('Asset class', () => { describe('method: getOperationHistory', () => { it('should return a list of agent operations', async () => { const ticker = 'TICKER'; + jest.spyOn(utilsInternalModule, 'getAssetIdForMiddleware').mockResolvedValue(ticker); const context = dsMockUtils.getContextInstance(); const asset = new FungibleAsset({ ticker }, context); @@ -730,20 +732,22 @@ describe('Asset class', () => { describe('method: getTransactionHistory', () => { it('should return the list of asset transactions', async () => { const ticker = 'TICKER'; + const assetId = '0x1234'; const context = dsMockUtils.getContextInstance(); + jest.spyOn(utilsInternalModule, 'getAssetIdForMiddleware').mockResolvedValue(ticker); const asset = new FungibleAsset({ ticker }, context); const transactionResponse = { totalCount: new BigNumber(5), nodes: [ { - assetId: ticker, + asset: { + id: assetId, + ticker, + }, amount: new BigNumber(100).shiftedBy(6), eventId: EventIdEnum.Issued, - toPortfolio: { - identityId: 'SOME_DID', - number: 0, - }, - fromPortfolio: null, + toPortfolioId: 'SOME_DID/0', + fromPortfolioId: null, eventIdx: 1, extrinsicIdx: 1, createdBlock: { @@ -753,14 +757,14 @@ describe('Asset class', () => { }, }, { - assetId: ticker, + asset: { + id: assetId, + ticker, + }, amount: new BigNumber(1).shiftedBy(6), eventId: EventIdEnum.Redeemed, - fromPortfolio: { - identityId: 'SOME_DID', - number: 0, - }, - toPortfolio: null, + fromPortfolioId: 'SOME_DID/0', + toPortfolioId: null, eventIdx: 1, extrinsicIdx: 1, createdBlock: { @@ -770,17 +774,16 @@ describe('Asset class', () => { }, }, { - assetId: ticker, + asset: { + id: assetId, + ticker, + }, amount: new BigNumber(10).shiftedBy(6), eventId: EventIdEnum.Transfer, - fromPortfolio: { - identityId: 'SOME_DID', - number: 0, - }, - toPortfolio: { - identityId: 'SOME_OTHER_DID', - number: 1, - }, + fromPortfolioId: 'SOME_DID/0', + toPortfolioId: 'SOME_OTHER_DID/1', + instructionId: '2', + instructionMemo: 'Some memo', eventIdx: 1, extrinsicIdx: 1, createdBlock: { diff --git a/src/api/entities/DefaultTrustedClaimIssuer.ts b/src/api/entities/DefaultTrustedClaimIssuer.ts index a2af40d604..8336f3beda 100644 --- a/src/api/entities/DefaultTrustedClaimIssuer.ts +++ b/src/api/entities/DefaultTrustedClaimIssuer.ts @@ -8,7 +8,7 @@ import { stringToTicker, trustedIssuerToTrustedClaimIssuer, } from '~/utils/conversion'; -import { optionize } from '~/utils/internal'; +import { getAssetIdForMiddleware, optionize } from '~/utils/internal'; export interface UniqueIdentifiers { did: string; @@ -58,6 +58,7 @@ export class DefaultTrustedClaimIssuer extends Identity { context, } = this; + const middlewareAssetId = await getAssetIdForMiddleware(assetId, context); const { data: { trustedClaimIssuers: { @@ -66,7 +67,7 @@ export class DefaultTrustedClaimIssuer extends Identity { }, } = await context.queryMiddleware>( trustedClaimIssuerQuery({ - assetId, + assetId: middlewareAssetId, issuer, }) ); diff --git a/src/api/entities/DividendDistribution/__tests__/index.ts b/src/api/entities/DividendDistribution/__tests__/index.ts index 22443820bf..158628dc82 100644 --- a/src/api/entities/DividendDistribution/__tests__/index.ts +++ b/src/api/entities/DividendDistribution/__tests__/index.ts @@ -19,6 +19,7 @@ import { } from '~/types'; import { MAX_DECIMALS } from '~/utils/constants'; import * as utilsConversionModule from '~/utils/conversion'; +import * as utilsInternalModule from '~/utils/internal'; jest.mock( '~/api/entities/Identity', @@ -276,6 +277,10 @@ describe('DividendDistribution class', () => { }); describe('method: getWithheldTax', () => { + beforeEach(() => { + jest.spyOn(utilsInternalModule, 'getAssetIdForMiddleware').mockResolvedValue(ticker); + }); + it('should return the amount of the withheld tax', async () => { const fakeTax = new BigNumber(1000000); @@ -547,6 +552,10 @@ describe('DividendDistribution class', () => { }); describe('method: getPaymentHistory', () => { + beforeEach(() => { + jest.spyOn(utilsInternalModule, 'getAssetIdForMiddleware').mockResolvedValue(ticker); + }); + it('should return the amount of the withheld tax', async () => { const blockId = new BigNumber(1); const blockHash = 'someHash'; diff --git a/src/api/entities/DividendDistribution/index.ts b/src/api/entities/DividendDistribution/index.ts index 17e353b9d5..2c2c47dc49 100644 --- a/src/api/entities/DividendDistribution/index.ts +++ b/src/api/entities/DividendDistribution/index.ts @@ -51,6 +51,7 @@ import { import { calculateNextKey, createProcedureMethod, + getAssetIdForMiddleware, getIdentity, toHumanReadable, xor, @@ -449,9 +450,11 @@ export class DividendDistribution extends CorporateActionBase { context, } = this; + const middlewareAssetId = await getAssetIdForMiddleware(ticker, context); + const taxPromise = context.queryMiddleware>( distributionQuery({ - assetId: ticker, + assetId: middlewareAssetId, localId: id.toNumber(), }) ); @@ -491,10 +494,12 @@ export class DividendDistribution extends CorporateActionBase { } = this; const { size, start } = opts; + const middlewareAssetId = await getAssetIdForMiddleware(ticker, context); + const paymentsPromise = context.queryMiddleware>( distributionPaymentsQuery( { - distributionId: `${ticker}/${id.toString()}`, + distributionId: `${middlewareAssetId}/${id.toString()}`, }, size, start diff --git a/src/api/entities/Identity/AssetPermissions.ts b/src/api/entities/Identity/AssetPermissions.ts index 7b83a8b875..a9221a1d73 100644 --- a/src/api/entities/Identity/AssetPermissions.ts +++ b/src/api/entities/Identity/AssetPermissions.ts @@ -44,6 +44,7 @@ import { asTicker, calculateNextKey, createProcedureMethod, + getAssetIdForMiddleware, isModuleOrTagMatch, optionize, } from '~/utils/internal'; @@ -321,7 +322,8 @@ export class AssetPermissions extends Namespace { asset: string | FungibleAsset | NftCollection; }): Promise { const { context } = this; - const ticker = asTicker(asset); + + const middlewareAssetId = await getAssetIdForMiddleware(asset, context); const { data: { @@ -331,7 +333,7 @@ export class AssetPermissions extends Namespace { }, } = await context.queryMiddleware>( tickerExternalAgentsQuery({ - assetId: ticker, + assetId: middlewareAssetId, }) ); @@ -376,7 +378,7 @@ export class AssetPermissions extends Namespace { const { asset, moduleId: palletName, eventId, size, start } = opts; - const ticker = asTicker(asset); + const middlewareAssetId = await getAssetIdForMiddleware(asset, context); const { data: { @@ -385,7 +387,7 @@ export class AssetPermissions extends Namespace { } = await context.queryMiddleware>( tickerExternalAgentActionsQuery( { - assetId: ticker, + assetId: middlewareAssetId, callerId: did, palletName, eventId, diff --git a/src/api/entities/Identity/__tests__/AssetPermissions.ts b/src/api/entities/Identity/__tests__/AssetPermissions.ts index 9ab84a34e6..5f1d85273e 100644 --- a/src/api/entities/Identity/__tests__/AssetPermissions.ts +++ b/src/api/entities/Identity/__tests__/AssetPermissions.ts @@ -2,6 +2,7 @@ import { PolymeshPrimitivesIdentityId, PolymeshPrimitivesTicker } from '@polkado import BigNumber from 'bignumber.js'; import { when } from 'jest-when'; +import { AssetPermissions } from '~/api/entities/Identity/AssetPermissions'; import { Context, Identity, @@ -15,8 +16,7 @@ import { Mocked } from '~/testUtils/types'; import { FungibleAsset, PermissionGroupType, PermissionType, TxTags } from '~/types'; import { tuple } from '~/types/utils'; import * as utilsConversionModule from '~/utils/conversion'; - -import { AssetPermissions } from '../AssetPermissions'; +import * as utilsInternalModule from '~/utils/internal'; jest.mock( '~/base/Procedure', @@ -90,6 +90,10 @@ describe('AssetPermissions class', () => { }); describe('method: enabledAt', () => { + beforeEach(() => { + jest.spyOn(utilsInternalModule, 'getAssetIdForMiddleware').mockResolvedValue(ticker); + }); + it('should return the event identifier object of the agent added', async () => { const blockNumber = new BigNumber(1234); const blockDate = new Date('4/14/2020'); @@ -423,6 +427,10 @@ describe('AssetPermissions class', () => { }); describe('method: getOperationHistory', () => { + beforeEach(() => { + jest.spyOn(utilsInternalModule, 'getAssetIdForMiddleware').mockResolvedValue(ticker); + }); + it('should return the Events triggered by Operations the Identity has performed on a specific Asset', async () => { const blockId = new BigNumber(1); const blockHash = 'someHash'; diff --git a/src/api/entities/Identity/__tests__/index.ts b/src/api/entities/Identity/__tests__/index.ts index 98bd740d6d..e3207be4f5 100644 --- a/src/api/entities/Identity/__tests__/index.ts +++ b/src/api/entities/Identity/__tests__/index.ts @@ -19,6 +19,7 @@ import { PolymeshError, PolymeshTransaction, } from '~/internal'; +import { instructionPartiesQuery } from '~/middleware/newSettlementsQueries'; import { assetHoldersQuery, instructionsByDidQuery, @@ -44,6 +45,7 @@ import { VenueType, } from '~/types'; import { tuple } from '~/types/utils'; +import { SETTLEMENTS_V2_SQ_VERSION } from '~/utils/constants'; import * as utilsConversionModule from '~/utils/conversion'; import * as utilsInternalModule from '~/utils/internal'; @@ -580,7 +582,10 @@ describe('Identity class', () => { const identity = new Identity({ did }, context); dsMockUtils.createApolloQueryMock(assetHoldersQuery({ identityId: did }), { - assetHolders: { nodes: tickers.map(ticker => ({ assetId: ticker })), totalCount: 2 }, + assetHolders: { + nodes: tickers.map(ticker => ({ asset: { id: ticker, ticker } })), + totalCount: 2, + }, }); let result = await identity.getHeldAssets(); @@ -596,7 +601,10 @@ describe('Identity class', () => { AssetHoldersOrderBy.CreatedBlockIdAsc ), { - assetHolders: { nodes: tickers.map(ticker => ({ assetId: ticker })), totalCount: 2 }, + assetHolders: { + nodes: tickers.map(ticker => ({ asset: { id: ticker, ticker } })), + totalCount: 2, + }, } ); @@ -620,7 +628,7 @@ describe('Identity class', () => { dsMockUtils.createApolloQueryMock(nftHoldersQuery({ identityId: did }), { nftHolders: { - nodes: tickers.map(ticker => ({ assetId: ticker, nftIds: [] })), + nodes: tickers.map(ticker => ({ asset: { id: ticker, ticker }, nftIds: [] })), totalCount: 2, }, }); @@ -639,7 +647,7 @@ describe('Identity class', () => { ), { nftHolders: { - nodes: tickers.map(ticker => ({ assetId: ticker, nftIds: [1, 3] })), + nodes: tickers.map(ticker => ({ asset: { id: ticker, ticker }, nftIds: [1, 3] })), totalCount: 2, }, } @@ -1216,9 +1224,15 @@ describe('Identity class', () => { }); describe('method: getHistoricalInstructions', () => { - it('should return the list of all instructions where the Identity was involved', async () => { + let getLatestSqVersionSpy: jest.SpyInstance; + beforeEach(() => { + getLatestSqVersionSpy = jest.spyOn(utilsInternalModule, 'getLatestSqVersion'); + }); + + it('should return the list of all instructions where the Identity was involved for older SQ', async () => { + getLatestSqVersionSpy.mockResolvedValue('15.0.0'); const identity = new Identity({ did: 'someDid' }, context); - const middlewareInstructionToHistoricInstructionSpy = jest.spyOn( + const oldMiddlewareInstructionToHistoricInstructionSpy = jest.spyOn( utilsConversionModule, 'middlewareInstructionToHistoricInstruction' ); @@ -1234,6 +1248,32 @@ describe('Identity class', () => { const mockHistoricInstruction = 'mockData' as unknown as HistoricInstruction; + oldMiddlewareInstructionToHistoricInstructionSpy.mockReturnValue(mockHistoricInstruction); + + const result = await identity.getHistoricalInstructions(); + + expect(result).toEqual([mockHistoricInstruction]); + }); + + it('should return the list of all instructions where the Identity was involved', async () => { + getLatestSqVersionSpy.mockResolvedValue(SETTLEMENTS_V2_SQ_VERSION); + const identity = new Identity({ did: 'someDid' }, context); + const middlewareInstructionToHistoricInstructionSpy = jest.spyOn( + utilsConversionModule, + 'latestMiddlewareInstructionToHistoricInstruction' + ); + + const legsResponse = { + totalCount: 5, + nodes: [{ instruction: 'instruction' }], + }; + + dsMockUtils.createApolloQueryMock(instructionPartiesQuery(identity.did), { + instructionParties: legsResponse, + }); + + const mockHistoricInstruction = 'mockData' as unknown as HistoricInstruction; + middlewareInstructionToHistoricInstructionSpy.mockReturnValue(mockHistoricInstruction); const result = await identity.getHistoricalInstructions(); diff --git a/src/api/entities/Identity/index.ts b/src/api/entities/Identity/index.ts index f751fa9bb3..a64ce6ab35 100644 --- a/src/api/entities/Identity/index.ts +++ b/src/api/entities/Identity/index.ts @@ -6,7 +6,7 @@ import { } from '@polkadot/types/lookup'; import BigNumber from 'bignumber.js'; import P from 'bluebird'; -import { chunk, differenceWith, flatten, intersectionWith, uniqBy } from 'lodash'; +import { chunk, differenceWith, flatten, intersectionWith, lt, uniqBy } from 'lodash'; import { unlinkChildIdentity } from '~/api/procedures/unlinkChildIdentity'; import { assertPortfolioExists } from '~/api/procedures/utils'; @@ -23,6 +23,7 @@ import { TickerReservation, Venue, } from '~/internal'; +import { instructionPartiesQuery } from '~/middleware/newSettlementsQueries'; import { assetHoldersQuery, instructionsByDidQuery, @@ -30,6 +31,7 @@ import { trustingAssetsQuery, } from '~/middleware/queries'; import { AssetHoldersOrderBy, NftHoldersOrderBy, Query } from '~/middleware/types'; +import { Query as LatestQuery } from '~/middleware/typesLatest'; import { CheckRolesResult, DefaultPortfolio, @@ -58,7 +60,11 @@ import { isTickerOwnerRole, isVenueOwnerRole, } from '~/utils'; -import { MAX_CONCURRENT_REQUESTS, MAX_PAGE_SIZE } from '~/utils/constants'; +import { + MAX_CONCURRENT_REQUESTS, + MAX_PAGE_SIZE, + SETTLEMENTS_V2_SQ_VERSION, +} from '~/utils/constants'; import { accountIdToString, balanceToBigNumber, @@ -66,6 +72,7 @@ import { cddStatusToBoolean, corporateActionIdentifierToCaId, identityIdToString, + latestMiddlewareInstructionToHistoricInstruction, middlewareInstructionToHistoricInstruction, portfolioIdToMeshPortfolioId, portfolioIdToPortfolio, @@ -78,6 +85,8 @@ import { import { calculateNextKey, createProcedureMethod, + getAssetIdFromMiddleware, + getLatestSqVersion, getSecondaryAccountPermissions, requestPaginated, } from '~/utils/internal'; @@ -373,8 +382,9 @@ export class Identity extends Entity { const count = new BigNumber(totalCount); - const data = nodes.map(({ assetId: ticker }) => new FungibleAsset({ ticker }, context)); - + const data = nodes.map( + ({ asset }) => new FungibleAsset({ ticker: getAssetIdFromMiddleware(asset) }, context) + ); const next = calculateNextKey(count, data.length, start); return { @@ -418,9 +428,19 @@ export class Identity extends Entity { const count = new BigNumber(totalCount); - const data = nodes.map(({ assetId: ticker, nftIds }) => { - const collection = new NftCollection({ ticker }, context); - const nfts = nftIds.map((id: number) => new Nft({ ticker, id: new BigNumber(id) }, context)); + const data = nodes.map(({ asset, nftIds }) => { + const assetId = getAssetIdFromMiddleware(asset); + const collection = new NftCollection({ ticker: assetId }, context); + const nfts = nftIds.map( + (id: number) => + new Nft( + { + ticker: assetId, + id: new BigNumber(id), + }, + context + ) + ); return { collection, nfts }; }); @@ -855,15 +875,34 @@ export class Identity extends Entity { public async getHistoricalInstructions(): Promise { const { context, did } = this; + // TODO @prashantasdeveloper Remove after SQ dual version support + const sqVersion = await getLatestSqVersion(context); + + if (lt(sqVersion, SETTLEMENTS_V2_SQ_VERSION)) { + const { + data: { + legs: { nodes: instructionsResult }, + }, + } = await context.queryMiddleware>(instructionsByDidQuery(did)); + + return instructionsResult.map(({ instruction }) => + // eslint-disable-next-line @typescript-eslint/no-non-null-assertion + middlewareInstructionToHistoricInstruction(instruction!, context) + ); + } + // Dual version support end + const { data: { - legs: { nodes: instructionsResult }, + instructionParties: { nodes: instructionsResult }, }, - } = await context.queryMiddleware>(instructionsByDidQuery(did)); + } = await context.queryMiddleware>( + instructionPartiesQuery(did) + ); return instructionsResult.map(({ instruction }) => // eslint-disable-next-line @typescript-eslint/no-non-null-assertion - middlewareInstructionToHistoricInstruction(instruction!, context) + latestMiddlewareInstructionToHistoricInstruction(instruction!, context) ); } diff --git a/src/api/entities/Instruction/__tests__/index.ts b/src/api/entities/Instruction/__tests__/index.ts index 4833843de7..80695624b1 100644 --- a/src/api/entities/Instruction/__tests__/index.ts +++ b/src/api/entities/Instruction/__tests__/index.ts @@ -4,8 +4,10 @@ import BigNumber from 'bignumber.js'; import { when } from 'jest-when'; import { Context, Entity, Instruction, PolymeshTransaction } from '~/internal'; +import { instructionEventsQuery } from '~/middleware/newSettlementsQueries'; import { instructionsQuery } from '~/middleware/queries'; import { InstructionStatusEnum } from '~/middleware/types'; +import { InstructionEventEnum } from '~/middleware/typesLatest'; import { dsMockUtils, entityMockUtils, procedureMockUtils } from '~/testUtils/mocks'; import { createMockInstructionStatus, @@ -25,6 +27,7 @@ import { } from '~/types'; import { InstructionStatus as InternalInstructionStatus } from '~/types/internal'; import { tuple } from '~/types/utils'; +import { SETTLEMENTS_V2_SQ_VERSION } from '~/utils/constants'; import * as utilsConversionModule from '~/utils/conversion'; import * as utilsInternalModule from '~/utils/internal'; @@ -846,12 +849,15 @@ describe('Instruction class', () => { }); let bigNumberToU64Spy: jest.SpyInstance; + let getLatestSqVersionSpy: jest.SpyInstance; beforeAll(() => { bigNumberToU64Spy = jest.spyOn(utilsConversionModule, 'bigNumberToU64'); + getLatestSqVersionSpy = jest.spyOn(utilsInternalModule, 'getLatestSqVersion'); }); beforeEach(() => { + getLatestSqVersionSpy.mockResolvedValue('15.0.0'); when(bigNumberToU64Spy).calledWith(id, context).mockReturnValue(rawId); }); @@ -937,7 +943,47 @@ describe('Instruction class', () => { }, ]); - const result = await instruction.getStatus(); + let result = await instruction.getStatus(); + expect(result).toMatchObject({ + status: InstructionStatus.Success, + eventIdentifier: fakeEventIdentifierResult, + }); + + getLatestSqVersionSpy.mockResolvedValueOnce(SETTLEMENTS_V2_SQ_VERSION); + dsMockUtils.createApolloMultipleQueriesMock([ + { + query: instructionEventsQuery( + { + event: InstructionEventEnum.InstructionExecuted, + instructionId: id.toString(), + }, + new BigNumber(1), + new BigNumber(0) + ), + returnData: { + instructionEvents: { + nodes: [fakeQueryResult], + }, + }, + }, + { + query: instructionEventsQuery( + { + event: InstructionEventEnum.InstructionFailed, + instructionId: id.toString(), + }, + new BigNumber(1), + new BigNumber(0) + ), + returnData: { + instructionEvents: { + nodes: [], + }, + }, + }, + ]); + + result = await instruction.getStatus(); expect(result).toMatchObject({ status: InstructionStatus.Success, eventIdentifier: fakeEventIdentifierResult, @@ -1004,7 +1050,47 @@ describe('Instruction class', () => { }, ]); - const result = await instruction.getStatus(); + let result = await instruction.getStatus(); + expect(result).toMatchObject({ + status: InstructionStatus.Failed, + eventIdentifier: fakeEventIdentifierResult, + }); + + getLatestSqVersionSpy.mockResolvedValueOnce(SETTLEMENTS_V2_SQ_VERSION); + dsMockUtils.createApolloMultipleQueriesMock([ + { + query: instructionEventsQuery( + { + event: InstructionEventEnum.InstructionExecuted, + instructionId: id.toString(), + }, + new BigNumber(1), + new BigNumber(0) + ), + returnData: { + instructionEvents: { + nodes: [], + }, + }, + }, + { + query: instructionEventsQuery( + { + event: InstructionEventEnum.InstructionFailed, + instructionId: id.toString(), + }, + new BigNumber(1), + new BigNumber(0) + ), + returnData: { + instructionEvents: { + nodes: [fakeQueryResult], + }, + }, + }, + ]); + + result = await instruction.getStatus(); expect(result).toMatchObject({ status: InstructionStatus.Failed, eventIdentifier: fakeEventIdentifierResult, @@ -1059,7 +1145,45 @@ describe('Instruction class', () => { }, ]); - return expect(instruction.getStatus()).rejects.toThrow( + await expect(instruction.getStatus()).rejects.toThrow( + "It isn't possible to determine the current status of this Instruction" + ); + + getLatestSqVersionSpy.mockResolvedValueOnce(SETTLEMENTS_V2_SQ_VERSION); + dsMockUtils.createApolloMultipleQueriesMock([ + { + query: instructionEventsQuery( + { + event: InstructionEventEnum.InstructionExecuted, + instructionId: id.toString(), + }, + new BigNumber(1), + new BigNumber(0) + ), + returnData: { + instructionEvents: { + nodes: [], + }, + }, + }, + { + query: instructionEventsQuery( + { + event: InstructionEventEnum.InstructionFailed, + instructionId: id.toString(), + }, + new BigNumber(1), + new BigNumber(0) + ), + returnData: { + instructionEvents: { + nodes: [], + }, + }, + }, + ]); + + await expect(instruction.getStatus()).rejects.toThrow( "It isn't possible to determine the current status of this Instruction" ); }); diff --git a/src/api/entities/Instruction/index.ts b/src/api/entities/Instruction/index.ts index fd6e0dd9d8..67ad4c0029 100644 --- a/src/api/entities/Instruction/index.ts +++ b/src/api/entities/Instruction/index.ts @@ -4,6 +4,7 @@ import { } from '@polkadot/types/lookup'; import BigNumber from 'bignumber.js'; import P from 'bluebird'; +import { lt } from 'lodash'; import { executeManualInstruction } from '~/api/procedures/executeManualInstruction'; import { @@ -17,8 +18,10 @@ import { PolymeshError, Venue, } from '~/internal'; +import { instructionEventsQuery } from '~/middleware/newSettlementsQueries'; import { instructionsQuery } from '~/middleware/queries'; import { InstructionStatusEnum, Query } from '~/middleware/types'; +import { InstructionEventEnum } from '~/middleware/typesLatest'; import { AffirmOrWithdrawInstructionParams, DefaultPortfolio, @@ -36,6 +39,7 @@ import { } from '~/types'; import { InstructionStatus as InternalInstructionStatus } from '~/types/internal'; import { Ensured } from '~/types/utils'; +import { SETTLEMENTS_V2_SQ_VERSION } from '~/utils/constants'; import { balanceToBigNumber, bigNumberToU64, @@ -51,7 +55,13 @@ import { tickerToString, u64ToBigNumber, } from '~/utils/conversion'; -import { createProcedureMethod, optionize, requestMulti, requestPaginated } from '~/utils/internal'; +import { + createProcedureMethod, + getLatestSqVersion, + optionize, + requestMulti, + requestPaginated, +} from '~/utils/internal'; import { InstructionAffirmation, @@ -431,8 +441,8 @@ export class Instruction extends Entity { } const [executedEventIdentifier, failedEventIdentifier] = await Promise.all([ - this.getInstructionEventFromMiddleware(InstructionStatusEnum.Executed), - this.getInstructionEventFromMiddleware(InstructionStatusEnum.Failed), + this.getInstructionEventFromMiddleware(InstructionEventEnum.InstructionExecuted), + this.getInstructionEventFromMiddleware(InstructionEventEnum.InstructionFailed), ]); if (executedEventIdentifier) { @@ -485,21 +495,54 @@ export class Instruction extends Entity { * Retrieve Instruction status event from middleware V2 */ private async getInstructionEventFromMiddleware( - status: InstructionStatusEnum + event: InstructionEventEnum.InstructionExecuted | InstructionEventEnum.InstructionFailed ): Promise { const { id, context } = this; + // TODO @prashantasdeveloper Remove after SQ dual version support + const sqVersion = await getLatestSqVersion(context); + + const instructionStatusMap = { + [InstructionEventEnum.InstructionExecuted]: InstructionStatusEnum.Executed, + [InstructionEventEnum.InstructionFailed]: InstructionStatusEnum.Failed, + }; + + if (lt(sqVersion, SETTLEMENTS_V2_SQ_VERSION)) { + const { + data: { + instructions: { + nodes: [details], + }, + }, + } = await context.queryMiddleware>( + instructionsQuery( + { + status: instructionStatusMap[event], + id: id.toString(), + }, + new BigNumber(1), + new BigNumber(0) + ) + ); + + return optionize(middlewareEventDetailsToEventIdentifier)( + details?.updatedBlock, + details?.eventIdx + ); + } + // Dual version support end + const { data: { - instructions: { + instructionEvents: { nodes: [details], }, }, - } = await context.queryMiddleware>( - instructionsQuery( + } = await context.queryMiddleware( + instructionEventsQuery( { - status, - id: id.toString(), + event, + instructionId: id.toString(), }, new BigNumber(1), new BigNumber(0) diff --git a/src/api/entities/Portfolio/__tests__/index.ts b/src/api/entities/Portfolio/__tests__/index.ts index eac21b7794..d984a63d79 100644 --- a/src/api/entities/Portfolio/__tests__/index.ts +++ b/src/api/entities/Portfolio/__tests__/index.ts @@ -15,12 +15,15 @@ import { PolymeshTransaction, Portfolio, } from '~/internal'; +import { settlementsQuery as newSettlementsQuery } from '~/middleware/newSettlementsQueries'; import { portfolioMovementsQuery, settlementsQuery } from '~/middleware/queries'; -import { SettlementResultEnum } from '~/middleware/types'; +import { InstructionStatusEnum, LegTypeEnum, SettlementResultEnum } from '~/middleware/types'; import { dsMockUtils, entityMockUtils, procedureMockUtils } from '~/testUtils/mocks'; import { FungibleLeg, MoveFundsParams, SettlementDirectionEnum } from '~/types'; import { tuple } from '~/types/utils'; +import { SETTLEMENTS_V2_SQ_VERSION } from '~/utils/constants'; import * as utilsConversionModule from '~/utils/conversion'; +import * as utilsInternalModule from '~/utils/internal'; jest.mock( '~/api/entities/Identity', @@ -538,40 +541,46 @@ describe('Portfolio class', () => { let did: string; let id: BigNumber; - beforeAll(() => { - did = 'someDid'; - id = new BigNumber(1); - }); + const account = 'someAccount'; + const key = 'someKey'; - afterAll(() => { - jest.restoreAllMocks(); - }); + const blockNumber1 = new BigNumber(1); + const blockNumber2 = new BigNumber(2); - it('should return a list of transactions', async () => { - let portfolio = new NonAbstract({ id, did }, context); + const blockHash1 = 'someHash'; + const blockHash2 = 'otherHash'; - const account = 'someAccount'; - const key = 'someKey'; + const ticker1 = 'TICKER_1'; + const ticker2 = 'TICKER_2'; - const blockNumber1 = new BigNumber(1); - const blockNumber2 = new BigNumber(2); + const amount1 = new BigNumber(1000); + const amount2 = new BigNumber(2000); - const blockHash1 = 'someHash'; - const blockHash2 = 'otherHash'; + const portfolioDid1 = 'portfolioDid1'; + const portfolioNumber1 = 0; - const ticker1 = 'TICKER_1'; - const ticker2 = 'TICKER_2'; + const portfolioDid2 = 'someDid'; + const portfolioNumber2 = 1; - const amount1 = new BigNumber(1000); - const amount2 = new BigNumber(2000); + const portfolioId2 = new BigNumber(portfolioNumber2); + + let getLatestSqVersionSpy: jest.SpyInstance; + + beforeAll(() => { + did = 'someDid'; + id = new BigNumber(1); + getLatestSqVersionSpy = jest.spyOn(utilsInternalModule, 'getLatestSqVersion'); + }); - const portfolioDid1 = 'portfolioDid1'; - const portfolioNumber1 = '0'; + afterAll(() => { + jest.restoreAllMocks(); + }); - const portfolioDid2 = 'someDid'; - const portfolioNumber2 = '1'; + // TODO @prashantasdeveloper Remove after SQ dual version support + it('should return a list of transactions for old SQ', async () => { + getLatestSqVersionSpy.mockResolvedValue('15.0.0'); - const portfolioId2 = new BigNumber(portfolioNumber2); + let portfolio = new NonAbstract({ id, did }, context); const legs1 = [ { @@ -646,7 +655,7 @@ describe('Portfolio class', () => { identityId: did, portfolioId: id, address: key, - ticker: undefined, + assetId: undefined, }), returnData: { legs: settlementsResponse, @@ -657,7 +666,7 @@ describe('Portfolio class', () => { identityId: did, portfolioId: id, address: key, - ticker: undefined, + assetId: undefined, }), returnData: { portfolioMovements: { @@ -675,16 +684,16 @@ describe('Portfolio class', () => { expect(result[1].blockNumber).toEqual(blockNumber2); expect(result[0].blockHash).toBe(blockHash1); expect(result[1].blockHash).toBe(blockHash2); - expect(result[0].legs[0].asset.ticker).toBe(ticker1); - expect(result[1].legs[0].asset.ticker).toBe(ticker2); + expect((result[0].legs[0] as FungibleLeg).asset.ticker).toBe(ticker1); + expect((result[1].legs[0] as FungibleLeg).asset.ticker).toBe(ticker2); expect((result[0].legs[0] as FungibleLeg).amount).toEqual(amount1.div(Math.pow(10, 6))); expect((result[1].legs[0] as FungibleLeg).amount).toEqual(amount2.div(Math.pow(10, 6))); - expect(result[0].legs[0].from.owner.did).toBe(portfolioDid1); - expect(result[0].legs[0].to.owner.did).toBe(portfolioDid2); + expect((result[0].legs[0] as FungibleLeg).from.owner.did).toBe(portfolioDid1); + expect((result[0].legs[0] as FungibleLeg).to.owner.did).toBe(portfolioDid2); expect((result[0].legs[0].to as NumberedPortfolio).id).toEqual(portfolioId2); - expect(result[1].legs[0].from.owner.did).toBe(portfolioDid2); + expect((result[1].legs[0] as FungibleLeg).from.owner.did).toBe(portfolioDid2); expect((result[1].legs[0].from as NumberedPortfolio).id).toEqual(portfolioId2); - expect(result[1].legs[0].to.owner.did).toEqual(portfolioDid1); + expect((result[1].legs[0] as FungibleLeg).to.owner.did).toEqual(portfolioDid1); dsMockUtils.createApolloMultipleQueriesMock([ { @@ -692,7 +701,7 @@ describe('Portfolio class', () => { identityId: did, portfolioId: undefined, address: undefined, - ticker: undefined, + assetId: undefined, }), returnData: { legs: { @@ -705,7 +714,7 @@ describe('Portfolio class', () => { identityId: did, portfolioId: undefined, address: undefined, - ticker: undefined, + assetId: undefined, }), returnData: { portfolioMovements: { @@ -715,7 +724,10 @@ describe('Portfolio class', () => { blockId: blockNumber1.toNumber(), hash: 'someHash', }, - assetId: ticker2, + asset: { + id: ticker2, + ticker: ticker2, + }, amount: amount2, address: 'be865155e5b6be843e99117a825e9580bb03e401a9c2ace644fff604fe624917', from: { @@ -740,24 +752,177 @@ describe('Portfolio class', () => { expect(result[0].blockNumber).toEqual(blockNumber1); expect(result[0].blockHash).toBe(blockHash1); - expect(result[0].legs[0].asset.ticker).toBe(ticker2); + expect((result[0].legs[0] as FungibleLeg).asset.ticker).toBe(ticker2); expect((result[0].legs[0] as FungibleLeg).amount).toEqual(amount2.div(Math.pow(10, 6))); - expect(result[0].legs[0].from.owner.did).toBe(portfolioDid1); - expect(result[0].legs[0].to.owner.did).toBe(portfolioDid1); + expect((result[0].legs[0] as FungibleLeg).from.owner.did).toBe(portfolioDid1); + expect((result[0].legs[0] as FungibleLeg).to.owner.did).toBe(portfolioDid1); expect((result[0].legs[0].to as NumberedPortfolio).id).toEqual(portfolioId2); + expect(result[0].legs[0].direction).toEqual(SettlementDirectionEnum.None); }); - it('should throw an error if the portfolio does not exist', () => { + it('should throw an error if the portfolio does not exist for old SQ', () => { + getLatestSqVersionSpy.mockResolvedValue('15.0.0'); + const portfolio = new NonAbstract({ did, id }, context); exists = false; dsMockUtils.createApolloMultipleQueriesMock([ { query: settlementsQuery({ + identityId: did, + portfolioId: id, + address: undefined, + assetId: undefined, + }), + returnData: { + legs: { + nodes: [], + }, + }, + }, + { + query: portfolioMovementsQuery({ + identityId: did, + portfolioId: id, + address: undefined, + assetId: undefined, + }), + returnData: { + portfolioMovements: { + nodes: [], + }, + }, + }, + ]); + + return expect(portfolio.getTransactionHistory()).rejects.toThrow( + "The Portfolio doesn't exist or was removed by its owner" + ); + }); + + it('should return a list of transactions', async () => { + getLatestSqVersionSpy.mockResolvedValue(SETTLEMENTS_V2_SQ_VERSION); + + let portfolio = new NonAbstract({ id, did }, context); + + const legs1 = [ + { + legType: LegTypeEnum.Fungible, + assetId: ticker1, + ticker: ticker1, + amount: amount1, + direction: SettlementDirectionEnum.Incoming, + addresses: ['5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY'], + fromPortfolio: portfolioNumber1, + from: portfolioDid1, + toPortfolio: portfolioNumber2, + to: portfolioDid2, + createdBlock: { + blockId: new BigNumber(1234), + hash: '0xsomehash', + }, + }, + ]; + const legs2 = [ + { + legType: LegTypeEnum.Fungible, + assetId: ticker2, + ticker: ticker2, + amount: amount2, + direction: SettlementDirectionEnum.Outgoing, + addresses: ['5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY'], + toPortfolio: portfolioNumber1, + to: portfolioDid1, + fromPortfolio: portfolioNumber2, + from: portfolioDid2, + createdBlock: { + blockId: new BigNumber(1234), + hash: '0xsomehash', + }, + }, + ]; + + const settlementsResponse = { + nodes: [ + { + instruction: { + createdBlock: { + blockId: blockNumber1.toNumber(), + hash: blockHash1, + }, + id: '1', + status: InstructionStatusEnum.Executed, + legs: { nodes: legs1 }, + }, + }, + { + instruction: { + createdBlock: { + blockId: blockNumber2.toNumber(), + hash: blockHash2, + }, + id: '2', + status: InstructionStatusEnum.Executed, + legs: { nodes: legs2 }, + }, + }, + ], + }; + + dsMockUtils.createApolloMultipleQueriesMock([ + { + query: newSettlementsQuery({ + identityId: did, + portfolioId: id, + address: account, + assetId: undefined, + }), + returnData: { + legs: settlementsResponse, + }, + }, + { + query: portfolioMovementsQuery({ + identityId: did, + portfolioId: id, + address: account, + assetId: undefined, + }), + returnData: { + portfolioMovements: { + nodes: [], + }, + }, + }, + ]); + + let result = await portfolio.getTransactionHistory({ + account, + }); + + expect(result[0].blockNumber).toEqual(blockNumber1); + expect(result[1].blockNumber).toEqual(blockNumber2); + expect(result[0].blockHash).toBe(blockHash1); + expect(result[1].blockHash).toBe(blockHash2); + expect((result[0].legs[0] as FungibleLeg).asset.ticker).toBe(ticker1); + expect((result[1].legs[0] as FungibleLeg).asset.ticker).toBe(ticker2); + expect((result[0].legs[0] as FungibleLeg).amount).toEqual(amount1.div(Math.pow(10, 6))); + expect((result[1].legs[0] as FungibleLeg).amount).toEqual(amount2.div(Math.pow(10, 6))); + expect((result[0].legs[0] as FungibleLeg).from.owner.did).toBe(portfolioDid1); + expect((result[0].legs[0] as FungibleLeg).to.owner.did).toBe(portfolioDid2); + expect((result[0].legs[0].to as NumberedPortfolio).id).toEqual(portfolioId2); + expect((result[1].legs[0] as FungibleLeg).from.owner.did).toBe(portfolioDid2); + expect((result[1].legs[0].from as NumberedPortfolio).id).toEqual(portfolioId2); + expect((result[1].legs[0] as FungibleLeg).to.owner.did).toEqual(portfolioDid1); + + jest.spyOn(utilsInternalModule, 'getAssetIdForMiddleware').mockResolvedValue(ticker2); + dsMockUtils.createApolloMultipleQueriesMock([ + { + query: newSettlementsQuery({ identityId: did, portfolioId: undefined, address: undefined, - ticker: undefined, + assetId: ticker2, }), returnData: { legs: { @@ -770,7 +935,79 @@ describe('Portfolio class', () => { identityId: did, portfolioId: undefined, address: undefined, - ticker: undefined, + assetId: ticker2, + }), + returnData: { + portfolioMovements: { + nodes: [ + { + createdBlock: { + blockId: blockNumber1.toNumber(), + hash: 'someHash', + }, + asset: { + id: '0x1234', + ticker: ticker2, + }, + amount: amount2, + address: '5GrwvaEF5zXb26Fz9rcQpDWS57CtERHpNehXCPcNoHGKutQY', + from: { + number: portfolioNumber1, + identityId: portfolioDid1, + }, + fromId: `${portfolioDid1}/${portfolioNumber1}`, + to: { + number: portfolioNumber2, + identityId: portfolioDid1, + }, + toId: `${portfolioDid1}/${portfolioNumber2}`, + }, + ], + }, + }, + }, + ]); + + portfolio = new NonAbstract({ did }, context); + result = await portfolio.getTransactionHistory({ + ticker: ticker2, + }); + + expect(result[0].blockNumber).toEqual(blockNumber1); + expect(result[0].blockHash).toBe(blockHash1); + expect((result[0].legs[0] as FungibleLeg).asset.ticker).toBe(ticker2); + expect((result[0].legs[0] as FungibleLeg).amount).toEqual(amount2.div(Math.pow(10, 6))); + expect((result[0].legs[0] as FungibleLeg).from.owner.did).toBe(portfolioDid1); + expect((result[0].legs[0] as FungibleLeg).to.owner.did).toBe(portfolioDid1); + expect((result[0].legs[0].to as NumberedPortfolio).id).toEqual(portfolioId2); + }); + + it('should throw an error if the portfolio does not exist', () => { + getLatestSqVersionSpy.mockResolvedValue(SETTLEMENTS_V2_SQ_VERSION); + + const portfolio = new NonAbstract({ did, id }, context); + exists = false; + + dsMockUtils.createApolloMultipleQueriesMock([ + { + query: newSettlementsQuery({ + identityId: did, + portfolioId: id, + address: undefined, + assetId: undefined, + }), + returnData: { + legs: { + nodes: [], + }, + }, + }, + { + query: portfolioMovementsQuery({ + identityId: did, + portfolioId: id, + address: undefined, + assetId: undefined, }), returnData: { portfolioMovements: { diff --git a/src/api/entities/Portfolio/index.ts b/src/api/entities/Portfolio/index.ts index 3e7970b09b..0c3e0d648d 100644 --- a/src/api/entities/Portfolio/index.ts +++ b/src/api/entities/Portfolio/index.ts @@ -1,8 +1,7 @@ import BigNumber from 'bignumber.js'; -import { values } from 'lodash'; +import { lt, values } from 'lodash'; import { - Account, AuthorizationRequest, Context, Entity, @@ -15,9 +14,10 @@ import { quitCustody, setCustodian, } from '~/internal'; +import { settlementsQuery as newSettlementsQuery } from '~/middleware/newSettlementsQueries'; import { portfolioMovementsQuery, settlementsQuery } from '~/middleware/queries'; -import { Query, SettlementResultEnum } from '~/middleware/types'; -import { SettlementDirectionEnum } from '~/middleware/typesV1'; +import { Query } from '~/middleware/types'; +import { Query as LatestQuery } from '~/middleware/typesLatest'; import { ErrorCode, MoveFundsParams, @@ -26,21 +26,24 @@ import { SetCustodianParams, } from '~/types'; import { Ensured } from '~/types/utils'; +import { SETTLEMENTS_V2_SQ_VERSION } from '~/utils/constants'; import { addressToKey, balanceToBigNumber, identityIdToString, - keyToAddress, - middlewarePortfolioToPortfolio, + latestMiddlewareDataToHistoricalSettlements, portfolioIdToMeshPortfolioId, tickerToString, + toHistoricalSettlements, u64ToBigNumber, } from '~/utils/conversion'; import { asFungibleAsset, asTicker, createProcedureMethod, + getAssetIdForMiddleware, getIdentity, + getLatestSqVersion, toHumanReadable, } from '~/utils/internal'; @@ -402,14 +405,70 @@ export abstract class Portfolio extends Entity const { account, ticker } = filters; - const address = account ? addressToKey(account, context) : undefined; + let middlewareAssetId; + if (ticker) { + middlewareAssetId = await getAssetIdForMiddleware(ticker, context); + } + + // TODO @prashantasdeveloper Remove after SQ dual version support + const sqVersion = await getLatestSqVersion(context); + + if (lt(sqVersion, SETTLEMENTS_V2_SQ_VERSION)) { + const address = account ? addressToKey(account, context) : undefined; + + const settlementsPromise = context.queryMiddleware>( + settlementsQuery({ + identityId, + portfolioId, + address, + assetId: ticker, + }) + ); + + const portfolioMovementsPromise = context.queryMiddleware< + Ensured + >( + portfolioMovementsQuery({ + identityId, + portfolioId, + address, + assetId: middlewareAssetId, + }) + ); + + const [ + { + data: { + legs: { nodes: settlements }, + }, + }, + { + data: { + portfolioMovements: { nodes: portfolioMovements }, + }, + }, + exists, + ] = await Promise.all([settlementsPromise, portfolioMovementsPromise, this.exists()]); + + if (!exists) { + throw new PolymeshError({ + code: ErrorCode.DataUnavailable, + message: notExistsMessage, + }); + } + + const portfolioFilter = `${identityId}/${new BigNumber(portfolioId || 0).toString()}`; + + return toHistoricalSettlements(settlements, portfolioMovements, portfolioFilter, context); + } + // Dual version support end - const settlementsPromise = context.queryMiddleware>( - settlementsQuery({ + const settlementsPromise = context.queryMiddleware>( + newSettlementsQuery({ identityId, portfolioId, - address, - ticker, + address: account, + assetId: middlewareAssetId, }) ); @@ -417,16 +476,24 @@ export abstract class Portfolio extends Entity portfolioMovementsQuery({ identityId, portfolioId, - address, - ticker, + address: account, + assetId: middlewareAssetId, }) ); - const [settlementsResult, portfolioMovementsResult, exists] = await Promise.all([ - settlementsPromise, - portfolioMovementsPromise, - this.exists(), - ]); + const [ + { + data: { + legs: { nodes: settlements }, + }, + }, + { + data: { + portfolioMovements: { nodes: portfolioMovements }, + }, + }, + exists, + ] = await Promise.all([settlementsPromise, portfolioMovementsPromise, this.exists()]); if (!exists) { throw new PolymeshError({ @@ -435,71 +502,15 @@ export abstract class Portfolio extends Entity }); } - const data: HistoricSettlement[] = []; - - const portfolioFilter = `${identityId}/${new BigNumber(portfolioId || 0).toString()}`; - - const getDirection = (fromId: string, toId: string): SettlementDirectionEnum => { - if (fromId === portfolioFilter) { - return SettlementDirectionEnum.Outgoing; - } - if (toId === portfolioFilter) { - return SettlementDirectionEnum.Incoming; - } - return SettlementDirectionEnum.None; - }; - - /* eslint-disable @typescript-eslint/no-non-null-assertion */ - settlementsResult.data.legs.nodes.forEach(({ settlement }) => { - const { - createdBlock, - result: settlementResult, - legs: { nodes: legs }, - } = settlement!; - - const { blockId, hash } = createdBlock!; - - data.push({ - blockNumber: new BigNumber(blockId), - blockHash: hash, - status: settlementResult as unknown as SettlementResultEnum, - accounts: legs[0].addresses.map( - (accountAddress: string) => - new Account({ address: keyToAddress(accountAddress, context) }, context) - ), - legs: legs.map(({ from, to, fromId, toId, assetId, amount }) => ({ - asset: new FungibleAsset({ ticker: assetId }, context), - amount: new BigNumber(amount).shiftedBy(-6), - direction: getDirection(fromId, toId), - from: middlewarePortfolioToPortfolio(from!, context), - to: middlewarePortfolioToPortfolio(to!, context), - })), - }); - }); - - portfolioMovementsResult.data.portfolioMovements.nodes.forEach( - ({ createdBlock, from, to, fromId, toId, assetId, amount, address: accountAddress }) => { - const { blockId, hash } = createdBlock!; - data.push({ - blockNumber: new BigNumber(blockId), - blockHash: hash, - status: SettlementResultEnum.Executed, - accounts: [new Account({ address: keyToAddress(accountAddress, context) }, context)], - legs: [ - { - asset: new FungibleAsset({ ticker: assetId }, context), - amount: new BigNumber(amount).shiftedBy(-6), - direction: getDirection(fromId, toId), - from: middlewarePortfolioToPortfolio(from!, context), - to: middlewarePortfolioToPortfolio(to!, context), - }, - ], - }); - } + return latestMiddlewareDataToHistoricalSettlements( + settlements, + portfolioMovements, + { + identityId, + portfolio: new BigNumber(portfolioId || 0).toNumber(), + }, + context ); - /* eslint-enable @typescript-eslint/no-non-null-assertion */ - - return data; } /** diff --git a/src/api/entities/Venue/__tests__/index.ts b/src/api/entities/Venue/__tests__/index.ts index 0e8cfc7576..0cae7cf0fe 100644 --- a/src/api/entities/Venue/__tests__/index.ts +++ b/src/api/entities/Venue/__tests__/index.ts @@ -11,12 +11,15 @@ import { PolymeshTransaction, Venue, } from '~/internal'; +import { instructionsQuery as newInstructionsQuery } from '~/middleware/newSettlementsQueries'; import { instructionsQuery } from '~/middleware/queries'; import { dsMockUtils, entityMockUtils, procedureMockUtils } from '~/testUtils/mocks'; import { Mocked } from '~/testUtils/types'; import { HistoricInstruction, InstructionStatus, VenueType } from '~/types'; import { tuple } from '~/types/utils'; +import { SETTLEMENTS_V2_SQ_VERSION } from '~/utils/constants'; import * as utilsConversionModule from '~/utils/conversion'; +import * as utilsInternalModule from '~/utils/internal'; jest.mock( '~/api/entities/Identity', @@ -156,7 +159,14 @@ describe('Venue class', () => { }); describe('method: getHistoricalInstructions', () => { - it('should return the paginated list of all instructions that have been associated with a Venue', async () => { + let getLatestSqVersionSpy: jest.SpyInstance; + + beforeAll(() => { + getLatestSqVersionSpy = jest.spyOn(utilsInternalModule, 'getLatestSqVersion'); + }); + + it('should return the paginated list of all instructions that have been associated with a Venue for old SQ', async () => { + getLatestSqVersionSpy.mockResolvedValue('15.0.0'); const middlewareInstructionToHistoricInstructionSpy = jest.spyOn( utilsConversionModule, 'middlewareInstructionToHistoricInstruction' @@ -211,6 +221,63 @@ describe('Venue class', () => { expect(result.count).toEqual(new BigNumber(5)); expect(result.next).toEqual(new BigNumber(result.data.length)); }); + + it('should return the paginated list of all instructions that have been associated with a Venue', async () => { + getLatestSqVersionSpy.mockResolvedValue(SETTLEMENTS_V2_SQ_VERSION); + const middlewareInstructionToHistoricInstructionSpy = jest.spyOn( + utilsConversionModule, + 'latestMiddlewareInstructionToHistoricInstruction' + ); + + const venueId = new BigNumber(1); + + const instructionsResponse = { + totalCount: 5, + nodes: ['instructions'], + }; + + dsMockUtils.createApolloQueryMock( + newInstructionsQuery( + { + venueId: venueId.toString(), + }, + new BigNumber(2), + new BigNumber(0) + ), + { + instructions: instructionsResponse, + } + ); + + const mockHistoricInstruction = 'mockData' as unknown as HistoricInstruction; + + middlewareInstructionToHistoricInstructionSpy.mockReturnValue(mockHistoricInstruction); + + let result = await venue.getHistoricalInstructions({ + size: new BigNumber(2), + start: new BigNumber(0), + }); + + const { data, next, count } = result; + + expect(next).toEqual(new BigNumber(1)); + expect(count).toEqual(new BigNumber(5)); + expect(data).toEqual([mockHistoricInstruction]); + + dsMockUtils.createApolloQueryMock( + newInstructionsQuery({ + venueId: venueId.toString(), + }), + { + instructions: instructionsResponse, + } + ); + + result = await venue.getHistoricalInstructions(); + + expect(result.count).toEqual(new BigNumber(5)); + expect(result.next).toEqual(new BigNumber(result.data.length)); + }); }); describe('method: getInstructions', () => { diff --git a/src/api/entities/Venue/index.ts b/src/api/entities/Venue/index.ts index 16422a7925..89669e9af4 100644 --- a/src/api/entities/Venue/index.ts +++ b/src/api/entities/Venue/index.ts @@ -1,9 +1,12 @@ import BigNumber from 'bignumber.js'; import P from 'bluebird'; +import { lt } from 'lodash'; import { addInstruction, Context, Entity, Identity, Instruction, modifyVenue } from '~/internal'; +import { instructionsQuery as newInstructionsQuery } from '~/middleware/newSettlementsQueries'; import { instructionsQuery } from '~/middleware/queries'; import { Query } from '~/middleware/types'; +import { Query as LatestQuery } from '~/middleware/typesLatest'; import { AddInstructionParams, AddInstructionsParams, @@ -15,15 +18,17 @@ import { ResultSet, } from '~/types'; import { Ensured } from '~/types/utils'; +import { SETTLEMENTS_V2_SQ_VERSION } from '~/utils/constants'; import { bigNumberToU64, bytesToString, identityIdToString, + latestMiddlewareInstructionToHistoricInstruction, meshVenueTypeToVenueType, middlewareInstructionToHistoricInstruction, u64ToBigNumber, } from '~/utils/conversion'; -import { calculateNextKey, createProcedureMethod } from '~/utils/internal'; +import { calculateNextKey, createProcedureMethod, getLatestSqVersion } from '~/utils/internal'; import { HistoricInstruction, VenueDetails } from './types'; @@ -214,23 +219,48 @@ export class Venue extends Entity { const { size, start } = opts; - const { - data: { - instructions: { nodes: instructionsResult, totalCount }, - }, - } = await context.queryMiddleware>( - instructionsQuery( - { - venueId: id.toString(), - }, - size, - start - ) - ); + let data: HistoricInstruction[]; - const data = instructionsResult.map(middlewareInstruction => - middlewareInstructionToHistoricInstruction(middlewareInstruction, context) - ); + const sqVersion = await getLatestSqVersion(context); + let instructionsResult, totalCount; + + if (lt(sqVersion, SETTLEMENTS_V2_SQ_VERSION)) { + ({ + data: { + instructions: { nodes: instructionsResult, totalCount }, + }, + } = await context.queryMiddleware>( + instructionsQuery( + { + venueId: id.toString(), + }, + size, + start + ) + )); + + data = instructionsResult.map(middlewareInstruction => + middlewareInstructionToHistoricInstruction(middlewareInstruction, context) + ); + } else { + ({ + data: { + instructions: { nodes: instructionsResult, totalCount }, + }, + } = await context.queryMiddleware>( + newInstructionsQuery( + { + venueId: id.toString(), + }, + size, + start + ) + )); + + data = instructionsResult.map(middlewareInstruction => + latestMiddlewareInstructionToHistoricInstruction(middlewareInstruction, context) + ); + } const count = new BigNumber(totalCount); diff --git a/src/api/entities/__tests__/DefaultTrustedClaimIssuer.ts b/src/api/entities/__tests__/DefaultTrustedClaimIssuer.ts index 83f73f42b6..5e1b81cd90 100644 --- a/src/api/entities/__tests__/DefaultTrustedClaimIssuer.ts +++ b/src/api/entities/__tests__/DefaultTrustedClaimIssuer.ts @@ -10,6 +10,7 @@ import { trustedClaimIssuerQuery } from '~/middleware/queries'; import { dsMockUtils, entityMockUtils } from '~/testUtils/mocks'; import { ClaimType } from '~/types'; import * as utilsConversionModule from '~/utils/conversion'; +import * as utilsInternalModule from '~/utils/internal'; describe('DefaultTrustedClaimIssuer class', () => { let context: Context; @@ -66,6 +67,10 @@ describe('DefaultTrustedClaimIssuer class', () => { issuer: did, }; + beforeEach(() => { + jest.spyOn(utilsInternalModule, 'getAssetIdForMiddleware').mockResolvedValue(ticker); + }); + it('should return the event identifier object of the trusted claim issuer creation', async () => { const blockNumber = new BigNumber(1234); const blockDate = new Date('4/14/2020'); diff --git a/src/base/Context.ts b/src/base/Context.ts index ac3393a200..31894c3e2e 100644 --- a/src/base/Context.ts +++ b/src/base/Context.ts @@ -37,6 +37,7 @@ import { polyxTransactionsQuery, } from '~/middleware/queries'; import { ClaimTypeEnum, Query } from '~/middleware/types'; +import { Query as LatestQuery } from '~/middleware/typesLatest'; import { AccountBalance, ClaimData, @@ -1021,7 +1022,7 @@ export class Context { * * Make a query to the middleware V2 server using the apollo client */ - public async queryMiddleware>( + public async queryMiddleware>( query: QueryOptions ): Promise> { let result: ApolloQueryResult; diff --git a/src/middleware/__tests__/newSettlementsQueries.ts b/src/middleware/__tests__/newSettlementsQueries.ts new file mode 100644 index 0000000000..5fa26c8c67 --- /dev/null +++ b/src/middleware/__tests__/newSettlementsQueries.ts @@ -0,0 +1,117 @@ +import BigNumber from 'bignumber.js'; + +import { + instructionEventsQuery, + instructionPartiesQuery, + instructionsQuery, + settlementsForAllPortfoliosQuery, + settlementsQuery, +} from '~/middleware/newSettlementsQueries'; +import { InstructionEventEnum, InstructionStatusEnum } from '~/middleware/typesLatest'; + +describe('instructionsQuery', () => { + it('should pass the variables to the grapqhl query', () => { + const variables = { + status: InstructionStatusEnum.Executed, + id: '1', + }; + + let result = instructionsQuery(variables); + + expect(result.query).toBeDefined(); + expect(result.variables).toEqual(variables); + + result = instructionsQuery( + { + venueId: '2', + }, + new BigNumber(10), + new BigNumber(2) + ); + + expect(result.query).toBeDefined(); + expect(result.variables).toEqual({ + venueId: '2', + size: 10, + start: 2, + }); + }); +}); + +describe('instructionPartiesQuery', () => { + it('should pass the variables to the grapqhl query', () => { + const result = instructionPartiesQuery('someDid'); + expect(result.query).toBeDefined(); + expect(result.variables).toEqual({ identity: 'someDid' }); + }); +}); + +describe('instructionEventsQuery', () => { + it('should pass the variables to the grapqhl query', () => { + const variables = { + event: InstructionEventEnum.InstructionExecuted, + instructionId: '1', + }; + let result = instructionEventsQuery(variables); + expect(result.query).toBeDefined(); + expect(result.variables).toEqual(variables); + + result = instructionEventsQuery( + { + event: InstructionEventEnum.InstructionFailed, + }, + new BigNumber(10), + new BigNumber(2) + ); + + expect(result.query).toBeDefined(); + expect(result.variables).toEqual({ + event: InstructionEventEnum.InstructionFailed, + size: 10, + start: 2, + }); + }); +}); + +describe('settlementsQuery', () => { + it('should pass the variables to the grapqhl query', () => { + const variables = { + identityId: 'someDid', + portfolioId: new BigNumber(1), + assetId: 'SOME_TICKER', + address: 'someAddress', + }; + + const result = settlementsQuery(variables); + + expect(result.query).toBeDefined(); + expect(result.variables).toEqual({ + addresses: ['someAddress'], + assetId: 'SOME_TICKER', + from: 'someDid', + fromPortfolio: 1, + to: 'someDid', + toPortfolio: 1, + }); + }); +}); + +describe('settlementsForAllPortfoliosQuery', () => { + it('should pass the variables to the grapqhl query', () => { + const variables = { + identityId: 'someDid', + assetId: 'SOME_TICKER', + address: 'someAddress', + }; + + const result = settlementsForAllPortfoliosQuery(variables); + + expect(result.query).toBeDefined(); + expect(result.variables).toEqual({ + addresses: ['someAddress'], + assetId: 'SOME_TICKER', + from: 'someDid', + to: 'someDid', + }); + }); +}); diff --git a/src/middleware/__tests__/queries.ts b/src/middleware/__tests__/queries.ts index f74dd06b7d..5d69dc5551 100644 --- a/src/middleware/__tests__/queries.ts +++ b/src/middleware/__tests__/queries.ts @@ -430,7 +430,7 @@ describe('settlementsQuery', () => { const variables = { identityId: 'someDid', portfolioId: new BigNumber(1), - ticker: 'SOME_TICKER', + assetId: 'SOME_TICKER', address: 'someAddress', }; @@ -451,7 +451,7 @@ describe('portfolioMovementsQuery', () => { const variables = { identityId: 'someDid', portfolioId: new BigNumber(1), - ticker: 'SOME_TICKER', + assetId: 'SOME_TICKER', address: 'someAddress', }; diff --git a/src/middleware/newSettlementsQueries.ts b/src/middleware/newSettlementsQueries.ts new file mode 100644 index 0000000000..c161a38945 --- /dev/null +++ b/src/middleware/newSettlementsQueries.ts @@ -0,0 +1,292 @@ +import { DocumentNode, QueryOptions } from '@apollo/client/core'; +import BigNumber from 'bignumber.js'; +import gql from 'graphql-tag'; + +import { createArgsAndFilters } from '~/middleware/queries'; +import { + Instruction, + InstructionEvent, + InstructionEventsOrderBy, + InstructionParty, + InstructionsOrderBy, + Leg, + LegsOrderBy, +} from '~/middleware/typesLatest'; +import { PaginatedQueryArgs, QueryArgs } from '~/types/utils'; + +const instructionAttributes = ` + id + venueId + status + type + endBlock + endAfterBlock + tradeDate + valueDate + legs { + nodes { + legIndex + legType + from + fromPortfolio + to + toPortfolio + assetId + ticker + amount + nftIds + addresses + } + } + memo + createdBlock { + blockId + hash + datetime + } + updatedBlock { + blockId + hash + datetime + } +`; + +type InstructionArgs = 'id' | 'venueId' | 'status'; + +/** + * Query to get event details about instruction events + */ +export function instructionEventsQuery( + filters: QueryArgs, + size?: BigNumber, + start?: BigNumber +): QueryOptions>> { + const { args, filter } = createArgsAndFilters(filters, { + event: 'InstructionEventEnum', + }); + const query = gql` + query InstructionEventsQuery + ${args} + { + instructionEvents( + ${filter} + first: $size + offset: $start + orderBy: [${InstructionEventsOrderBy.CreatedAtDesc}, ${InstructionEventsOrderBy.CreatedBlockIdDesc}] + ) { + totalCount + nodes { + id + event + eventIdx + identity + portfolio + offChainReceiptId + offChainReceipt { + legId + signer + uid + } + createdBlock { + blockId + hash + datetime + } + updatedBlock { + blockId + hash + datetime + } + } + } + } + `; + + return { + query, + variables: { ...filters, size: size?.toNumber(), start: start?.toNumber() }, + }; +} + +/** + * @hidden + * + * Get a specific instruction within a venue for a specific event + */ +export function instructionsQuery( + filters: QueryArgs, + size?: BigNumber, + start?: BigNumber +): QueryOptions>> { + const { args, filter } = createArgsAndFilters(filters, { + status: 'InstructionStatusEnum', + }); + const query = gql` + query InstructionsQuery + ${args} + { + instructions( + ${filter} + first: $size + offset: $start + orderBy: [${InstructionsOrderBy.CreatedAtDesc}, ${InstructionsOrderBy.IdDesc}] + ) { + totalCount + nodes { + ${instructionAttributes} + } + } + } + `; + + return { + query, + variables: { ...filters, size: size?.toNumber(), start: start?.toNumber() }, + }; +} + +/** + * @hidden + * + * Get Instructions where an identity is involved + */ +export function instructionPartiesQuery( + identity: string +): QueryOptions> { + const query = gql` + query InstructionPartiesQuery($identity: String!) + { + instructionParties( + filter: { identity: { equalTo: $identity} } + orderBy: [${LegsOrderBy.CreatedAtAsc}, ${LegsOrderBy.InstructionIdAsc}] + ) { + nodes { + instruction { + ${instructionAttributes} + } + } + } + } + `; + + return { + query, + variables: { identity }, + }; +} + +export interface QuerySettlementFilters { + identityId: string; + portfolioId?: BigNumber; + assetId?: string; + address?: string; +} + +type LegArgs = 'from' | 'fromPortfolio' | 'to' | 'toPortfolio' | 'assetId' | 'addresses'; + +/** + * @hidden + */ +function createLegFilters( + { identityId, portfolioId, assetId, address }: QuerySettlementFilters, + queryAll?: boolean +): { + args: string; + filter: string; + variables: QueryArgs; +} { + const args: string[] = ['$from: String!, $to: String!']; + const fromIdFilters = ['from: { equalTo: $from }']; + const toIdFilters = ['to: { equalTo: $to }']; + const portfolioNumber = portfolioId ? portfolioId.toNumber() : 0; + const variables: QueryArgs = { + from: identityId, + to: identityId, + }; + + if (!queryAll) { + variables.fromPortfolio = portfolioNumber; + variables.toPortfolio = portfolioNumber; + args.push('$fromPortfolio: Int, $toPortfolio: Int'); + fromIdFilters.push('fromPortfolio: { equalTo: $fromPortfolio }'); + toIdFilters.push('toPortfolio: { equalTo: $toPortfolio }'); + } + + if (assetId) { + variables.assetId = assetId; + args.push('$assetId: String!'); + const assetIdFilter = 'assetId: { equalTo: $assetId }'; + toIdFilters.push(assetIdFilter); + fromIdFilters.push(assetIdFilter); + } + + if (address) { + variables.addresses = [address]; + args.push('$addresses: [String!]!'); + const addressFilter = 'addresses: { in: $addresses }'; + toIdFilters.push(addressFilter); + fromIdFilters.push(addressFilter); + } + + return { + args: `(${args.join()})`, + filter: `filter: { or: [{ ${fromIdFilters.join()} }, { ${toIdFilters.join()} } ] }`, + variables, + }; +} + +/** + * @hidden + */ +function buildSettlementsQuery(args: string, filter: string): DocumentNode { + return gql` + query SettlementsQuery + ${args} + { + legs( + ${filter} + orderBy: [${LegsOrderBy.CreatedAtAsc}, ${LegsOrderBy.InstructionIdAsc}] + ) { + nodes { + instruction { + ${instructionAttributes} + } + } + } + } +`; +} + +/** + * @hidden + * + * Get Settlements where a Portfolio is involved + */ +export function settlementsQuery( + filters: QuerySettlementFilters +): QueryOptions> { + const { args, filter, variables } = createLegFilters(filters); + const query = buildSettlementsQuery(args, filter); + + return { + query, + variables, + }; +} + +/** + * @hidden + * + * Get Settlements for all Portfolios + */ +export function settlementsForAllPortfoliosQuery( + filters: Omit +): QueryOptions> { + const { args, filter, variables } = createLegFilters(filters, true); + const query = buildSettlementsQuery(args, filter); + + return { + query, + variables, + }; +} diff --git a/src/middleware/queries.ts b/src/middleware/queries.ts index f8744152d8..04f4067c7a 100644 --- a/src/middleware/queries.ts +++ b/src/middleware/queries.ts @@ -320,7 +320,7 @@ export function investmentsQuery( * * @hidden */ -function createArgsAndFilters( +export function createArgsAndFilters( filters: Record, typeMap: Record ): { @@ -669,7 +669,10 @@ export function trustingAssetsQuery( orderBy: [${TrustedClaimIssuersOrderBy.AssetIdAsc}] ) { nodes { - assetId + asset { + id + ticker + } } } } @@ -788,7 +791,6 @@ export function tickerExternalAgentHistoryQuery( ) { nodes { identityId - assetId eventIdx createdBlock { blockId @@ -937,7 +939,10 @@ export function assetHoldersQuery( ) { totalCount nodes { - assetId + asset { + id + ticker + } } } } @@ -970,7 +975,10 @@ export function nftHoldersQuery( ) { totalCount nodes { - assetId + asset { + id + ticker + } nftIds } } @@ -986,7 +994,7 @@ export function nftHoldersQuery( export interface QuerySettlementFilters { identityId: string; portfolioId?: BigNumber; - ticker?: string; + assetId?: string; address?: string; } @@ -995,7 +1003,7 @@ type LegArgs = 'fromId' | 'toId' | 'assetId' | 'addresses'; /** * @hidden */ -function createLegFilters({ identityId, portfolioId, ticker, address }: QuerySettlementFilters): { +function createLegFilters({ identityId, portfolioId, assetId, address }: QuerySettlementFilters): { args: string; filter: string; variables: QueryArgs; @@ -1009,8 +1017,8 @@ function createLegFilters({ identityId, portfolioId, ticker, address }: QuerySet toId: `${identityId}/${portfolioNumber}`, }; - if (ticker) { - variables.assetId = ticker; + if (assetId) { + variables.assetId = assetId; args.push('$assetId: String!'); const assetIdFilter = 'assetId: { equalTo: $assetId }'; toIdFilters.push(assetIdFilter); @@ -1095,7 +1103,7 @@ type PortfolioMovementArgs = 'fromId' | 'toId' | 'assetId' | 'address'; function createPortfolioMovementFilters({ identityId, portfolioId, - ticker, + assetId: ticker, address, }: QuerySettlementFilters): { args: string; @@ -1163,7 +1171,10 @@ export function portfolioMovementsQuery( identityId number } - assetId + asset { + id + ticker + } amount address createdBlock { @@ -1242,7 +1253,10 @@ export function assetTransactionQuery( ) { totalCount nodes { - assetId + asset { + id + ticker + } amount fromPortfolioId fromPortfolio { diff --git a/src/middleware/typesLatest.ts b/src/middleware/typesLatest.ts new file mode 100644 index 0000000000..a4f00a754a --- /dev/null +++ b/src/middleware/typesLatest.ts @@ -0,0 +1,121930 @@ +export type Maybe = T; +export type InputMaybe = T; +export type Exact = { [K in keyof T]: T[K] }; +export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; +export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; +export type MakeEmpty = { + [_ in K]?: never; +}; +export type Incremental = + | T + | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; +/** All built-in and custom scalars, mapped to their actual values */ +export type Scalars = { + ID: { input: string; output: string }; + String: { input: string; output: string }; + Boolean: { input: boolean; output: boolean }; + Int: { input: number; output: number }; + Float: { input: number; output: number }; + BigFloat: { input: any; output: any }; + BigInt: { input: any; output: any }; + Cursor: { input: any; output: any }; + Date: { input: any; output: any }; + Datetime: { input: any; output: any }; + JSON: { input: any; output: any }; +}; + +export type Account = Node & { + __typename?: 'Account'; + address: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigCreatorAccountIdAndCreatedBlockId: AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigCreatorAccountIdAndUpdatedBlockId: AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Account`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + eventId: EventIdEnum; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByMultiSigCreatorAccountIdAndCreatorId: AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyConnection; + /** Reads a single `Identity` that is related to this `Account`. */ + identity?: Maybe; + identityId?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatorAccountId: MultiSigsConnection; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Permission` that is related to this `Account`. */ + permissions?: Maybe; + permissionsId?: Maybe; + /** Reads a single `Block` that is related to this `Account`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AccountMultiSigsByCreatorAccountIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AccountAggregates = { + __typename?: 'AccountAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `Account` object types. */ +export type AccountAggregatesFilter = { + /** Distinct count aggregate over matching `Account` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Account` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatedBlockId: MultiSigsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type AccountBlocksByMultiSigCreatorAccountIdAndCreatedBlockIdManyToManyEdgeMultiSigsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByUpdatedBlockId: MultiSigsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type AccountBlocksByMultiSigCreatorAccountIdAndUpdatedBlockIdManyToManyEdgeMultiSigsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type AccountDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + address?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + eventId?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + permissionsId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type AccountDistinctCountAggregates = { + __typename?: 'AccountDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of address across the matching connection */ + address?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of eventId across the matching connection */ + eventId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of permissionsId across the matching connection */ + permissionsId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `Account` object types. All fields are combined with a logical ‘and.’ */ +export type AccountFilter = { + /** Filter by the object’s `address` field. */ + address?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `eventId` field. */ + eventId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` relation. */ + identity?: InputMaybe; + /** A related `identity` exists. */ + identityExists?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Filter by the object’s `multiSigsByCreatorAccountId` relation. */ + multiSigsByCreatorAccountId?: InputMaybe; + /** Some related `multiSigsByCreatorAccountId` exist. */ + multiSigsByCreatorAccountIdExist?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `permissions` relation. */ + permissions?: InputMaybe; + /** A related `permissions` exists. */ + permissionsExists?: InputMaybe; + /** Filter by the object’s `permissionsId` field. */ + permissionsId?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `AccountHistory` values. */ +export type AccountHistoriesConnection = { + __typename?: 'AccountHistoriesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `AccountHistory` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `AccountHistory` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `AccountHistory` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `AccountHistory` values. */ +export type AccountHistoriesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `AccountHistory` edge in the connection. */ +export type AccountHistoriesEdge = { + __typename?: 'AccountHistoriesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `AccountHistory` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `AccountHistory` for usage during aggregation. */ +export enum AccountHistoriesGroupBy { + Account = 'ACCOUNT', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + EventId = 'EVENT_ID', + Id = 'ID', + Identity = 'IDENTITY', + Permissions = 'PERMISSIONS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type AccountHistoriesHavingAverageInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountHistoriesHavingDistinctCountInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +/** Conditions for `AccountHistory` aggregates. */ +export type AccountHistoriesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type AccountHistoriesHavingMaxInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountHistoriesHavingMinInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountHistoriesHavingStddevPopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountHistoriesHavingStddevSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountHistoriesHavingSumInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountHistoriesHavingVariancePopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountHistoriesHavingVarianceSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +/** Methods to use when ordering `AccountHistory`. */ +export enum AccountHistoriesOrderBy { + AccountAsc = 'ACCOUNT_ASC', + AccountDesc = 'ACCOUNT_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + EventIdAsc = 'EVENT_ID_ASC', + EventIdDesc = 'EVENT_ID_DESC', + IdentityAsc = 'IDENTITY_ASC', + IdentityDesc = 'IDENTITY_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PermissionsAsc = 'PERMISSIONS_ASC', + PermissionsDesc = 'PERMISSIONS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type AccountHistory = Node & { + __typename?: 'AccountHistory'; + account: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `AccountHistory`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + eventId: EventIdEnum; + id: Scalars['String']['output']; + identity: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + permissions?: Maybe; + /** Reads a single `Block` that is related to this `AccountHistory`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type AccountHistoryPermissionsArgs = { + distinct?: InputMaybe>>; +}; + +export type AccountHistoryAggregates = { + __typename?: 'AccountHistoryAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `AccountHistory` object types. */ +export type AccountHistoryAggregatesFilter = { + /** Distinct count aggregate over matching `AccountHistory` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `AccountHistory` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type AccountHistoryDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + account?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + eventId?: InputMaybe; + id?: InputMaybe; + identity?: InputMaybe; + permissions?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type AccountHistoryDistinctCountAggregates = { + __typename?: 'AccountHistoryDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of account across the matching connection */ + account?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of eventId across the matching connection */ + eventId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identity across the matching connection */ + identity?: Maybe; + /** Distinct count of permissions across the matching connection */ + permissions?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `AccountHistory` object types. All fields are combined with a logical ‘and.’ */ +export type AccountHistoryFilter = { + /** Filter by the object’s `account` field. */ + account?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `eventId` field. */ + eventId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` field. */ + identity?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `permissions` field. */ + permissions?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `MultiSig`. */ +export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyConnection = { + __typename?: 'AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `MultiSig`. */ +export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `MultiSig`. */ +export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyEdge = { + __typename?: 'AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatorId: MultiSigsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `MultiSig`. */ +export type AccountIdentitiesByMultiSigCreatorAccountIdAndCreatorIdManyToManyEdgeMultiSigsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A filter to be used against many `MultiSig` object types. All fields are combined with a logical ‘and.’ */ +export type AccountToManyMultiSigFilter = { + /** Aggregates across related `MultiSig` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `MultiSig` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `MultiSig` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `MultiSig` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A connection to a list of `Account` values. */ +export type AccountsConnection = { + __typename?: 'AccountsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Account` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Account` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Account` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Account` values. */ +export type AccountsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Account` edge in the connection. */ +export type AccountsEdge = { + __typename?: 'AccountsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Account` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Account` for usage during aggregation. */ +export enum AccountsGroupBy { + Address = 'ADDRESS', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + EventId = 'EVENT_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + PermissionsId = 'PERMISSIONS_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type AccountsHavingAverageInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountsHavingDistinctCountInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +/** Conditions for `Account` aggregates. */ +export type AccountsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type AccountsHavingMaxInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountsHavingMinInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountsHavingStddevSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountsHavingSumInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type AccountsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +/** Methods to use when ordering `Account`. */ +export enum AccountsOrderBy { + AddressAsc = 'ADDRESS_ASC', + AddressDesc = 'ADDRESS_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + EventIdAsc = 'EVENT_ID_ASC', + EventIdDesc = 'EVENT_ID_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + MultiSigsByCreatorAccountIdAverageAddressAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_ADDRESS_ASC', + MultiSigsByCreatorAccountIdAverageAddressDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_ADDRESS_DESC', + MultiSigsByCreatorAccountIdAverageBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_BLOCK_RANGE_ASC', + MultiSigsByCreatorAccountIdAverageBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_BLOCK_RANGE_DESC', + MultiSigsByCreatorAccountIdAverageCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_CREATED_AT_ASC', + MultiSigsByCreatorAccountIdAverageCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_CREATED_AT_DESC', + MultiSigsByCreatorAccountIdAverageCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdAverageCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdAverageCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorAccountIdAverageCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorAccountIdAverageCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_CREATOR_ID_ASC', + MultiSigsByCreatorAccountIdAverageCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_CREATOR_ID_DESC', + MultiSigsByCreatorAccountIdAverageIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_ID_ASC', + MultiSigsByCreatorAccountIdAverageIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_ID_DESC', + MultiSigsByCreatorAccountIdAverageSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorAccountIdAverageSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorAccountIdAverageUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdAverageUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdCountAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_COUNT_ASC', + MultiSigsByCreatorAccountIdCountDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_COUNT_DESC', + MultiSigsByCreatorAccountIdDistinctCountAddressAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_ADDRESS_ASC', + MultiSigsByCreatorAccountIdDistinctCountAddressDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_ADDRESS_DESC', + MultiSigsByCreatorAccountIdDistinctCountBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MultiSigsByCreatorAccountIdDistinctCountBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MultiSigsByCreatorAccountIdDistinctCountCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_CREATED_AT_ASC', + MultiSigsByCreatorAccountIdDistinctCountCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_CREATED_AT_DESC', + MultiSigsByCreatorAccountIdDistinctCountCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdDistinctCountCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdDistinctCountCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorAccountIdDistinctCountCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorAccountIdDistinctCountCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + MultiSigsByCreatorAccountIdDistinctCountCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + MultiSigsByCreatorAccountIdDistinctCountIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_ID_ASC', + MultiSigsByCreatorAccountIdDistinctCountIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_ID_DESC', + MultiSigsByCreatorAccountIdDistinctCountSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorAccountIdDistinctCountSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorAccountIdDistinctCountUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdDistinctCountUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdMaxAddressAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_ADDRESS_ASC', + MultiSigsByCreatorAccountIdMaxAddressDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_ADDRESS_DESC', + MultiSigsByCreatorAccountIdMaxBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_BLOCK_RANGE_ASC', + MultiSigsByCreatorAccountIdMaxBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_BLOCK_RANGE_DESC', + MultiSigsByCreatorAccountIdMaxCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_CREATED_AT_ASC', + MultiSigsByCreatorAccountIdMaxCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_CREATED_AT_DESC', + MultiSigsByCreatorAccountIdMaxCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdMaxCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdMaxCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorAccountIdMaxCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorAccountIdMaxCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_CREATOR_ID_ASC', + MultiSigsByCreatorAccountIdMaxCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_CREATOR_ID_DESC', + MultiSigsByCreatorAccountIdMaxIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_ID_ASC', + MultiSigsByCreatorAccountIdMaxIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_ID_DESC', + MultiSigsByCreatorAccountIdMaxSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorAccountIdMaxSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorAccountIdMaxUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdMaxUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MAX_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdMinAddressAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_ADDRESS_ASC', + MultiSigsByCreatorAccountIdMinAddressDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_ADDRESS_DESC', + MultiSigsByCreatorAccountIdMinBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_BLOCK_RANGE_ASC', + MultiSigsByCreatorAccountIdMinBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_BLOCK_RANGE_DESC', + MultiSigsByCreatorAccountIdMinCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_CREATED_AT_ASC', + MultiSigsByCreatorAccountIdMinCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_CREATED_AT_DESC', + MultiSigsByCreatorAccountIdMinCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdMinCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdMinCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorAccountIdMinCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorAccountIdMinCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_CREATOR_ID_ASC', + MultiSigsByCreatorAccountIdMinCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_CREATOR_ID_DESC', + MultiSigsByCreatorAccountIdMinIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_ID_ASC', + MultiSigsByCreatorAccountIdMinIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_ID_DESC', + MultiSigsByCreatorAccountIdMinSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorAccountIdMinSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorAccountIdMinUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdMinUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_MIN_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdStddevPopulationAddressAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_ADDRESS_ASC', + MultiSigsByCreatorAccountIdStddevPopulationAddressDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_ADDRESS_DESC', + MultiSigsByCreatorAccountIdStddevPopulationBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MultiSigsByCreatorAccountIdStddevPopulationBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MultiSigsByCreatorAccountIdStddevPopulationCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_CREATED_AT_ASC', + MultiSigsByCreatorAccountIdStddevPopulationCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_CREATED_AT_DESC', + MultiSigsByCreatorAccountIdStddevPopulationCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdStddevPopulationCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdStddevPopulationCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorAccountIdStddevPopulationCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorAccountIdStddevPopulationCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + MultiSigsByCreatorAccountIdStddevPopulationCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + MultiSigsByCreatorAccountIdStddevPopulationIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_ID_ASC', + MultiSigsByCreatorAccountIdStddevPopulationIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_ID_DESC', + MultiSigsByCreatorAccountIdStddevPopulationSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorAccountIdStddevPopulationSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorAccountIdStddevPopulationUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdStddevPopulationUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdStddevSampleAddressAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_ADDRESS_ASC', + MultiSigsByCreatorAccountIdStddevSampleAddressDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_ADDRESS_DESC', + MultiSigsByCreatorAccountIdStddevSampleBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MultiSigsByCreatorAccountIdStddevSampleBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MultiSigsByCreatorAccountIdStddevSampleCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + MultiSigsByCreatorAccountIdStddevSampleCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + MultiSigsByCreatorAccountIdStddevSampleCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdStddevSampleCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdStddevSampleCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorAccountIdStddevSampleCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorAccountIdStddevSampleCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + MultiSigsByCreatorAccountIdStddevSampleCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + MultiSigsByCreatorAccountIdStddevSampleIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_ID_ASC', + MultiSigsByCreatorAccountIdStddevSampleIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_ID_DESC', + MultiSigsByCreatorAccountIdStddevSampleSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorAccountIdStddevSampleSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorAccountIdStddevSampleUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdStddevSampleUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdSumAddressAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_ADDRESS_ASC', + MultiSigsByCreatorAccountIdSumAddressDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_ADDRESS_DESC', + MultiSigsByCreatorAccountIdSumBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_BLOCK_RANGE_ASC', + MultiSigsByCreatorAccountIdSumBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_BLOCK_RANGE_DESC', + MultiSigsByCreatorAccountIdSumCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_CREATED_AT_ASC', + MultiSigsByCreatorAccountIdSumCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_CREATED_AT_DESC', + MultiSigsByCreatorAccountIdSumCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdSumCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdSumCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorAccountIdSumCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorAccountIdSumCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_CREATOR_ID_ASC', + MultiSigsByCreatorAccountIdSumCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_CREATOR_ID_DESC', + MultiSigsByCreatorAccountIdSumIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_ID_ASC', + MultiSigsByCreatorAccountIdSumIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_ID_DESC', + MultiSigsByCreatorAccountIdSumSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorAccountIdSumSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorAccountIdSumUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdSumUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_SUM_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdVariancePopulationAddressAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_ADDRESS_ASC', + MultiSigsByCreatorAccountIdVariancePopulationAddressDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_ADDRESS_DESC', + MultiSigsByCreatorAccountIdVariancePopulationBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MultiSigsByCreatorAccountIdVariancePopulationBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MultiSigsByCreatorAccountIdVariancePopulationCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + MultiSigsByCreatorAccountIdVariancePopulationCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + MultiSigsByCreatorAccountIdVariancePopulationCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdVariancePopulationCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdVariancePopulationCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorAccountIdVariancePopulationCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorAccountIdVariancePopulationCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + MultiSigsByCreatorAccountIdVariancePopulationCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + MultiSigsByCreatorAccountIdVariancePopulationIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_ID_ASC', + MultiSigsByCreatorAccountIdVariancePopulationIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_ID_DESC', + MultiSigsByCreatorAccountIdVariancePopulationSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorAccountIdVariancePopulationSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorAccountIdVariancePopulationUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdVariancePopulationUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdVarianceSampleAddressAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + MultiSigsByCreatorAccountIdVarianceSampleAddressDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + MultiSigsByCreatorAccountIdVarianceSampleBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MultiSigsByCreatorAccountIdVarianceSampleBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MultiSigsByCreatorAccountIdVarianceSampleCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + MultiSigsByCreatorAccountIdVarianceSampleCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + MultiSigsByCreatorAccountIdVarianceSampleCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdVarianceSampleCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorAccountIdVarianceSampleCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorAccountIdVarianceSampleCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorAccountIdVarianceSampleCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + MultiSigsByCreatorAccountIdVarianceSampleCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + MultiSigsByCreatorAccountIdVarianceSampleIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_ID_ASC', + MultiSigsByCreatorAccountIdVarianceSampleIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_ID_DESC', + MultiSigsByCreatorAccountIdVarianceSampleSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorAccountIdVarianceSampleSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorAccountIdVarianceSampleUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorAccountIdVarianceSampleUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ACCOUNT_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + Natural = 'NATURAL', + PermissionsIdAsc = 'PERMISSIONS_ID_ASC', + PermissionsIdDesc = 'PERMISSIONS_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export enum AffirmStatusEnum { + Affirmed = 'Affirmed', + Rejected = 'Rejected', +} + +/** A filter to be used against AffirmStatusEnum fields. All fields are combined with a logical ‘and.’ */ +export type AffirmStatusEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export enum AffirmingPartyEnum { + Mediator = 'Mediator', + Receiver = 'Receiver', + Sender = 'Sender', +} + +/** A filter to be used against AffirmingPartyEnum fields. All fields are combined with a logical ‘and.’ */ +export type AffirmingPartyEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type AgentGroup = Node & { + __typename?: 'AgentGroup'; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAgentGroupMembershipGroupIdAndCreatedBlockId: AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAgentGroupMembershipGroupIdAndUpdatedBlockId: AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `AgentGroup`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `AgentGroupMembership`. */ + members: AgentGroupMembershipsConnection; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + permissions: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `AgentGroup`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AgentGroupMembersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AgentGroupPermissionsArgs = { + distinct?: InputMaybe>>; +}; + +export type AgentGroupAggregates = { + __typename?: 'AgentGroupAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `AgentGroup` object types. */ +export type AgentGroupAggregatesFilter = { + /** Distinct count aggregate over matching `AgentGroup` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `AgentGroup` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +/** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AgentGroupMembership`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AgentGroupMembership`. */ + agentGroupMembershipsByCreatedBlockId: AgentGroupMembershipsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndCreatedBlockIdManyToManyEdgeAgentGroupMembershipsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AgentGroupMembership`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AgentGroupMembership`. */ + agentGroupMembershipsByUpdatedBlockId: AgentGroupMembershipsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ +export type AgentGroupBlocksByAgentGroupMembershipGroupIdAndUpdatedBlockIdManyToManyEdgeAgentGroupMembershipsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type AgentGroupDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + permissions?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type AgentGroupDistinctCountAggregates = { + __typename?: 'AgentGroupDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of permissions across the matching connection */ + permissions?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `AgentGroup` object types. All fields are combined with a logical ‘and.’ */ +export type AgentGroupFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `members` relation. */ + members?: InputMaybe; + /** Some related `members` exist. */ + membersExist?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `permissions` field. */ + permissions?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type AgentGroupMembership = Node & { + __typename?: 'AgentGroupMembership'; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `AgentGroupMembership`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `AgentGroup` that is related to this `AgentGroupMembership`. */ + group?: Maybe; + groupId: Scalars['String']['output']; + id: Scalars['String']['output']; + member: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Block` that is related to this `AgentGroupMembership`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type AgentGroupMembershipAggregates = { + __typename?: 'AgentGroupMembershipAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `AgentGroupMembership` object types. */ +export type AgentGroupMembershipAggregatesFilter = { + /** Distinct count aggregate over matching `AgentGroupMembership` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `AgentGroupMembership` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type AgentGroupMembershipDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + groupId?: InputMaybe; + id?: InputMaybe; + member?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type AgentGroupMembershipDistinctCountAggregates = { + __typename?: 'AgentGroupMembershipDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of groupId across the matching connection */ + groupId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of member across the matching connection */ + member?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `AgentGroupMembership` object types. All fields are combined with a logical ‘and.’ */ +export type AgentGroupMembershipFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `group` relation. */ + group?: InputMaybe; + /** Filter by the object’s `groupId` field. */ + groupId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `member` field. */ + member?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `AgentGroupMembership` values. */ +export type AgentGroupMembershipsConnection = { + __typename?: 'AgentGroupMembershipsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `AgentGroupMembership` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `AgentGroupMembership` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `AgentGroupMembership` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `AgentGroupMembership` values. */ +export type AgentGroupMembershipsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `AgentGroupMembership` edge in the connection. */ +export type AgentGroupMembershipsEdge = { + __typename?: 'AgentGroupMembershipsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `AgentGroupMembership` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `AgentGroupMembership` for usage during aggregation. */ +export enum AgentGroupMembershipsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + GroupId = 'GROUP_ID', + Id = 'ID', + Member = 'MEMBER', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type AgentGroupMembershipsHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupMembershipsHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `AgentGroupMembership` aggregates. */ +export type AgentGroupMembershipsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type AgentGroupMembershipsHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupMembershipsHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupMembershipsHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupMembershipsHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupMembershipsHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupMembershipsHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupMembershipsHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `AgentGroupMembership`. */ +export enum AgentGroupMembershipsOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + GroupIdAsc = 'GROUP_ID_ASC', + GroupIdDesc = 'GROUP_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + MemberAsc = 'MEMBER_ASC', + MemberDesc = 'MEMBER_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** A filter to be used against many `AgentGroupMembership` object types. All fields are combined with a logical ‘and.’ */ +export type AgentGroupToManyAgentGroupMembershipFilter = { + /** Aggregates across related `AgentGroupMembership` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AgentGroupMembership` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AgentGroupMembership` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AgentGroupMembership` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A connection to a list of `AgentGroup` values. */ +export type AgentGroupsConnection = { + __typename?: 'AgentGroupsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `AgentGroup` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `AgentGroup` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `AgentGroup` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `AgentGroup` values. */ +export type AgentGroupsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `AgentGroup` edge in the connection. */ +export type AgentGroupsEdge = { + __typename?: 'AgentGroupsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `AgentGroup` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `AgentGroup` for usage during aggregation. */ +export enum AgentGroupsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + Permissions = 'PERMISSIONS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type AgentGroupsHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupsHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `AgentGroup` aggregates. */ +export type AgentGroupsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type AgentGroupsHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupsHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupsHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupsHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupsHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupsHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type AgentGroupsHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `AgentGroup`. */ +export enum AgentGroupsOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + MembersAverageBlockRangeAsc = 'MEMBERS_AVERAGE_BLOCK_RANGE_ASC', + MembersAverageBlockRangeDesc = 'MEMBERS_AVERAGE_BLOCK_RANGE_DESC', + MembersAverageCreatedAtAsc = 'MEMBERS_AVERAGE_CREATED_AT_ASC', + MembersAverageCreatedAtDesc = 'MEMBERS_AVERAGE_CREATED_AT_DESC', + MembersAverageCreatedBlockIdAsc = 'MEMBERS_AVERAGE_CREATED_BLOCK_ID_ASC', + MembersAverageCreatedBlockIdDesc = 'MEMBERS_AVERAGE_CREATED_BLOCK_ID_DESC', + MembersAverageGroupIdAsc = 'MEMBERS_AVERAGE_GROUP_ID_ASC', + MembersAverageGroupIdDesc = 'MEMBERS_AVERAGE_GROUP_ID_DESC', + MembersAverageIdAsc = 'MEMBERS_AVERAGE_ID_ASC', + MembersAverageIdDesc = 'MEMBERS_AVERAGE_ID_DESC', + MembersAverageMemberAsc = 'MEMBERS_AVERAGE_MEMBER_ASC', + MembersAverageMemberDesc = 'MEMBERS_AVERAGE_MEMBER_DESC', + MembersAverageUpdatedBlockIdAsc = 'MEMBERS_AVERAGE_UPDATED_BLOCK_ID_ASC', + MembersAverageUpdatedBlockIdDesc = 'MEMBERS_AVERAGE_UPDATED_BLOCK_ID_DESC', + MembersCountAsc = 'MEMBERS_COUNT_ASC', + MembersCountDesc = 'MEMBERS_COUNT_DESC', + MembersDistinctCountBlockRangeAsc = 'MEMBERS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MembersDistinctCountBlockRangeDesc = 'MEMBERS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MembersDistinctCountCreatedAtAsc = 'MEMBERS_DISTINCT_COUNT_CREATED_AT_ASC', + MembersDistinctCountCreatedAtDesc = 'MEMBERS_DISTINCT_COUNT_CREATED_AT_DESC', + MembersDistinctCountCreatedBlockIdAsc = 'MEMBERS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MembersDistinctCountCreatedBlockIdDesc = 'MEMBERS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MembersDistinctCountGroupIdAsc = 'MEMBERS_DISTINCT_COUNT_GROUP_ID_ASC', + MembersDistinctCountGroupIdDesc = 'MEMBERS_DISTINCT_COUNT_GROUP_ID_DESC', + MembersDistinctCountIdAsc = 'MEMBERS_DISTINCT_COUNT_ID_ASC', + MembersDistinctCountIdDesc = 'MEMBERS_DISTINCT_COUNT_ID_DESC', + MembersDistinctCountMemberAsc = 'MEMBERS_DISTINCT_COUNT_MEMBER_ASC', + MembersDistinctCountMemberDesc = 'MEMBERS_DISTINCT_COUNT_MEMBER_DESC', + MembersDistinctCountUpdatedBlockIdAsc = 'MEMBERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MembersDistinctCountUpdatedBlockIdDesc = 'MEMBERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MembersMaxBlockRangeAsc = 'MEMBERS_MAX_BLOCK_RANGE_ASC', + MembersMaxBlockRangeDesc = 'MEMBERS_MAX_BLOCK_RANGE_DESC', + MembersMaxCreatedAtAsc = 'MEMBERS_MAX_CREATED_AT_ASC', + MembersMaxCreatedAtDesc = 'MEMBERS_MAX_CREATED_AT_DESC', + MembersMaxCreatedBlockIdAsc = 'MEMBERS_MAX_CREATED_BLOCK_ID_ASC', + MembersMaxCreatedBlockIdDesc = 'MEMBERS_MAX_CREATED_BLOCK_ID_DESC', + MembersMaxGroupIdAsc = 'MEMBERS_MAX_GROUP_ID_ASC', + MembersMaxGroupIdDesc = 'MEMBERS_MAX_GROUP_ID_DESC', + MembersMaxIdAsc = 'MEMBERS_MAX_ID_ASC', + MembersMaxIdDesc = 'MEMBERS_MAX_ID_DESC', + MembersMaxMemberAsc = 'MEMBERS_MAX_MEMBER_ASC', + MembersMaxMemberDesc = 'MEMBERS_MAX_MEMBER_DESC', + MembersMaxUpdatedBlockIdAsc = 'MEMBERS_MAX_UPDATED_BLOCK_ID_ASC', + MembersMaxUpdatedBlockIdDesc = 'MEMBERS_MAX_UPDATED_BLOCK_ID_DESC', + MembersMinBlockRangeAsc = 'MEMBERS_MIN_BLOCK_RANGE_ASC', + MembersMinBlockRangeDesc = 'MEMBERS_MIN_BLOCK_RANGE_DESC', + MembersMinCreatedAtAsc = 'MEMBERS_MIN_CREATED_AT_ASC', + MembersMinCreatedAtDesc = 'MEMBERS_MIN_CREATED_AT_DESC', + MembersMinCreatedBlockIdAsc = 'MEMBERS_MIN_CREATED_BLOCK_ID_ASC', + MembersMinCreatedBlockIdDesc = 'MEMBERS_MIN_CREATED_BLOCK_ID_DESC', + MembersMinGroupIdAsc = 'MEMBERS_MIN_GROUP_ID_ASC', + MembersMinGroupIdDesc = 'MEMBERS_MIN_GROUP_ID_DESC', + MembersMinIdAsc = 'MEMBERS_MIN_ID_ASC', + MembersMinIdDesc = 'MEMBERS_MIN_ID_DESC', + MembersMinMemberAsc = 'MEMBERS_MIN_MEMBER_ASC', + MembersMinMemberDesc = 'MEMBERS_MIN_MEMBER_DESC', + MembersMinUpdatedBlockIdAsc = 'MEMBERS_MIN_UPDATED_BLOCK_ID_ASC', + MembersMinUpdatedBlockIdDesc = 'MEMBERS_MIN_UPDATED_BLOCK_ID_DESC', + MembersStddevPopulationBlockRangeAsc = 'MEMBERS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MembersStddevPopulationBlockRangeDesc = 'MEMBERS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MembersStddevPopulationCreatedAtAsc = 'MEMBERS_STDDEV_POPULATION_CREATED_AT_ASC', + MembersStddevPopulationCreatedAtDesc = 'MEMBERS_STDDEV_POPULATION_CREATED_AT_DESC', + MembersStddevPopulationCreatedBlockIdAsc = 'MEMBERS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MembersStddevPopulationCreatedBlockIdDesc = 'MEMBERS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MembersStddevPopulationGroupIdAsc = 'MEMBERS_STDDEV_POPULATION_GROUP_ID_ASC', + MembersStddevPopulationGroupIdDesc = 'MEMBERS_STDDEV_POPULATION_GROUP_ID_DESC', + MembersStddevPopulationIdAsc = 'MEMBERS_STDDEV_POPULATION_ID_ASC', + MembersStddevPopulationIdDesc = 'MEMBERS_STDDEV_POPULATION_ID_DESC', + MembersStddevPopulationMemberAsc = 'MEMBERS_STDDEV_POPULATION_MEMBER_ASC', + MembersStddevPopulationMemberDesc = 'MEMBERS_STDDEV_POPULATION_MEMBER_DESC', + MembersStddevPopulationUpdatedBlockIdAsc = 'MEMBERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MembersStddevPopulationUpdatedBlockIdDesc = 'MEMBERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MembersStddevSampleBlockRangeAsc = 'MEMBERS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MembersStddevSampleBlockRangeDesc = 'MEMBERS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MembersStddevSampleCreatedAtAsc = 'MEMBERS_STDDEV_SAMPLE_CREATED_AT_ASC', + MembersStddevSampleCreatedAtDesc = 'MEMBERS_STDDEV_SAMPLE_CREATED_AT_DESC', + MembersStddevSampleCreatedBlockIdAsc = 'MEMBERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MembersStddevSampleCreatedBlockIdDesc = 'MEMBERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MembersStddevSampleGroupIdAsc = 'MEMBERS_STDDEV_SAMPLE_GROUP_ID_ASC', + MembersStddevSampleGroupIdDesc = 'MEMBERS_STDDEV_SAMPLE_GROUP_ID_DESC', + MembersStddevSampleIdAsc = 'MEMBERS_STDDEV_SAMPLE_ID_ASC', + MembersStddevSampleIdDesc = 'MEMBERS_STDDEV_SAMPLE_ID_DESC', + MembersStddevSampleMemberAsc = 'MEMBERS_STDDEV_SAMPLE_MEMBER_ASC', + MembersStddevSampleMemberDesc = 'MEMBERS_STDDEV_SAMPLE_MEMBER_DESC', + MembersStddevSampleUpdatedBlockIdAsc = 'MEMBERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MembersStddevSampleUpdatedBlockIdDesc = 'MEMBERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MembersSumBlockRangeAsc = 'MEMBERS_SUM_BLOCK_RANGE_ASC', + MembersSumBlockRangeDesc = 'MEMBERS_SUM_BLOCK_RANGE_DESC', + MembersSumCreatedAtAsc = 'MEMBERS_SUM_CREATED_AT_ASC', + MembersSumCreatedAtDesc = 'MEMBERS_SUM_CREATED_AT_DESC', + MembersSumCreatedBlockIdAsc = 'MEMBERS_SUM_CREATED_BLOCK_ID_ASC', + MembersSumCreatedBlockIdDesc = 'MEMBERS_SUM_CREATED_BLOCK_ID_DESC', + MembersSumGroupIdAsc = 'MEMBERS_SUM_GROUP_ID_ASC', + MembersSumGroupIdDesc = 'MEMBERS_SUM_GROUP_ID_DESC', + MembersSumIdAsc = 'MEMBERS_SUM_ID_ASC', + MembersSumIdDesc = 'MEMBERS_SUM_ID_DESC', + MembersSumMemberAsc = 'MEMBERS_SUM_MEMBER_ASC', + MembersSumMemberDesc = 'MEMBERS_SUM_MEMBER_DESC', + MembersSumUpdatedBlockIdAsc = 'MEMBERS_SUM_UPDATED_BLOCK_ID_ASC', + MembersSumUpdatedBlockIdDesc = 'MEMBERS_SUM_UPDATED_BLOCK_ID_DESC', + MembersVariancePopulationBlockRangeAsc = 'MEMBERS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MembersVariancePopulationBlockRangeDesc = 'MEMBERS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MembersVariancePopulationCreatedAtAsc = 'MEMBERS_VARIANCE_POPULATION_CREATED_AT_ASC', + MembersVariancePopulationCreatedAtDesc = 'MEMBERS_VARIANCE_POPULATION_CREATED_AT_DESC', + MembersVariancePopulationCreatedBlockIdAsc = 'MEMBERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MembersVariancePopulationCreatedBlockIdDesc = 'MEMBERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MembersVariancePopulationGroupIdAsc = 'MEMBERS_VARIANCE_POPULATION_GROUP_ID_ASC', + MembersVariancePopulationGroupIdDesc = 'MEMBERS_VARIANCE_POPULATION_GROUP_ID_DESC', + MembersVariancePopulationIdAsc = 'MEMBERS_VARIANCE_POPULATION_ID_ASC', + MembersVariancePopulationIdDesc = 'MEMBERS_VARIANCE_POPULATION_ID_DESC', + MembersVariancePopulationMemberAsc = 'MEMBERS_VARIANCE_POPULATION_MEMBER_ASC', + MembersVariancePopulationMemberDesc = 'MEMBERS_VARIANCE_POPULATION_MEMBER_DESC', + MembersVariancePopulationUpdatedBlockIdAsc = 'MEMBERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MembersVariancePopulationUpdatedBlockIdDesc = 'MEMBERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MembersVarianceSampleBlockRangeAsc = 'MEMBERS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MembersVarianceSampleBlockRangeDesc = 'MEMBERS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MembersVarianceSampleCreatedAtAsc = 'MEMBERS_VARIANCE_SAMPLE_CREATED_AT_ASC', + MembersVarianceSampleCreatedAtDesc = 'MEMBERS_VARIANCE_SAMPLE_CREATED_AT_DESC', + MembersVarianceSampleCreatedBlockIdAsc = 'MEMBERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MembersVarianceSampleCreatedBlockIdDesc = 'MEMBERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MembersVarianceSampleGroupIdAsc = 'MEMBERS_VARIANCE_SAMPLE_GROUP_ID_ASC', + MembersVarianceSampleGroupIdDesc = 'MEMBERS_VARIANCE_SAMPLE_GROUP_ID_DESC', + MembersVarianceSampleIdAsc = 'MEMBERS_VARIANCE_SAMPLE_ID_ASC', + MembersVarianceSampleIdDesc = 'MEMBERS_VARIANCE_SAMPLE_ID_DESC', + MembersVarianceSampleMemberAsc = 'MEMBERS_VARIANCE_SAMPLE_MEMBER_ASC', + MembersVarianceSampleMemberDesc = 'MEMBERS_VARIANCE_SAMPLE_MEMBER_DESC', + MembersVarianceSampleUpdatedBlockIdAsc = 'MEMBERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MembersVarianceSampleUpdatedBlockIdDesc = 'MEMBERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + Natural = 'NATURAL', + PermissionsAsc = 'PERMISSIONS_ASC', + PermissionsDesc = 'PERMISSIONS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type Asset = Node & { + __typename?: 'Asset'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovals: AssetPreApprovalsConnection; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetDocumentAssetIdAndCreatedBlockId: AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetDocumentAssetIdAndUpdatedBlockId: AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetHolderAssetIdAndCreatedBlockId: AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetHolderAssetIdAndUpdatedBlockId: AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetMandatoryMediatorAssetIdAndCreatedBlockId: AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockId: AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetPreApprovalAssetIdAndCreatedBlockId: AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetPreApprovalAssetIdAndUpdatedBlockId: AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetTransactionAssetIdAndCreatedBlockId: AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetTransactionAssetIdAndUpdatedBlockId: AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimScopeAssetIdAndCreatedBlockId: AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimScopeAssetIdAndUpdatedBlockId: AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByComplianceAssetIdAndCreatedBlockId: AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByComplianceAssetIdAndUpdatedBlockId: AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionAssetIdAndCreatedBlockId: AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionAssetIdAndUpdatedBlockId: AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByFundingAssetIdAndCreatedBlockId: AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByFundingAssetIdAndUpdatedBlockId: AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByNftHolderAssetIdAndCreatedBlockId: AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByNftHolderAssetIdAndUpdatedBlockId: AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioMovementAssetIdAndCreatedBlockId: AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioMovementAssetIdAndUpdatedBlockId: AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStatTypeAssetIdAndCreatedBlockId: AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStatTypeAssetIdAndUpdatedBlockId: AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoOfferingAssetIdAndCreatedBlockId: AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoOfferingAssetIdAndUpdatedBlockId: AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentActionAssetIdAndCreatedBlockId: AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentActionAssetIdAndUpdatedBlockId: AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentAssetIdAndCreatedBlockId: AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentAssetIdAndUpdatedBlockId: AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockId: AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockId: AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceAssetIdAndCreatedBlockId: AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceAssetIdAndUpdatedBlockId: AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceExemptionAssetIdAndCreatedBlockId: AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceExemptionAssetIdAndUpdatedBlockId: AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferManagerAssetIdAndCreatedBlockId: AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferManagerAssetIdAndUpdatedBlockId: AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTrustedClaimIssuerAssetIdAndCreatedBlockId: AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTrustedClaimIssuerAssetIdAndUpdatedBlockId: AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `ClaimScope`. */ + claimScopes: ClaimScopesConnection; + /** Reads and enables pagination through a set of `Compliance`. */ + compliance: CompliancesConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Asset`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByStatTypeAssetIdAndCustomClaimTypeId: AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyConnection; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** Reads and enables pagination through a set of `AssetDocument`. */ + documents: AssetDocumentsConnection; + eventIdx: Scalars['Int']['output']; + fundingRound?: Maybe; + /** Reads and enables pagination through a set of `Funding`. */ + fundings: FundingsConnection; + /** Reads and enables pagination through a set of `AssetHolder`. */ + holders: AssetHoldersConnection; + id: Scalars['String']['output']; + identifiers: Scalars['JSON']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAssetHolderAssetIdAndIdentityId: AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAssetMandatoryMediatorAssetIdAndAddedById: AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAssetPreApprovalAssetIdAndIdentityId: AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByDistributionAssetIdAndIdentityId: AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByNftHolderAssetIdAndIdentityId: AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStatTypeAssetIdAndClaimIssuerId: AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStoOfferingAssetIdAndCreatorId: AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTickerExternalAgentActionAssetIdAndCallerId: AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTickerExternalAgentAssetIdAndCallerId: AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTickerExternalAgentHistoryAssetIdAndIdentityId: AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTransferComplianceAssetIdAndClaimIssuerId: AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByAssetTransactionAssetIdAndInstructionId: AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyConnection; + isCompliancePaused: Scalars['Boolean']['output']; + isDivisible: Scalars['Boolean']['output']; + isFrozen: Scalars['Boolean']['output']; + isNftCollection: Scalars['Boolean']['output']; + isUniquenessRequired: Scalars['Boolean']['output']; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + mandatoryMediators: AssetMandatoryMediatorsConnection; + name?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHolders: NftHoldersConnection; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Identity` that is related to this `Asset`. */ + owner?: Maybe; + ownerId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovements: PortfolioMovementsConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByAssetTransactionAssetIdAndFromPortfolioId: AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByAssetTransactionAssetIdAndToPortfolioId: AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByDistributionAssetIdAndPortfolioId: AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByPortfolioMovementAssetIdAndFromId: AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByPortfolioMovementAssetIdAndToId: AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoOfferingAssetIdAndOfferingPortfolioId: AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoOfferingAssetIdAndRaisingPortfolioId: AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `StatType`. */ + statTypes: StatTypesConnection; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByTransferComplianceAssetIdAndStatTypeId: AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyConnection; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingAssetId: StosConnection; + ticker?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActions: TickerExternalAgentActionsConnection; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgents: TickerExternalAgentsConnection; + totalSupply: Scalars['BigFloat']['output']; + totalTransfers: Scalars['BigFloat']['output']; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptions: TransferComplianceExemptionsConnection; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliances: TransferCompliancesConnection; + /** Reads and enables pagination through a set of `TransferManager`. */ + transferManagers: TransferManagersConnection; + /** Reads and enables pagination through a set of `TrustedClaimIssuer`. */ + trustedClaimIssuers: TrustedClaimIssuersConnection; + type?: Maybe; + /** Reads a single `Block` that is related to this `Asset`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByStoOfferingAssetIdAndVenueId: AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyConnection; +}; + +export type AssetAssetPreApprovalsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetAssetTransactionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByFundingAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetClaimScopesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetComplianceArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetDistributionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetDocumentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetFundingsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetHoldersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetIdentitiesByDistributionAssetIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetMandatoryMediatorsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetNftHoldersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetPortfolioMovementsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetStatTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetStosByOfferingAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetTickerExternalAgentActionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetTickerExternalAgentHistoriesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetTickerExternalAgentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetTransferComplianceExemptionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetTransferCompliancesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetTransferManagersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetTrustedClaimIssuersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetVenuesByStoOfferingAssetIdAndVenueIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type AssetAggregates = { + __typename?: 'AssetAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Asset` object types. */ +export type AssetAggregatesFilter = { + /** Mean average aggregate over matching `Asset` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Asset` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Asset` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Asset` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Asset` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Asset` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Asset` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Asset` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Asset` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Asset` objects. */ + varianceSample?: InputMaybe; +}; + +export type AssetAverageAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetAverageAggregates = { + __typename?: 'AssetAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of totalSupply across the matching connection */ + totalSupply?: Maybe; + /** Mean average of totalTransfers across the matching connection */ + totalTransfers?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `AssetDocument`. */ +export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetDocument`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetDocument`. */ +export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetDocument`. */ +export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetDocument`. */ + assetDocumentsByCreatedBlockId: AssetDocumentsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetDocument`. */ +export type AssetBlocksByAssetDocumentAssetIdAndCreatedBlockIdManyToManyEdgeAssetDocumentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetDocument`. */ +export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetDocument`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetDocument`. */ +export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetDocument`. */ +export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetDocument`. */ + assetDocumentsByUpdatedBlockId: AssetDocumentsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetDocument`. */ +export type AssetBlocksByAssetDocumentAssetIdAndUpdatedBlockIdManyToManyEdgeAssetDocumentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetHolder`. */ + assetHoldersByCreatedBlockId: AssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type AssetBlocksByAssetHolderAssetIdAndCreatedBlockIdManyToManyEdgeAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetHolder`. */ + assetHoldersByUpdatedBlockId: AssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type AssetBlocksByAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdgeAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByCreatedBlockId: AssetMandatoryMediatorsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndCreatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByUpdatedBlockId: AssetMandatoryMediatorsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type AssetBlocksByAssetMandatoryMediatorAssetIdAndUpdatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovalsByCreatedBlockId: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type AssetBlocksByAssetPreApprovalAssetIdAndCreatedBlockIdManyToManyEdgeAssetPreApprovalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovalsByUpdatedBlockId: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type AssetBlocksByAssetPreApprovalAssetIdAndUpdatedBlockIdManyToManyEdgeAssetPreApprovalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByCreatedBlockId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type AssetBlocksByAssetTransactionAssetIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByUpdatedBlockId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type AssetBlocksByAssetTransactionAssetIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ClaimScope`. */ +export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ClaimScope`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ClaimScope`. */ +export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ClaimScope`. */ +export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ClaimScope`. */ + claimScopesByCreatedBlockId: ClaimScopesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ClaimScope`. */ +export type AssetBlocksByClaimScopeAssetIdAndCreatedBlockIdManyToManyEdgeClaimScopesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ClaimScope`. */ +export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ClaimScope`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ClaimScope`. */ +export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ClaimScope`. */ +export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ClaimScope`. */ + claimScopesByUpdatedBlockId: ClaimScopesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ClaimScope`. */ +export type AssetBlocksByClaimScopeAssetIdAndUpdatedBlockIdManyToManyEdgeClaimScopesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Compliance`. */ +export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Compliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Compliance`. */ +export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Compliance`. */ +export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Compliance`. */ + compliancesByCreatedBlockId: CompliancesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Compliance`. */ +export type AssetBlocksByComplianceAssetIdAndCreatedBlockIdManyToManyEdgeCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Compliance`. */ +export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Compliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Compliance`. */ +export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Compliance`. */ +export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Compliance`. */ + compliancesByUpdatedBlockId: CompliancesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Compliance`. */ +export type AssetBlocksByComplianceAssetIdAndUpdatedBlockIdManyToManyEdgeCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByCreatedBlockId: DistributionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type AssetBlocksByDistributionAssetIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByUpdatedBlockId: DistributionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type AssetBlocksByDistributionAssetIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Funding`. */ +export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Funding`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Funding`. */ +export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Funding`. */ +export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Funding`. */ + fundingsByCreatedBlockId: FundingsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Funding`. */ +export type AssetBlocksByFundingAssetIdAndCreatedBlockIdManyToManyEdgeFundingsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Funding`. */ +export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Funding`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Funding`. */ +export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Funding`. */ +export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Funding`. */ + fundingsByUpdatedBlockId: FundingsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Funding`. */ +export type AssetBlocksByFundingAssetIdAndUpdatedBlockIdManyToManyEdgeFundingsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHoldersByCreatedBlockId: NftHoldersConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type AssetBlocksByNftHolderAssetIdAndCreatedBlockIdManyToManyEdgeNftHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHoldersByUpdatedBlockId: NftHoldersConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type AssetBlocksByNftHolderAssetIdAndUpdatedBlockIdManyToManyEdgeNftHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByCreatedBlockId: PortfolioMovementsConnection; +}; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type AssetBlocksByPortfolioMovementAssetIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByUpdatedBlockId: PortfolioMovementsConnection; +}; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type AssetBlocksByPortfolioMovementAssetIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByCreatedBlockId: StatTypesConnection; +}; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type AssetBlocksByStatTypeAssetIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByUpdatedBlockId: StatTypesConnection; +}; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type AssetBlocksByStatTypeAssetIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type AssetBlocksByStoOfferingAssetIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByUpdatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type AssetBlocksByStoOfferingAssetIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByCreatedBlockId: TickerExternalAgentActionsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type AssetBlocksByTickerExternalAgentActionAssetIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentActionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByUpdatedBlockId: TickerExternalAgentActionsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type AssetBlocksByTickerExternalAgentActionAssetIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentActionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByCreatedBlockId: TickerExternalAgentsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type AssetBlocksByTickerExternalAgentAssetIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByUpdatedBlockId: TickerExternalAgentsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type AssetBlocksByTickerExternalAgentAssetIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistoriesByCreatedBlockId: TickerExternalAgentHistoriesConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistoriesByUpdatedBlockId: TickerExternalAgentHistoriesConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type AssetBlocksByTickerExternalAgentHistoryAssetIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByCreatedBlockId: TransferCompliancesConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type AssetBlocksByTransferComplianceAssetIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByUpdatedBlockId: TransferCompliancesConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type AssetBlocksByTransferComplianceAssetIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ +export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferComplianceExemption`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ +export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ +export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptionsByCreatedBlockId: TransferComplianceExemptionsConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ +export type AssetBlocksByTransferComplianceExemptionAssetIdAndCreatedBlockIdManyToManyEdgeTransferComplianceExemptionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ +export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferComplianceExemption`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ +export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ +export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptionsByUpdatedBlockId: TransferComplianceExemptionsConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ +export type AssetBlocksByTransferComplianceExemptionAssetIdAndUpdatedBlockIdManyToManyEdgeTransferComplianceExemptionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferManager`. */ +export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferManager`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferManager`. */ +export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferManager`. */ +export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferManager`. */ + transferManagersByCreatedBlockId: TransferManagersConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferManager`. */ +export type AssetBlocksByTransferManagerAssetIdAndCreatedBlockIdManyToManyEdgeTransferManagersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferManager`. */ +export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferManager`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferManager`. */ +export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferManager`. */ +export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferManager`. */ + transferManagersByUpdatedBlockId: TransferManagersConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferManager`. */ +export type AssetBlocksByTransferManagerAssetIdAndUpdatedBlockIdManyToManyEdgeTransferManagersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ +export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TrustedClaimIssuer`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ +export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TrustedClaimIssuer`. */ + trustedClaimIssuersByCreatedBlockId: TrustedClaimIssuersConnection; +}; + +/** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type AssetBlocksByTrustedClaimIssuerAssetIdAndCreatedBlockIdManyToManyEdgeTrustedClaimIssuersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ +export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TrustedClaimIssuer`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ +export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TrustedClaimIssuer`. */ + trustedClaimIssuersByUpdatedBlockId: TrustedClaimIssuersConnection; +}; + +/** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type AssetBlocksByTrustedClaimIssuerAssetIdAndUpdatedBlockIdManyToManyEdgeTrustedClaimIssuersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ +export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyConnection = { + __typename?: 'AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ +export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `CustomClaimType` edge in the connection, with data from `StatType`. */ +export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyEdge = { + __typename?: 'AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `CustomClaimType` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypes: StatTypesConnection; +}; + +/** A `CustomClaimType` edge in the connection, with data from `StatType`. */ +export type AssetCustomClaimTypesByStatTypeAssetIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type AssetDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + eventIdx?: InputMaybe; + fundingRound?: InputMaybe; + id?: InputMaybe; + identifiers?: InputMaybe; + isCompliancePaused?: InputMaybe; + isDivisible?: InputMaybe; + isFrozen?: InputMaybe; + isNftCollection?: InputMaybe; + isUniquenessRequired?: InputMaybe; + name?: InputMaybe; + ownerId?: InputMaybe; + ticker?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; + type?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type AssetDistinctCountAggregates = { + __typename?: 'AssetDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of fundingRound across the matching connection */ + fundingRound?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identifiers across the matching connection */ + identifiers?: Maybe; + /** Distinct count of isCompliancePaused across the matching connection */ + isCompliancePaused?: Maybe; + /** Distinct count of isDivisible across the matching connection */ + isDivisible?: Maybe; + /** Distinct count of isFrozen across the matching connection */ + isFrozen?: Maybe; + /** Distinct count of isNftCollection across the matching connection */ + isNftCollection?: Maybe; + /** Distinct count of isUniquenessRequired across the matching connection */ + isUniquenessRequired?: Maybe; + /** Distinct count of name across the matching connection */ + name?: Maybe; + /** Distinct count of ownerId across the matching connection */ + ownerId?: Maybe; + /** Distinct count of ticker across the matching connection */ + ticker?: Maybe; + /** Distinct count of totalSupply across the matching connection */ + totalSupply?: Maybe; + /** Distinct count of totalTransfers across the matching connection */ + totalTransfers?: Maybe; + /** Distinct count of type across the matching connection */ + type?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +export type AssetDocument = Node & { + __typename?: 'AssetDocument'; + /** Reads a single `Asset` that is related to this `AssetDocument`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + contentHash?: Maybe; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `AssetDocument`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + documentId: Scalars['Int']['output']; + filedAt?: Maybe; + id: Scalars['String']['output']; + link: Scalars['String']['output']; + name: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + type?: Maybe; + /** Reads a single `Block` that is related to this `AssetDocument`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type AssetDocumentAggregates = { + __typename?: 'AssetDocumentAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `AssetDocument` object types. */ +export type AssetDocumentAggregatesFilter = { + /** Mean average aggregate over matching `AssetDocument` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `AssetDocument` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `AssetDocument` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `AssetDocument` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `AssetDocument` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `AssetDocument` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `AssetDocument` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `AssetDocument` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `AssetDocument` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `AssetDocument` objects. */ + varianceSample?: InputMaybe; +}; + +export type AssetDocumentAverageAggregateFilter = { + documentId?: InputMaybe; +}; + +export type AssetDocumentAverageAggregates = { + __typename?: 'AssetDocumentAverageAggregates'; + /** Mean average of documentId across the matching connection */ + documentId?: Maybe; +}; + +export type AssetDocumentDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + contentHash?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + documentId?: InputMaybe; + filedAt?: InputMaybe; + id?: InputMaybe; + link?: InputMaybe; + name?: InputMaybe; + type?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type AssetDocumentDistinctCountAggregates = { + __typename?: 'AssetDocumentDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of contentHash across the matching connection */ + contentHash?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of documentId across the matching connection */ + documentId?: Maybe; + /** Distinct count of filedAt across the matching connection */ + filedAt?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of link across the matching connection */ + link?: Maybe; + /** Distinct count of name across the matching connection */ + name?: Maybe; + /** Distinct count of type across the matching connection */ + type?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `AssetDocument` object types. All fields are combined with a logical ‘and.’ */ +export type AssetDocumentFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `contentHash` field. */ + contentHash?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `documentId` field. */ + documentId?: InputMaybe; + /** Filter by the object’s `filedAt` field. */ + filedAt?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `link` field. */ + link?: InputMaybe; + /** Filter by the object’s `name` field. */ + name?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `type` field. */ + type?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type AssetDocumentMaxAggregateFilter = { + documentId?: InputMaybe; +}; + +export type AssetDocumentMaxAggregates = { + __typename?: 'AssetDocumentMaxAggregates'; + /** Maximum of documentId across the matching connection */ + documentId?: Maybe; +}; + +export type AssetDocumentMinAggregateFilter = { + documentId?: InputMaybe; +}; + +export type AssetDocumentMinAggregates = { + __typename?: 'AssetDocumentMinAggregates'; + /** Minimum of documentId across the matching connection */ + documentId?: Maybe; +}; + +export type AssetDocumentStddevPopulationAggregateFilter = { + documentId?: InputMaybe; +}; + +export type AssetDocumentStddevPopulationAggregates = { + __typename?: 'AssetDocumentStddevPopulationAggregates'; + /** Population standard deviation of documentId across the matching connection */ + documentId?: Maybe; +}; + +export type AssetDocumentStddevSampleAggregateFilter = { + documentId?: InputMaybe; +}; + +export type AssetDocumentStddevSampleAggregates = { + __typename?: 'AssetDocumentStddevSampleAggregates'; + /** Sample standard deviation of documentId across the matching connection */ + documentId?: Maybe; +}; + +export type AssetDocumentSumAggregateFilter = { + documentId?: InputMaybe; +}; + +export type AssetDocumentSumAggregates = { + __typename?: 'AssetDocumentSumAggregates'; + /** Sum of documentId across the matching connection */ + documentId: Scalars['BigInt']['output']; +}; + +export type AssetDocumentVariancePopulationAggregateFilter = { + documentId?: InputMaybe; +}; + +export type AssetDocumentVariancePopulationAggregates = { + __typename?: 'AssetDocumentVariancePopulationAggregates'; + /** Population variance of documentId across the matching connection */ + documentId?: Maybe; +}; + +export type AssetDocumentVarianceSampleAggregateFilter = { + documentId?: InputMaybe; +}; + +export type AssetDocumentVarianceSampleAggregates = { + __typename?: 'AssetDocumentVarianceSampleAggregates'; + /** Sample variance of documentId across the matching connection */ + documentId?: Maybe; +}; + +/** A connection to a list of `AssetDocument` values. */ +export type AssetDocumentsConnection = { + __typename?: 'AssetDocumentsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `AssetDocument` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `AssetDocument` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `AssetDocument` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `AssetDocument` values. */ +export type AssetDocumentsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `AssetDocument` edge in the connection. */ +export type AssetDocumentsEdge = { + __typename?: 'AssetDocumentsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `AssetDocument` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `AssetDocument` for usage during aggregation. */ +export enum AssetDocumentsGroupBy { + AssetId = 'ASSET_ID', + ContentHash = 'CONTENT_HASH', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + DocumentId = 'DOCUMENT_ID', + FiledAt = 'FILED_AT', + FiledAtTruncatedToDay = 'FILED_AT_TRUNCATED_TO_DAY', + FiledAtTruncatedToHour = 'FILED_AT_TRUNCATED_TO_HOUR', + Id = 'ID', + Link = 'LINK', + Name = 'NAME', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type AssetDocumentsHavingAverageInput = { + createdAt?: InputMaybe; + documentId?: InputMaybe; + filedAt?: InputMaybe; +}; + +export type AssetDocumentsHavingDistinctCountInput = { + createdAt?: InputMaybe; + documentId?: InputMaybe; + filedAt?: InputMaybe; +}; + +/** Conditions for `AssetDocument` aggregates. */ +export type AssetDocumentsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type AssetDocumentsHavingMaxInput = { + createdAt?: InputMaybe; + documentId?: InputMaybe; + filedAt?: InputMaybe; +}; + +export type AssetDocumentsHavingMinInput = { + createdAt?: InputMaybe; + documentId?: InputMaybe; + filedAt?: InputMaybe; +}; + +export type AssetDocumentsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + documentId?: InputMaybe; + filedAt?: InputMaybe; +}; + +export type AssetDocumentsHavingStddevSampleInput = { + createdAt?: InputMaybe; + documentId?: InputMaybe; + filedAt?: InputMaybe; +}; + +export type AssetDocumentsHavingSumInput = { + createdAt?: InputMaybe; + documentId?: InputMaybe; + filedAt?: InputMaybe; +}; + +export type AssetDocumentsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + documentId?: InputMaybe; + filedAt?: InputMaybe; +}; + +export type AssetDocumentsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + documentId?: InputMaybe; + filedAt?: InputMaybe; +}; + +/** Methods to use when ordering `AssetDocument`. */ +export enum AssetDocumentsOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + ContentHashAsc = 'CONTENT_HASH_ASC', + ContentHashDesc = 'CONTENT_HASH_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DocumentIdAsc = 'DOCUMENT_ID_ASC', + DocumentIdDesc = 'DOCUMENT_ID_DESC', + FiledAtAsc = 'FILED_AT_ASC', + FiledAtDesc = 'FILED_AT_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + LinkAsc = 'LINK_ASC', + LinkDesc = 'LINK_DESC', + NameAsc = 'NAME_ASC', + NameDesc = 'NAME_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + TypeAsc = 'TYPE_ASC', + TypeDesc = 'TYPE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** A filter to be used against `Asset` object types. All fields are combined with a logical ‘and.’ */ +export type AssetFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `assetPreApprovals` relation. */ + assetPreApprovals?: InputMaybe; + /** Some related `assetPreApprovals` exist. */ + assetPreApprovalsExist?: InputMaybe; + /** Filter by the object’s `assetTransactions` relation. */ + assetTransactions?: InputMaybe; + /** Some related `assetTransactions` exist. */ + assetTransactionsExist?: InputMaybe; + /** Filter by the object’s `claimScopes` relation. */ + claimScopes?: InputMaybe; + /** Some related `claimScopes` exist. */ + claimScopesExist?: InputMaybe; + /** Filter by the object’s `compliance` relation. */ + compliance?: InputMaybe; + /** Some related `compliance` exist. */ + complianceExist?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `distributions` relation. */ + distributions?: InputMaybe; + /** Some related `distributions` exist. */ + distributionsExist?: InputMaybe; + /** Filter by the object’s `documents` relation. */ + documents?: InputMaybe; + /** Some related `documents` exist. */ + documentsExist?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `fundingRound` field. */ + fundingRound?: InputMaybe; + /** Filter by the object’s `fundings` relation. */ + fundings?: InputMaybe; + /** Some related `fundings` exist. */ + fundingsExist?: InputMaybe; + /** Filter by the object’s `holders` relation. */ + holders?: InputMaybe; + /** Some related `holders` exist. */ + holdersExist?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identifiers` field. */ + identifiers?: InputMaybe; + /** Filter by the object’s `isCompliancePaused` field. */ + isCompliancePaused?: InputMaybe; + /** Filter by the object’s `isDivisible` field. */ + isDivisible?: InputMaybe; + /** Filter by the object’s `isFrozen` field. */ + isFrozen?: InputMaybe; + /** Filter by the object’s `isNftCollection` field. */ + isNftCollection?: InputMaybe; + /** Filter by the object’s `isUniquenessRequired` field. */ + isUniquenessRequired?: InputMaybe; + /** Filter by the object’s `mandatoryMediators` relation. */ + mandatoryMediators?: InputMaybe; + /** Some related `mandatoryMediators` exist. */ + mandatoryMediatorsExist?: InputMaybe; + /** Filter by the object’s `name` field. */ + name?: InputMaybe; + /** Filter by the object’s `nftHolders` relation. */ + nftHolders?: InputMaybe; + /** Some related `nftHolders` exist. */ + nftHoldersExist?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `owner` relation. */ + owner?: InputMaybe; + /** Filter by the object’s `ownerId` field. */ + ownerId?: InputMaybe; + /** Filter by the object’s `portfolioMovements` relation. */ + portfolioMovements?: InputMaybe; + /** Some related `portfolioMovements` exist. */ + portfolioMovementsExist?: InputMaybe; + /** Filter by the object’s `statTypes` relation. */ + statTypes?: InputMaybe; + /** Some related `statTypes` exist. */ + statTypesExist?: InputMaybe; + /** Filter by the object’s `stosByOfferingAssetId` relation. */ + stosByOfferingAssetId?: InputMaybe; + /** Some related `stosByOfferingAssetId` exist. */ + stosByOfferingAssetIdExist?: InputMaybe; + /** Filter by the object’s `ticker` field. */ + ticker?: InputMaybe; + /** Filter by the object’s `tickerExternalAgentActions` relation. */ + tickerExternalAgentActions?: InputMaybe; + /** Some related `tickerExternalAgentActions` exist. */ + tickerExternalAgentActionsExist?: InputMaybe; + /** Filter by the object’s `tickerExternalAgentHistories` relation. */ + tickerExternalAgentHistories?: InputMaybe; + /** Some related `tickerExternalAgentHistories` exist. */ + tickerExternalAgentHistoriesExist?: InputMaybe; + /** Filter by the object’s `tickerExternalAgents` relation. */ + tickerExternalAgents?: InputMaybe; + /** Some related `tickerExternalAgents` exist. */ + tickerExternalAgentsExist?: InputMaybe; + /** Filter by the object’s `totalSupply` field. */ + totalSupply?: InputMaybe; + /** Filter by the object’s `totalTransfers` field. */ + totalTransfers?: InputMaybe; + /** Filter by the object’s `transferComplianceExemptions` relation. */ + transferComplianceExemptions?: InputMaybe; + /** Some related `transferComplianceExemptions` exist. */ + transferComplianceExemptionsExist?: InputMaybe; + /** Filter by the object’s `transferCompliances` relation. */ + transferCompliances?: InputMaybe; + /** Some related `transferCompliances` exist. */ + transferCompliancesExist?: InputMaybe; + /** Filter by the object’s `transferManagers` relation. */ + transferManagers?: InputMaybe; + /** Some related `transferManagers` exist. */ + transferManagersExist?: InputMaybe; + /** Filter by the object’s `trustedClaimIssuers` relation. */ + trustedClaimIssuers?: InputMaybe; + /** Some related `trustedClaimIssuers` exist. */ + trustedClaimIssuersExist?: InputMaybe; + /** Filter by the object’s `type` field. */ + type?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type AssetHolder = Node & { + __typename?: 'AssetHolder'; + amount: Scalars['BigFloat']['output']; + /** Reads a single `Asset` that is related to this `AssetHolder`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `AssetHolder`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `AssetHolder`. */ + identity?: Maybe; + identityId: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Block` that is related to this `AssetHolder`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type AssetHolderAggregates = { + __typename?: 'AssetHolderAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `AssetHolder` object types. */ +export type AssetHolderAggregatesFilter = { + /** Mean average aggregate over matching `AssetHolder` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `AssetHolder` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `AssetHolder` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `AssetHolder` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `AssetHolder` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `AssetHolder` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `AssetHolder` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `AssetHolder` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `AssetHolder` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `AssetHolder` objects. */ + varianceSample?: InputMaybe; +}; + +export type AssetHolderAverageAggregateFilter = { + amount?: InputMaybe; +}; + +export type AssetHolderAverageAggregates = { + __typename?: 'AssetHolderAverageAggregates'; + /** Mean average of amount across the matching connection */ + amount?: Maybe; +}; + +export type AssetHolderDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + amount?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type AssetHolderDistinctCountAggregates = { + __typename?: 'AssetHolderDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `AssetHolder` object types. All fields are combined with a logical ‘and.’ */ +export type AssetHolderFilter = { + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` relation. */ + identity?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type AssetHolderMaxAggregateFilter = { + amount?: InputMaybe; +}; + +export type AssetHolderMaxAggregates = { + __typename?: 'AssetHolderMaxAggregates'; + /** Maximum of amount across the matching connection */ + amount?: Maybe; +}; + +export type AssetHolderMinAggregateFilter = { + amount?: InputMaybe; +}; + +export type AssetHolderMinAggregates = { + __typename?: 'AssetHolderMinAggregates'; + /** Minimum of amount across the matching connection */ + amount?: Maybe; +}; + +export type AssetHolderStddevPopulationAggregateFilter = { + amount?: InputMaybe; +}; + +export type AssetHolderStddevPopulationAggregates = { + __typename?: 'AssetHolderStddevPopulationAggregates'; + /** Population standard deviation of amount across the matching connection */ + amount?: Maybe; +}; + +export type AssetHolderStddevSampleAggregateFilter = { + amount?: InputMaybe; +}; + +export type AssetHolderStddevSampleAggregates = { + __typename?: 'AssetHolderStddevSampleAggregates'; + /** Sample standard deviation of amount across the matching connection */ + amount?: Maybe; +}; + +export type AssetHolderSumAggregateFilter = { + amount?: InputMaybe; +}; + +export type AssetHolderSumAggregates = { + __typename?: 'AssetHolderSumAggregates'; + /** Sum of amount across the matching connection */ + amount: Scalars['BigFloat']['output']; +}; + +export type AssetHolderVariancePopulationAggregateFilter = { + amount?: InputMaybe; +}; + +export type AssetHolderVariancePopulationAggregates = { + __typename?: 'AssetHolderVariancePopulationAggregates'; + /** Population variance of amount across the matching connection */ + amount?: Maybe; +}; + +export type AssetHolderVarianceSampleAggregateFilter = { + amount?: InputMaybe; +}; + +export type AssetHolderVarianceSampleAggregates = { + __typename?: 'AssetHolderVarianceSampleAggregates'; + /** Sample variance of amount across the matching connection */ + amount?: Maybe; +}; + +/** A connection to a list of `AssetHolder` values. */ +export type AssetHoldersConnection = { + __typename?: 'AssetHoldersConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `AssetHolder` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `AssetHolder` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `AssetHolder` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `AssetHolder` values. */ +export type AssetHoldersConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `AssetHolder` edge in the connection. */ +export type AssetHoldersEdge = { + __typename?: 'AssetHoldersEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `AssetHolder` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `AssetHolder` for usage during aggregation. */ +export enum AssetHoldersGroupBy { + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type AssetHoldersHavingAverageInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type AssetHoldersHavingDistinctCountInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +/** Conditions for `AssetHolder` aggregates. */ +export type AssetHoldersHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type AssetHoldersHavingMaxInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type AssetHoldersHavingMinInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type AssetHoldersHavingStddevPopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type AssetHoldersHavingStddevSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type AssetHoldersHavingSumInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type AssetHoldersHavingVariancePopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type AssetHoldersHavingVarianceSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `AssetHolder`. */ +export enum AssetHoldersOrderBy { + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** A connection to a list of `Identity` values, with data from `AssetHolder`. */ +export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyConnection = { + __typename?: 'AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `AssetHolder`. */ +export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `AssetHolder`. */ +export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyEdge = { + __typename?: 'AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AssetHolder`. */ + heldAssets: AssetHoldersConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `AssetHolder`. */ +export type AssetIdentitiesByAssetHolderAssetIdAndIdentityIdManyToManyEdgeHeldAssetsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `AssetMandatoryMediator`. */ +export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyConnection = { + __typename?: 'AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `AssetMandatoryMediator`. */ +export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyEdge = { + __typename?: 'AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByAddedById: AssetMandatoryMediatorsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type AssetIdentitiesByAssetMandatoryMediatorAssetIdAndAddedByIdManyToManyEdgeAssetMandatoryMediatorsByAddedByIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ +export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyConnection = { + __typename?: 'AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ +export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ +export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyEdge = { + __typename?: 'AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovals: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ +export type AssetIdentitiesByAssetPreApprovalAssetIdAndIdentityIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Distribution`. */ +export type AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyConnection = { + __typename?: 'AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Distribution`. */ +export type AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Distribution`. */ +export type AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyEdge = { + __typename?: 'AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Distribution`. */ +export type AssetIdentitiesByDistributionAssetIdAndIdentityIdManyToManyEdgeDistributionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `NftHolder`. */ +export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyConnection = { + __typename?: 'AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `NftHolder`. */ +export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `NftHolder`. */ +export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyEdge = { + __typename?: 'AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + heldNfts: NftHoldersConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `NftHolder`. */ +export type AssetIdentitiesByNftHolderAssetIdAndIdentityIdManyToManyEdgeHeldNftsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `StatType`. */ +export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyConnection = { + __typename?: 'AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `StatType`. */ +export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `StatType`. */ +export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyEdge = { + __typename?: 'AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByClaimIssuerId: StatTypesConnection; +}; + +/** A `Identity` edge in the connection, with data from `StatType`. */ +export type AssetIdentitiesByStatTypeAssetIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyConnection = { + __typename?: 'AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyEdge = { + __typename?: 'AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatorId: StosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type AssetIdentitiesByStoOfferingAssetIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentAction`. */ +export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyConnection = { + __typename?: 'AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentAction`. */ +export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyEdge = { + __typename?: 'AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByCallerId: TickerExternalAgentActionsConnection; +}; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type AssetIdentitiesByTickerExternalAgentActionAssetIdAndCallerIdManyToManyEdgeTickerExternalAgentActionsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ +export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyConnection = { + __typename?: 'AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ +export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ +export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyEdge = { + __typename?: 'AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByCallerId: TickerExternalAgentsConnection; +}; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ +export type AssetIdentitiesByTickerExternalAgentAssetIdAndCallerIdManyToManyEdgeTickerExternalAgentsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ +export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyConnection = { + __typename?: 'AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ +export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyEdge = { + __typename?: 'AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; +}; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type AssetIdentitiesByTickerExternalAgentHistoryAssetIdAndIdentityIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ +export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyConnection = { + __typename?: 'AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ +export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TransferCompliance`. */ +export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyEdge = { + __typename?: 'AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByClaimIssuerId: TransferCompliancesConnection; +}; + +/** A `Identity` edge in the connection, with data from `TransferCompliance`. */ +export type AssetIdentitiesByTransferComplianceAssetIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ +export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyConnection = { + __typename?: 'AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ +export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ +export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyEdge = { + __typename?: 'AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ +export type AssetInstructionsByAssetTransactionAssetIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type AssetMandatoryMediator = Node & { + __typename?: 'AssetMandatoryMediator'; + /** Reads a single `Identity` that is related to this `AssetMandatoryMediator`. */ + addedBy?: Maybe; + addedById: Scalars['String']['output']; + /** Reads a single `Asset` that is related to this `AssetMandatoryMediator`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `AssetMandatoryMediator`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + identityId: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Block` that is related to this `AssetMandatoryMediator`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type AssetMandatoryMediatorAggregates = { + __typename?: 'AssetMandatoryMediatorAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `AssetMandatoryMediator` object types. */ +export type AssetMandatoryMediatorAggregatesFilter = { + /** Distinct count aggregate over matching `AssetMandatoryMediator` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `AssetMandatoryMediator` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type AssetMandatoryMediatorDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + addedById?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type AssetMandatoryMediatorDistinctCountAggregates = { + __typename?: 'AssetMandatoryMediatorDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of addedById across the matching connection */ + addedById?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `AssetMandatoryMediator` object types. All fields are combined with a logical ‘and.’ */ +export type AssetMandatoryMediatorFilter = { + /** Filter by the object’s `addedBy` relation. */ + addedBy?: InputMaybe; + /** Filter by the object’s `addedById` field. */ + addedById?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `AssetMandatoryMediator` values. */ +export type AssetMandatoryMediatorsConnection = { + __typename?: 'AssetMandatoryMediatorsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `AssetMandatoryMediator` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `AssetMandatoryMediator` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `AssetMandatoryMediator` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `AssetMandatoryMediator` values. */ +export type AssetMandatoryMediatorsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `AssetMandatoryMediator` edge in the connection. */ +export type AssetMandatoryMediatorsEdge = { + __typename?: 'AssetMandatoryMediatorsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `AssetMandatoryMediator` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `AssetMandatoryMediator` for usage during aggregation. */ +export enum AssetMandatoryMediatorsGroupBy { + AddedById = 'ADDED_BY_ID', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type AssetMandatoryMediatorsHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type AssetMandatoryMediatorsHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `AssetMandatoryMediator` aggregates. */ +export type AssetMandatoryMediatorsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type AssetMandatoryMediatorsHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type AssetMandatoryMediatorsHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type AssetMandatoryMediatorsHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type AssetMandatoryMediatorsHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type AssetMandatoryMediatorsHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type AssetMandatoryMediatorsHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type AssetMandatoryMediatorsHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `AssetMandatoryMediator`. */ +export enum AssetMandatoryMediatorsOrderBy { + AddedByIdAsc = 'ADDED_BY_ID_ASC', + AddedByIdDesc = 'ADDED_BY_ID_DESC', + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type AssetMaxAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetMaxAggregates = { + __typename?: 'AssetMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of totalSupply across the matching connection */ + totalSupply?: Maybe; + /** Maximum of totalTransfers across the matching connection */ + totalTransfers?: Maybe; +}; + +export type AssetMinAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetMinAggregates = { + __typename?: 'AssetMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of totalSupply across the matching connection */ + totalSupply?: Maybe; + /** Minimum of totalTransfers across the matching connection */ + totalTransfers?: Maybe; +}; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyConnection = { + __typename?: 'AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyEdge = { + __typename?: 'AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByFromPortfolioId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type AssetPortfoliosByAssetTransactionAssetIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyConnection = { + __typename?: 'AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyEdge = { + __typename?: 'AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByToPortfolioId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type AssetPortfoliosByAssetTransactionAssetIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Distribution`. */ +export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyConnection = { + __typename?: 'AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Distribution`. */ +export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Distribution`. */ +export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyEdge = { + __typename?: 'AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `Distribution`. */ +export type AssetPortfoliosByDistributionAssetIdAndPortfolioIdManyToManyEdgeDistributionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyConnection = { + __typename?: 'AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyEdge = { + __typename?: 'AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByFromId: PortfolioMovementsConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type AssetPortfoliosByPortfolioMovementAssetIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyConnection = { + __typename?: 'AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyEdge = { + __typename?: 'AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByToId: PortfolioMovementsConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type AssetPortfoliosByPortfolioMovementAssetIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyConnection = { + __typename?: 'AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyEdge = { + __typename?: 'AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type AssetPortfoliosByStoOfferingAssetIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyConnection = { + __typename?: 'AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyEdge = { + __typename?: 'AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByRaisingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type AssetPortfoliosByStoOfferingAssetIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type AssetPreApproval = Node & { + __typename?: 'AssetPreApproval'; + /** Reads a single `Asset` that is related to this `AssetPreApproval`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `AssetPreApproval`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `AssetPreApproval`. */ + identity?: Maybe; + identityId: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Block` that is related to this `AssetPreApproval`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type AssetPreApprovalAggregates = { + __typename?: 'AssetPreApprovalAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `AssetPreApproval` object types. */ +export type AssetPreApprovalAggregatesFilter = { + /** Distinct count aggregate over matching `AssetPreApproval` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `AssetPreApproval` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type AssetPreApprovalDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type AssetPreApprovalDistinctCountAggregates = { + __typename?: 'AssetPreApprovalDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `AssetPreApproval` object types. All fields are combined with a logical ‘and.’ */ +export type AssetPreApprovalFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` relation. */ + identity?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `AssetPreApproval` values. */ +export type AssetPreApprovalsConnection = { + __typename?: 'AssetPreApprovalsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `AssetPreApproval` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `AssetPreApproval` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `AssetPreApproval` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `AssetPreApproval` values. */ +export type AssetPreApprovalsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `AssetPreApproval` edge in the connection. */ +export type AssetPreApprovalsEdge = { + __typename?: 'AssetPreApprovalsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `AssetPreApproval` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `AssetPreApproval` for usage during aggregation. */ +export enum AssetPreApprovalsGroupBy { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type AssetPreApprovalsHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type AssetPreApprovalsHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `AssetPreApproval` aggregates. */ +export type AssetPreApprovalsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type AssetPreApprovalsHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type AssetPreApprovalsHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type AssetPreApprovalsHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type AssetPreApprovalsHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type AssetPreApprovalsHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type AssetPreApprovalsHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type AssetPreApprovalsHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `AssetPreApproval`. */ +export enum AssetPreApprovalsOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ +export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyConnection = { + __typename?: 'AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `StatType`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `StatType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `StatType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ +export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `StatType` edge in the connection, with data from `TransferCompliance`. */ +export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyEdge = { + __typename?: 'AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `StatType` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliances: TransferCompliancesConnection; +}; + +/** A `StatType` edge in the connection, with data from `TransferCompliance`. */ +export type AssetStatTypesByTransferComplianceAssetIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type AssetStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetStddevPopulationAggregates = { + __typename?: 'AssetStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of totalSupply across the matching connection */ + totalSupply?: Maybe; + /** Population standard deviation of totalTransfers across the matching connection */ + totalTransfers?: Maybe; +}; + +export type AssetStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetStddevSampleAggregates = { + __typename?: 'AssetStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of totalSupply across the matching connection */ + totalSupply?: Maybe; + /** Sample standard deviation of totalTransfers across the matching connection */ + totalTransfers?: Maybe; +}; + +export type AssetSumAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetSumAggregates = { + __typename?: 'AssetSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of totalSupply across the matching connection */ + totalSupply: Scalars['BigFloat']['output']; + /** Sum of totalTransfers across the matching connection */ + totalTransfers: Scalars['BigFloat']['output']; +}; + +/** A filter to be used against many `AssetDocument` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyAssetDocumentFilter = { + /** Aggregates across related `AssetDocument` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetDocument` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetDocument` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetDocument` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetHolder` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyAssetHolderFilter = { + /** Aggregates across related `AssetHolder` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetMandatoryMediator` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyAssetMandatoryMediatorFilter = { + /** Aggregates across related `AssetMandatoryMediator` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetMandatoryMediator` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetMandatoryMediator` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetMandatoryMediator` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetPreApproval` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyAssetPreApprovalFilter = { + /** Aggregates across related `AssetPreApproval` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetPreApproval` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetPreApproval` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetPreApproval` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetTransaction` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyAssetTransactionFilter = { + /** Aggregates across related `AssetTransaction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ClaimScope` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyClaimScopeFilter = { + /** Aggregates across related `ClaimScope` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ClaimScope` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ClaimScope` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ClaimScope` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Compliance` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyComplianceFilter = { + /** Aggregates across related `Compliance` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Compliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Compliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Compliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Distribution` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyDistributionFilter = { + /** Aggregates across related `Distribution` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Funding` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyFundingFilter = { + /** Aggregates across related `Funding` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Funding` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Funding` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Funding` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `NftHolder` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyNftHolderFilter = { + /** Aggregates across related `NftHolder` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `NftHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `NftHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `NftHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `PortfolioMovement` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyPortfolioMovementFilter = { + /** Aggregates across related `PortfolioMovement` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `PortfolioMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `PortfolioMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `PortfolioMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `StatType` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyStatTypeFilter = { + /** Aggregates across related `StatType` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Sto` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyStoFilter = { + /** Aggregates across related `Sto` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TickerExternalAgentAction` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyTickerExternalAgentActionFilter = { + /** Aggregates across related `TickerExternalAgentAction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TickerExternalAgentAction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TickerExternalAgentAction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TickerExternalAgentAction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TickerExternalAgent` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyTickerExternalAgentFilter = { + /** Aggregates across related `TickerExternalAgent` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TickerExternalAgent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TickerExternalAgent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TickerExternalAgent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TickerExternalAgentHistory` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyTickerExternalAgentHistoryFilter = { + /** Aggregates across related `TickerExternalAgentHistory` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TickerExternalAgentHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TickerExternalAgentHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TickerExternalAgentHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TransferComplianceExemption` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyTransferComplianceExemptionFilter = { + /** Aggregates across related `TransferComplianceExemption` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TransferComplianceExemption` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TransferComplianceExemption` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TransferComplianceExemption` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TransferCompliance` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyTransferComplianceFilter = { + /** Aggregates across related `TransferCompliance` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TransferManager` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyTransferManagerFilter = { + /** Aggregates across related `TransferManager` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TransferManager` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TransferManager` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TransferManager` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TrustedClaimIssuer` object types. All fields are combined with a logical ‘and.’ */ +export type AssetToManyTrustedClaimIssuerFilter = { + /** Aggregates across related `TrustedClaimIssuer` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TrustedClaimIssuer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TrustedClaimIssuer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TrustedClaimIssuer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type AssetTransaction = Node & { + __typename?: 'AssetTransaction'; + /** `amount` is the number of fungible tokens involved in this transaction */ + amount?: Maybe; + /** Reads a single `Asset` that is related to this `AssetTransaction`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `AssetTransaction`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + eventId: EventIdEnum; + eventIdx: Scalars['Int']['output']; + /** `extrinsicIdx` will be null for scheduled transactions */ + extrinsicIdx?: Maybe; + /** Reads a single `Portfolio` that is related to this `AssetTransaction`. */ + fromPortfolio?: Maybe; + /** `fromPortfolioId` will be null in transactions where the Asset was issued */ + fromPortfolioId?: Maybe; + /** `fundingRound` will only be present for the cases where Assets are issued with a fundingRound name */ + fundingRound?: Maybe; + id: Scalars['String']['output']; + /** Reads a single `Instruction` that is related to this `AssetTransaction`. */ + instruction?: Maybe; + /** `instruction` will only be present for the cases where Assets are transferred once instruction is executed */ + instructionId?: Maybe; + /** `instructionMemo` will only be present for the cases where memo is provided for the instruction which got executed */ + instructionMemo?: Maybe; + /** `nftIds` are the IDs of the non-fungible tokens involved in this transaction */ + nftIds?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Portfolio` that is related to this `AssetTransaction`. */ + toPortfolio?: Maybe; + /** `toPortfolioId` will be null in transactions where the Asset was redeemed */ + toPortfolioId?: Maybe; + /** Reads a single `Block` that is related to this `AssetTransaction`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type AssetTransactionAggregates = { + __typename?: 'AssetTransactionAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `AssetTransaction` object types. */ +export type AssetTransactionAggregatesFilter = { + /** Mean average aggregate over matching `AssetTransaction` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `AssetTransaction` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `AssetTransaction` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `AssetTransaction` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `AssetTransaction` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `AssetTransaction` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `AssetTransaction` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `AssetTransaction` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `AssetTransaction` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `AssetTransaction` objects. */ + varianceSample?: InputMaybe; +}; + +export type AssetTransactionAverageAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionAverageAggregates = { + __typename?: 'AssetTransactionAverageAggregates'; + /** Mean average of amount across the matching connection */ + amount?: Maybe; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type AssetTransactionDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + amount?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + eventId?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + fromPortfolioId?: InputMaybe; + fundingRound?: InputMaybe; + id?: InputMaybe; + instructionId?: InputMaybe; + instructionMemo?: InputMaybe; + nftIds?: InputMaybe; + toPortfolioId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type AssetTransactionDistinctCountAggregates = { + __typename?: 'AssetTransactionDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of eventId across the matching connection */ + eventId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Distinct count of fromPortfolioId across the matching connection */ + fromPortfolioId?: Maybe; + /** Distinct count of fundingRound across the matching connection */ + fundingRound?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of instructionId across the matching connection */ + instructionId?: Maybe; + /** Distinct count of instructionMemo across the matching connection */ + instructionMemo?: Maybe; + /** Distinct count of nftIds across the matching connection */ + nftIds?: Maybe; + /** Distinct count of toPortfolioId across the matching connection */ + toPortfolioId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `AssetTransaction` object types. All fields are combined with a logical ‘and.’ */ +export type AssetTransactionFilter = { + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `eventId` field. */ + eventId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `extrinsicIdx` field. */ + extrinsicIdx?: InputMaybe; + /** Filter by the object’s `fromPortfolio` relation. */ + fromPortfolio?: InputMaybe; + /** A related `fromPortfolio` exists. */ + fromPortfolioExists?: InputMaybe; + /** Filter by the object’s `fromPortfolioId` field. */ + fromPortfolioId?: InputMaybe; + /** Filter by the object’s `fundingRound` field. */ + fundingRound?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `instruction` relation. */ + instruction?: InputMaybe; + /** A related `instruction` exists. */ + instructionExists?: InputMaybe; + /** Filter by the object’s `instructionId` field. */ + instructionId?: InputMaybe; + /** Filter by the object’s `instructionMemo` field. */ + instructionMemo?: InputMaybe; + /** Filter by the object’s `nftIds` field. */ + nftIds?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `toPortfolio` relation. */ + toPortfolio?: InputMaybe; + /** A related `toPortfolio` exists. */ + toPortfolioExists?: InputMaybe; + /** Filter by the object’s `toPortfolioId` field. */ + toPortfolioId?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type AssetTransactionMaxAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionMaxAggregates = { + __typename?: 'AssetTransactionMaxAggregates'; + /** Maximum of amount across the matching connection */ + amount?: Maybe; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type AssetTransactionMinAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionMinAggregates = { + __typename?: 'AssetTransactionMinAggregates'; + /** Minimum of amount across the matching connection */ + amount?: Maybe; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type AssetTransactionStddevPopulationAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionStddevPopulationAggregates = { + __typename?: 'AssetTransactionStddevPopulationAggregates'; + /** Population standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type AssetTransactionStddevSampleAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionStddevSampleAggregates = { + __typename?: 'AssetTransactionStddevSampleAggregates'; + /** Sample standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type AssetTransactionSumAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionSumAggregates = { + __typename?: 'AssetTransactionSumAggregates'; + /** Sum of amount across the matching connection */ + amount: Scalars['BigFloat']['output']; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of extrinsicIdx across the matching connection */ + extrinsicIdx: Scalars['BigInt']['output']; +}; + +export type AssetTransactionVariancePopulationAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionVariancePopulationAggregates = { + __typename?: 'AssetTransactionVariancePopulationAggregates'; + /** Population variance of amount across the matching connection */ + amount?: Maybe; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type AssetTransactionVarianceSampleAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionVarianceSampleAggregates = { + __typename?: 'AssetTransactionVarianceSampleAggregates'; + /** Sample variance of amount across the matching connection */ + amount?: Maybe; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +/** A connection to a list of `AssetTransaction` values. */ +export type AssetTransactionsConnection = { + __typename?: 'AssetTransactionsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `AssetTransaction` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `AssetTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `AssetTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `AssetTransaction` values. */ +export type AssetTransactionsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `AssetTransaction` edge in the connection. */ +export type AssetTransactionsEdge = { + __typename?: 'AssetTransactionsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `AssetTransaction` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `AssetTransaction` for usage during aggregation. */ +export enum AssetTransactionsGroupBy { + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + ExtrinsicIdx = 'EXTRINSIC_IDX', + FromPortfolioId = 'FROM_PORTFOLIO_ID', + FundingRound = 'FUNDING_ROUND', + Id = 'ID', + InstructionId = 'INSTRUCTION_ID', + InstructionMemo = 'INSTRUCTION_MEMO', + NftIds = 'NFT_IDS', + ToPortfolioId = 'TO_PORTFOLIO_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type AssetTransactionsHavingAverageInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionsHavingDistinctCountInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +/** Conditions for `AssetTransaction` aggregates. */ +export type AssetTransactionsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type AssetTransactionsHavingMaxInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionsHavingMinInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionsHavingStddevPopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionsHavingStddevSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionsHavingSumInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionsHavingVariancePopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type AssetTransactionsHavingVarianceSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +/** Methods to use when ordering `AssetTransaction`. */ +export enum AssetTransactionsOrderBy { + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + EventIdAsc = 'EVENT_ID_ASC', + EventIdDesc = 'EVENT_ID_DESC', + ExtrinsicIdxAsc = 'EXTRINSIC_IDX_ASC', + ExtrinsicIdxDesc = 'EXTRINSIC_IDX_DESC', + FromPortfolioIdAsc = 'FROM_PORTFOLIO_ID_ASC', + FromPortfolioIdDesc = 'FROM_PORTFOLIO_ID_DESC', + FundingRoundAsc = 'FUNDING_ROUND_ASC', + FundingRoundDesc = 'FUNDING_ROUND_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + InstructionIdAsc = 'INSTRUCTION_ID_ASC', + InstructionIdDesc = 'INSTRUCTION_ID_DESC', + InstructionMemoAsc = 'INSTRUCTION_MEMO_ASC', + InstructionMemoDesc = 'INSTRUCTION_MEMO_DESC', + Natural = 'NATURAL', + NftIdsAsc = 'NFT_IDS_ASC', + NftIdsDesc = 'NFT_IDS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ToPortfolioIdAsc = 'TO_PORTFOLIO_ID_ASC', + ToPortfolioIdDesc = 'TO_PORTFOLIO_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type AssetVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetVariancePopulationAggregates = { + __typename?: 'AssetVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of totalSupply across the matching connection */ + totalSupply?: Maybe; + /** Population variance of totalTransfers across the matching connection */ + totalTransfers?: Maybe; +}; + +export type AssetVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetVarianceSampleAggregates = { + __typename?: 'AssetVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of totalSupply across the matching connection */ + totalSupply?: Maybe; + /** Sample variance of totalTransfers across the matching connection */ + totalTransfers?: Maybe; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyConnection = { + __typename?: 'AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Venue`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Venue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Venue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyEdge = { + __typename?: 'AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Venue` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stos: StosConnection; +}; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type AssetVenuesByStoOfferingAssetIdAndVenueIdManyToManyEdgeStosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values. */ +export type AssetsConnection = { + __typename?: 'AssetsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values. */ +export type AssetsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Asset` edge in the connection. */ +export type AssetsEdge = { + __typename?: 'AssetsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Asset` for usage during aggregation. */ +export enum AssetsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventIdx = 'EVENT_IDX', + FundingRound = 'FUNDING_ROUND', + Id = 'ID', + Identifiers = 'IDENTIFIERS', + IsCompliancePaused = 'IS_COMPLIANCE_PAUSED', + IsDivisible = 'IS_DIVISIBLE', + IsFrozen = 'IS_FROZEN', + IsNftCollection = 'IS_NFT_COLLECTION', + IsUniquenessRequired = 'IS_UNIQUENESS_REQUIRED', + Name = 'NAME', + OwnerId = 'OWNER_ID', + Ticker = 'TICKER', + TotalSupply = 'TOTAL_SUPPLY', + TotalTransfers = 'TOTAL_TRANSFERS', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type AssetsHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetsHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +/** Conditions for `Asset` aggregates. */ +export type AssetsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type AssetsHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetsHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetsHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetsHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +export type AssetsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; + totalTransfers?: InputMaybe; +}; + +/** Methods to use when ordering `Asset`. */ +export enum AssetsOrderBy { + AssetPreApprovalsAverageAssetIdAsc = 'ASSET_PRE_APPROVALS_AVERAGE_ASSET_ID_ASC', + AssetPreApprovalsAverageAssetIdDesc = 'ASSET_PRE_APPROVALS_AVERAGE_ASSET_ID_DESC', + AssetPreApprovalsAverageBlockRangeAsc = 'ASSET_PRE_APPROVALS_AVERAGE_BLOCK_RANGE_ASC', + AssetPreApprovalsAverageBlockRangeDesc = 'ASSET_PRE_APPROVALS_AVERAGE_BLOCK_RANGE_DESC', + AssetPreApprovalsAverageCreatedAtAsc = 'ASSET_PRE_APPROVALS_AVERAGE_CREATED_AT_ASC', + AssetPreApprovalsAverageCreatedAtDesc = 'ASSET_PRE_APPROVALS_AVERAGE_CREATED_AT_DESC', + AssetPreApprovalsAverageCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsAverageCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsAverageIdentityIdAsc = 'ASSET_PRE_APPROVALS_AVERAGE_IDENTITY_ID_ASC', + AssetPreApprovalsAverageIdentityIdDesc = 'ASSET_PRE_APPROVALS_AVERAGE_IDENTITY_ID_DESC', + AssetPreApprovalsAverageIdAsc = 'ASSET_PRE_APPROVALS_AVERAGE_ID_ASC', + AssetPreApprovalsAverageIdDesc = 'ASSET_PRE_APPROVALS_AVERAGE_ID_DESC', + AssetPreApprovalsAverageUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsAverageUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsCountAsc = 'ASSET_PRE_APPROVALS_COUNT_ASC', + AssetPreApprovalsCountDesc = 'ASSET_PRE_APPROVALS_COUNT_DESC', + AssetPreApprovalsDistinctCountAssetIdAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_ASSET_ID_ASC', + AssetPreApprovalsDistinctCountAssetIdDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_ASSET_ID_DESC', + AssetPreApprovalsDistinctCountBlockRangeAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetPreApprovalsDistinctCountBlockRangeDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetPreApprovalsDistinctCountCreatedAtAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_CREATED_AT_ASC', + AssetPreApprovalsDistinctCountCreatedAtDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_CREATED_AT_DESC', + AssetPreApprovalsDistinctCountCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsDistinctCountCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsDistinctCountIdentityIdAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_IDENTITY_ID_ASC', + AssetPreApprovalsDistinctCountIdentityIdDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_IDENTITY_ID_DESC', + AssetPreApprovalsDistinctCountIdAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_ID_ASC', + AssetPreApprovalsDistinctCountIdDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_ID_DESC', + AssetPreApprovalsDistinctCountUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsDistinctCountUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsMaxAssetIdAsc = 'ASSET_PRE_APPROVALS_MAX_ASSET_ID_ASC', + AssetPreApprovalsMaxAssetIdDesc = 'ASSET_PRE_APPROVALS_MAX_ASSET_ID_DESC', + AssetPreApprovalsMaxBlockRangeAsc = 'ASSET_PRE_APPROVALS_MAX_BLOCK_RANGE_ASC', + AssetPreApprovalsMaxBlockRangeDesc = 'ASSET_PRE_APPROVALS_MAX_BLOCK_RANGE_DESC', + AssetPreApprovalsMaxCreatedAtAsc = 'ASSET_PRE_APPROVALS_MAX_CREATED_AT_ASC', + AssetPreApprovalsMaxCreatedAtDesc = 'ASSET_PRE_APPROVALS_MAX_CREATED_AT_DESC', + AssetPreApprovalsMaxCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_MAX_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsMaxCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_MAX_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsMaxIdentityIdAsc = 'ASSET_PRE_APPROVALS_MAX_IDENTITY_ID_ASC', + AssetPreApprovalsMaxIdentityIdDesc = 'ASSET_PRE_APPROVALS_MAX_IDENTITY_ID_DESC', + AssetPreApprovalsMaxIdAsc = 'ASSET_PRE_APPROVALS_MAX_ID_ASC', + AssetPreApprovalsMaxIdDesc = 'ASSET_PRE_APPROVALS_MAX_ID_DESC', + AssetPreApprovalsMaxUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_MAX_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsMaxUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_MAX_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsMinAssetIdAsc = 'ASSET_PRE_APPROVALS_MIN_ASSET_ID_ASC', + AssetPreApprovalsMinAssetIdDesc = 'ASSET_PRE_APPROVALS_MIN_ASSET_ID_DESC', + AssetPreApprovalsMinBlockRangeAsc = 'ASSET_PRE_APPROVALS_MIN_BLOCK_RANGE_ASC', + AssetPreApprovalsMinBlockRangeDesc = 'ASSET_PRE_APPROVALS_MIN_BLOCK_RANGE_DESC', + AssetPreApprovalsMinCreatedAtAsc = 'ASSET_PRE_APPROVALS_MIN_CREATED_AT_ASC', + AssetPreApprovalsMinCreatedAtDesc = 'ASSET_PRE_APPROVALS_MIN_CREATED_AT_DESC', + AssetPreApprovalsMinCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_MIN_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsMinCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_MIN_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsMinIdentityIdAsc = 'ASSET_PRE_APPROVALS_MIN_IDENTITY_ID_ASC', + AssetPreApprovalsMinIdentityIdDesc = 'ASSET_PRE_APPROVALS_MIN_IDENTITY_ID_DESC', + AssetPreApprovalsMinIdAsc = 'ASSET_PRE_APPROVALS_MIN_ID_ASC', + AssetPreApprovalsMinIdDesc = 'ASSET_PRE_APPROVALS_MIN_ID_DESC', + AssetPreApprovalsMinUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_MIN_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsMinUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_MIN_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsStddevPopulationAssetIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_ASSET_ID_ASC', + AssetPreApprovalsStddevPopulationAssetIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_ASSET_ID_DESC', + AssetPreApprovalsStddevPopulationBlockRangeAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetPreApprovalsStddevPopulationBlockRangeDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetPreApprovalsStddevPopulationCreatedAtAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_CREATED_AT_ASC', + AssetPreApprovalsStddevPopulationCreatedAtDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_CREATED_AT_DESC', + AssetPreApprovalsStddevPopulationCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsStddevPopulationCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsStddevPopulationIdentityIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_IDENTITY_ID_ASC', + AssetPreApprovalsStddevPopulationIdentityIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_IDENTITY_ID_DESC', + AssetPreApprovalsStddevPopulationIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_ID_ASC', + AssetPreApprovalsStddevPopulationIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_ID_DESC', + AssetPreApprovalsStddevPopulationUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsStddevPopulationUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsStddevSampleAssetIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetPreApprovalsStddevSampleAssetIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetPreApprovalsStddevSampleBlockRangeAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetPreApprovalsStddevSampleBlockRangeDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetPreApprovalsStddevSampleCreatedAtAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetPreApprovalsStddevSampleCreatedAtDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetPreApprovalsStddevSampleCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsStddevSampleCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsStddevSampleIdentityIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AssetPreApprovalsStddevSampleIdentityIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AssetPreApprovalsStddevSampleIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_ID_ASC', + AssetPreApprovalsStddevSampleIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_ID_DESC', + AssetPreApprovalsStddevSampleUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsStddevSampleUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsSumAssetIdAsc = 'ASSET_PRE_APPROVALS_SUM_ASSET_ID_ASC', + AssetPreApprovalsSumAssetIdDesc = 'ASSET_PRE_APPROVALS_SUM_ASSET_ID_DESC', + AssetPreApprovalsSumBlockRangeAsc = 'ASSET_PRE_APPROVALS_SUM_BLOCK_RANGE_ASC', + AssetPreApprovalsSumBlockRangeDesc = 'ASSET_PRE_APPROVALS_SUM_BLOCK_RANGE_DESC', + AssetPreApprovalsSumCreatedAtAsc = 'ASSET_PRE_APPROVALS_SUM_CREATED_AT_ASC', + AssetPreApprovalsSumCreatedAtDesc = 'ASSET_PRE_APPROVALS_SUM_CREATED_AT_DESC', + AssetPreApprovalsSumCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_SUM_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsSumCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_SUM_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsSumIdentityIdAsc = 'ASSET_PRE_APPROVALS_SUM_IDENTITY_ID_ASC', + AssetPreApprovalsSumIdentityIdDesc = 'ASSET_PRE_APPROVALS_SUM_IDENTITY_ID_DESC', + AssetPreApprovalsSumIdAsc = 'ASSET_PRE_APPROVALS_SUM_ID_ASC', + AssetPreApprovalsSumIdDesc = 'ASSET_PRE_APPROVALS_SUM_ID_DESC', + AssetPreApprovalsSumUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_SUM_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsSumUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_SUM_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsVariancePopulationAssetIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetPreApprovalsVariancePopulationAssetIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetPreApprovalsVariancePopulationBlockRangeAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetPreApprovalsVariancePopulationBlockRangeDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetPreApprovalsVariancePopulationCreatedAtAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetPreApprovalsVariancePopulationCreatedAtDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetPreApprovalsVariancePopulationCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsVariancePopulationCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsVariancePopulationIdentityIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AssetPreApprovalsVariancePopulationIdentityIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AssetPreApprovalsVariancePopulationIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_ID_ASC', + AssetPreApprovalsVariancePopulationIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_ID_DESC', + AssetPreApprovalsVariancePopulationUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsVariancePopulationUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsVarianceSampleAssetIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetPreApprovalsVarianceSampleAssetIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetPreApprovalsVarianceSampleBlockRangeAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetPreApprovalsVarianceSampleBlockRangeDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetPreApprovalsVarianceSampleCreatedAtAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetPreApprovalsVarianceSampleCreatedAtDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetPreApprovalsVarianceSampleCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsVarianceSampleCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsVarianceSampleIdentityIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AssetPreApprovalsVarianceSampleIdentityIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AssetPreApprovalsVarianceSampleIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_ID_ASC', + AssetPreApprovalsVarianceSampleIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_ID_DESC', + AssetPreApprovalsVarianceSampleUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsVarianceSampleUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsAverageAmountAsc = 'ASSET_TRANSACTIONS_AVERAGE_AMOUNT_ASC', + AssetTransactionsAverageAmountDesc = 'ASSET_TRANSACTIONS_AVERAGE_AMOUNT_DESC', + AssetTransactionsAverageAssetIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_ASSET_ID_ASC', + AssetTransactionsAverageAssetIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_ASSET_ID_DESC', + AssetTransactionsAverageBlockRangeAsc = 'ASSET_TRANSACTIONS_AVERAGE_BLOCK_RANGE_ASC', + AssetTransactionsAverageBlockRangeDesc = 'ASSET_TRANSACTIONS_AVERAGE_BLOCK_RANGE_DESC', + AssetTransactionsAverageCreatedAtAsc = 'ASSET_TRANSACTIONS_AVERAGE_CREATED_AT_ASC', + AssetTransactionsAverageCreatedAtDesc = 'ASSET_TRANSACTIONS_AVERAGE_CREATED_AT_DESC', + AssetTransactionsAverageCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetTransactionsAverageCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetTransactionsAverageDatetimeAsc = 'ASSET_TRANSACTIONS_AVERAGE_DATETIME_ASC', + AssetTransactionsAverageDatetimeDesc = 'ASSET_TRANSACTIONS_AVERAGE_DATETIME_DESC', + AssetTransactionsAverageEventIdxAsc = 'ASSET_TRANSACTIONS_AVERAGE_EVENT_IDX_ASC', + AssetTransactionsAverageEventIdxDesc = 'ASSET_TRANSACTIONS_AVERAGE_EVENT_IDX_DESC', + AssetTransactionsAverageEventIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_EVENT_ID_ASC', + AssetTransactionsAverageEventIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_EVENT_ID_DESC', + AssetTransactionsAverageExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_AVERAGE_EXTRINSIC_IDX_ASC', + AssetTransactionsAverageExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_AVERAGE_EXTRINSIC_IDX_DESC', + AssetTransactionsAverageFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsAverageFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsAverageFundingRoundAsc = 'ASSET_TRANSACTIONS_AVERAGE_FUNDING_ROUND_ASC', + AssetTransactionsAverageFundingRoundDesc = 'ASSET_TRANSACTIONS_AVERAGE_FUNDING_ROUND_DESC', + AssetTransactionsAverageIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_ID_ASC', + AssetTransactionsAverageIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_ID_DESC', + AssetTransactionsAverageInstructionIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_ID_ASC', + AssetTransactionsAverageInstructionIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_ID_DESC', + AssetTransactionsAverageInstructionMemoAsc = 'ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_MEMO_ASC', + AssetTransactionsAverageInstructionMemoDesc = 'ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_MEMO_DESC', + AssetTransactionsAverageNftIdsAsc = 'ASSET_TRANSACTIONS_AVERAGE_NFT_IDS_ASC', + AssetTransactionsAverageNftIdsDesc = 'ASSET_TRANSACTIONS_AVERAGE_NFT_IDS_DESC', + AssetTransactionsAverageToPortfolioIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsAverageToPortfolioIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsAverageUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsAverageUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsCountAsc = 'ASSET_TRANSACTIONS_COUNT_ASC', + AssetTransactionsCountDesc = 'ASSET_TRANSACTIONS_COUNT_DESC', + AssetTransactionsDistinctCountAmountAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_AMOUNT_ASC', + AssetTransactionsDistinctCountAmountDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_AMOUNT_DESC', + AssetTransactionsDistinctCountAssetIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_ASSET_ID_ASC', + AssetTransactionsDistinctCountAssetIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_ASSET_ID_DESC', + AssetTransactionsDistinctCountBlockRangeAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetTransactionsDistinctCountBlockRangeDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetTransactionsDistinctCountCreatedAtAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_AT_ASC', + AssetTransactionsDistinctCountCreatedAtDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_AT_DESC', + AssetTransactionsDistinctCountCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetTransactionsDistinctCountCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetTransactionsDistinctCountDatetimeAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_DATETIME_ASC', + AssetTransactionsDistinctCountDatetimeDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_DATETIME_DESC', + AssetTransactionsDistinctCountEventIdxAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_IDX_ASC', + AssetTransactionsDistinctCountEventIdxDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_IDX_DESC', + AssetTransactionsDistinctCountEventIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_ID_ASC', + AssetTransactionsDistinctCountEventIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_ID_DESC', + AssetTransactionsDistinctCountExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + AssetTransactionsDistinctCountExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + AssetTransactionsDistinctCountFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsDistinctCountFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsDistinctCountFundingRoundAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_FUNDING_ROUND_ASC', + AssetTransactionsDistinctCountFundingRoundDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_FUNDING_ROUND_DESC', + AssetTransactionsDistinctCountIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_ID_ASC', + AssetTransactionsDistinctCountIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_ID_DESC', + AssetTransactionsDistinctCountInstructionIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + AssetTransactionsDistinctCountInstructionIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + AssetTransactionsDistinctCountInstructionMemoAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC', + AssetTransactionsDistinctCountInstructionMemoDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC', + AssetTransactionsDistinctCountNftIdsAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_NFT_IDS_ASC', + AssetTransactionsDistinctCountNftIdsDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_NFT_IDS_DESC', + AssetTransactionsDistinctCountToPortfolioIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC', + AssetTransactionsDistinctCountToPortfolioIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_TO_PORTFOLIO_ID_DESC', + AssetTransactionsDistinctCountUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetTransactionsDistinctCountUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetTransactionsMaxAmountAsc = 'ASSET_TRANSACTIONS_MAX_AMOUNT_ASC', + AssetTransactionsMaxAmountDesc = 'ASSET_TRANSACTIONS_MAX_AMOUNT_DESC', + AssetTransactionsMaxAssetIdAsc = 'ASSET_TRANSACTIONS_MAX_ASSET_ID_ASC', + AssetTransactionsMaxAssetIdDesc = 'ASSET_TRANSACTIONS_MAX_ASSET_ID_DESC', + AssetTransactionsMaxBlockRangeAsc = 'ASSET_TRANSACTIONS_MAX_BLOCK_RANGE_ASC', + AssetTransactionsMaxBlockRangeDesc = 'ASSET_TRANSACTIONS_MAX_BLOCK_RANGE_DESC', + AssetTransactionsMaxCreatedAtAsc = 'ASSET_TRANSACTIONS_MAX_CREATED_AT_ASC', + AssetTransactionsMaxCreatedAtDesc = 'ASSET_TRANSACTIONS_MAX_CREATED_AT_DESC', + AssetTransactionsMaxCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_MAX_CREATED_BLOCK_ID_ASC', + AssetTransactionsMaxCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_MAX_CREATED_BLOCK_ID_DESC', + AssetTransactionsMaxDatetimeAsc = 'ASSET_TRANSACTIONS_MAX_DATETIME_ASC', + AssetTransactionsMaxDatetimeDesc = 'ASSET_TRANSACTIONS_MAX_DATETIME_DESC', + AssetTransactionsMaxEventIdxAsc = 'ASSET_TRANSACTIONS_MAX_EVENT_IDX_ASC', + AssetTransactionsMaxEventIdxDesc = 'ASSET_TRANSACTIONS_MAX_EVENT_IDX_DESC', + AssetTransactionsMaxEventIdAsc = 'ASSET_TRANSACTIONS_MAX_EVENT_ID_ASC', + AssetTransactionsMaxEventIdDesc = 'ASSET_TRANSACTIONS_MAX_EVENT_ID_DESC', + AssetTransactionsMaxExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_MAX_EXTRINSIC_IDX_ASC', + AssetTransactionsMaxExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_MAX_EXTRINSIC_IDX_DESC', + AssetTransactionsMaxFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_MAX_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsMaxFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_MAX_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsMaxFundingRoundAsc = 'ASSET_TRANSACTIONS_MAX_FUNDING_ROUND_ASC', + AssetTransactionsMaxFundingRoundDesc = 'ASSET_TRANSACTIONS_MAX_FUNDING_ROUND_DESC', + AssetTransactionsMaxIdAsc = 'ASSET_TRANSACTIONS_MAX_ID_ASC', + AssetTransactionsMaxIdDesc = 'ASSET_TRANSACTIONS_MAX_ID_DESC', + AssetTransactionsMaxInstructionIdAsc = 'ASSET_TRANSACTIONS_MAX_INSTRUCTION_ID_ASC', + AssetTransactionsMaxInstructionIdDesc = 'ASSET_TRANSACTIONS_MAX_INSTRUCTION_ID_DESC', + AssetTransactionsMaxInstructionMemoAsc = 'ASSET_TRANSACTIONS_MAX_INSTRUCTION_MEMO_ASC', + AssetTransactionsMaxInstructionMemoDesc = 'ASSET_TRANSACTIONS_MAX_INSTRUCTION_MEMO_DESC', + AssetTransactionsMaxNftIdsAsc = 'ASSET_TRANSACTIONS_MAX_NFT_IDS_ASC', + AssetTransactionsMaxNftIdsDesc = 'ASSET_TRANSACTIONS_MAX_NFT_IDS_DESC', + AssetTransactionsMaxToPortfolioIdAsc = 'ASSET_TRANSACTIONS_MAX_TO_PORTFOLIO_ID_ASC', + AssetTransactionsMaxToPortfolioIdDesc = 'ASSET_TRANSACTIONS_MAX_TO_PORTFOLIO_ID_DESC', + AssetTransactionsMaxUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_MAX_UPDATED_BLOCK_ID_ASC', + AssetTransactionsMaxUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_MAX_UPDATED_BLOCK_ID_DESC', + AssetTransactionsMinAmountAsc = 'ASSET_TRANSACTIONS_MIN_AMOUNT_ASC', + AssetTransactionsMinAmountDesc = 'ASSET_TRANSACTIONS_MIN_AMOUNT_DESC', + AssetTransactionsMinAssetIdAsc = 'ASSET_TRANSACTIONS_MIN_ASSET_ID_ASC', + AssetTransactionsMinAssetIdDesc = 'ASSET_TRANSACTIONS_MIN_ASSET_ID_DESC', + AssetTransactionsMinBlockRangeAsc = 'ASSET_TRANSACTIONS_MIN_BLOCK_RANGE_ASC', + AssetTransactionsMinBlockRangeDesc = 'ASSET_TRANSACTIONS_MIN_BLOCK_RANGE_DESC', + AssetTransactionsMinCreatedAtAsc = 'ASSET_TRANSACTIONS_MIN_CREATED_AT_ASC', + AssetTransactionsMinCreatedAtDesc = 'ASSET_TRANSACTIONS_MIN_CREATED_AT_DESC', + AssetTransactionsMinCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_MIN_CREATED_BLOCK_ID_ASC', + AssetTransactionsMinCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_MIN_CREATED_BLOCK_ID_DESC', + AssetTransactionsMinDatetimeAsc = 'ASSET_TRANSACTIONS_MIN_DATETIME_ASC', + AssetTransactionsMinDatetimeDesc = 'ASSET_TRANSACTIONS_MIN_DATETIME_DESC', + AssetTransactionsMinEventIdxAsc = 'ASSET_TRANSACTIONS_MIN_EVENT_IDX_ASC', + AssetTransactionsMinEventIdxDesc = 'ASSET_TRANSACTIONS_MIN_EVENT_IDX_DESC', + AssetTransactionsMinEventIdAsc = 'ASSET_TRANSACTIONS_MIN_EVENT_ID_ASC', + AssetTransactionsMinEventIdDesc = 'ASSET_TRANSACTIONS_MIN_EVENT_ID_DESC', + AssetTransactionsMinExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_MIN_EXTRINSIC_IDX_ASC', + AssetTransactionsMinExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_MIN_EXTRINSIC_IDX_DESC', + AssetTransactionsMinFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_MIN_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsMinFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_MIN_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsMinFundingRoundAsc = 'ASSET_TRANSACTIONS_MIN_FUNDING_ROUND_ASC', + AssetTransactionsMinFundingRoundDesc = 'ASSET_TRANSACTIONS_MIN_FUNDING_ROUND_DESC', + AssetTransactionsMinIdAsc = 'ASSET_TRANSACTIONS_MIN_ID_ASC', + AssetTransactionsMinIdDesc = 'ASSET_TRANSACTIONS_MIN_ID_DESC', + AssetTransactionsMinInstructionIdAsc = 'ASSET_TRANSACTIONS_MIN_INSTRUCTION_ID_ASC', + AssetTransactionsMinInstructionIdDesc = 'ASSET_TRANSACTIONS_MIN_INSTRUCTION_ID_DESC', + AssetTransactionsMinInstructionMemoAsc = 'ASSET_TRANSACTIONS_MIN_INSTRUCTION_MEMO_ASC', + AssetTransactionsMinInstructionMemoDesc = 'ASSET_TRANSACTIONS_MIN_INSTRUCTION_MEMO_DESC', + AssetTransactionsMinNftIdsAsc = 'ASSET_TRANSACTIONS_MIN_NFT_IDS_ASC', + AssetTransactionsMinNftIdsDesc = 'ASSET_TRANSACTIONS_MIN_NFT_IDS_DESC', + AssetTransactionsMinToPortfolioIdAsc = 'ASSET_TRANSACTIONS_MIN_TO_PORTFOLIO_ID_ASC', + AssetTransactionsMinToPortfolioIdDesc = 'ASSET_TRANSACTIONS_MIN_TO_PORTFOLIO_ID_DESC', + AssetTransactionsMinUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_MIN_UPDATED_BLOCK_ID_ASC', + AssetTransactionsMinUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_MIN_UPDATED_BLOCK_ID_DESC', + AssetTransactionsStddevPopulationAmountAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_AMOUNT_ASC', + AssetTransactionsStddevPopulationAmountDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_AMOUNT_DESC', + AssetTransactionsStddevPopulationAssetIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_ASSET_ID_ASC', + AssetTransactionsStddevPopulationAssetIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_ASSET_ID_DESC', + AssetTransactionsStddevPopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsStddevPopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsStddevPopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_AT_ASC', + AssetTransactionsStddevPopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_AT_DESC', + AssetTransactionsStddevPopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsStddevPopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsStddevPopulationDatetimeAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_DATETIME_ASC', + AssetTransactionsStddevPopulationDatetimeDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_DATETIME_DESC', + AssetTransactionsStddevPopulationEventIdxAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_IDX_ASC', + AssetTransactionsStddevPopulationEventIdxDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_IDX_DESC', + AssetTransactionsStddevPopulationEventIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_ID_ASC', + AssetTransactionsStddevPopulationEventIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_ID_DESC', + AssetTransactionsStddevPopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsStddevPopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsStddevPopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsStddevPopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsStddevPopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsStddevPopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsStddevPopulationIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_ID_ASC', + AssetTransactionsStddevPopulationIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_ID_DESC', + AssetTransactionsStddevPopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsStddevPopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsStddevPopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsStddevPopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsStddevPopulationNftIdsAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_NFT_IDS_ASC', + AssetTransactionsStddevPopulationNftIdsDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_NFT_IDS_DESC', + AssetTransactionsStddevPopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsStddevPopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsStddevPopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsStddevPopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsStddevSampleAmountAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_AMOUNT_ASC', + AssetTransactionsStddevSampleAmountDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_AMOUNT_DESC', + AssetTransactionsStddevSampleAssetIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetTransactionsStddevSampleAssetIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetTransactionsStddevSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsStddevSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsStddevSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetTransactionsStddevSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetTransactionsStddevSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsStddevSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsStddevSampleDatetimeAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_DATETIME_ASC', + AssetTransactionsStddevSampleDatetimeDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_DATETIME_DESC', + AssetTransactionsStddevSampleEventIdxAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsStddevSampleEventIdxDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsStddevSampleEventIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_ID_ASC', + AssetTransactionsStddevSampleEventIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_ID_DESC', + AssetTransactionsStddevSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsStddevSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsStddevSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsStddevSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsStddevSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsStddevSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsStddevSampleIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_ID_ASC', + AssetTransactionsStddevSampleIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_ID_DESC', + AssetTransactionsStddevSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsStddevSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsStddevSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsStddevSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsStddevSampleNftIdsAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_NFT_IDS_ASC', + AssetTransactionsStddevSampleNftIdsDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_NFT_IDS_DESC', + AssetTransactionsStddevSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsStddevSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsStddevSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsStddevSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsSumAmountAsc = 'ASSET_TRANSACTIONS_SUM_AMOUNT_ASC', + AssetTransactionsSumAmountDesc = 'ASSET_TRANSACTIONS_SUM_AMOUNT_DESC', + AssetTransactionsSumAssetIdAsc = 'ASSET_TRANSACTIONS_SUM_ASSET_ID_ASC', + AssetTransactionsSumAssetIdDesc = 'ASSET_TRANSACTIONS_SUM_ASSET_ID_DESC', + AssetTransactionsSumBlockRangeAsc = 'ASSET_TRANSACTIONS_SUM_BLOCK_RANGE_ASC', + AssetTransactionsSumBlockRangeDesc = 'ASSET_TRANSACTIONS_SUM_BLOCK_RANGE_DESC', + AssetTransactionsSumCreatedAtAsc = 'ASSET_TRANSACTIONS_SUM_CREATED_AT_ASC', + AssetTransactionsSumCreatedAtDesc = 'ASSET_TRANSACTIONS_SUM_CREATED_AT_DESC', + AssetTransactionsSumCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_SUM_CREATED_BLOCK_ID_ASC', + AssetTransactionsSumCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_SUM_CREATED_BLOCK_ID_DESC', + AssetTransactionsSumDatetimeAsc = 'ASSET_TRANSACTIONS_SUM_DATETIME_ASC', + AssetTransactionsSumDatetimeDesc = 'ASSET_TRANSACTIONS_SUM_DATETIME_DESC', + AssetTransactionsSumEventIdxAsc = 'ASSET_TRANSACTIONS_SUM_EVENT_IDX_ASC', + AssetTransactionsSumEventIdxDesc = 'ASSET_TRANSACTIONS_SUM_EVENT_IDX_DESC', + AssetTransactionsSumEventIdAsc = 'ASSET_TRANSACTIONS_SUM_EVENT_ID_ASC', + AssetTransactionsSumEventIdDesc = 'ASSET_TRANSACTIONS_SUM_EVENT_ID_DESC', + AssetTransactionsSumExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_SUM_EXTRINSIC_IDX_ASC', + AssetTransactionsSumExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_SUM_EXTRINSIC_IDX_DESC', + AssetTransactionsSumFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_SUM_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsSumFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_SUM_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsSumFundingRoundAsc = 'ASSET_TRANSACTIONS_SUM_FUNDING_ROUND_ASC', + AssetTransactionsSumFundingRoundDesc = 'ASSET_TRANSACTIONS_SUM_FUNDING_ROUND_DESC', + AssetTransactionsSumIdAsc = 'ASSET_TRANSACTIONS_SUM_ID_ASC', + AssetTransactionsSumIdDesc = 'ASSET_TRANSACTIONS_SUM_ID_DESC', + AssetTransactionsSumInstructionIdAsc = 'ASSET_TRANSACTIONS_SUM_INSTRUCTION_ID_ASC', + AssetTransactionsSumInstructionIdDesc = 'ASSET_TRANSACTIONS_SUM_INSTRUCTION_ID_DESC', + AssetTransactionsSumInstructionMemoAsc = 'ASSET_TRANSACTIONS_SUM_INSTRUCTION_MEMO_ASC', + AssetTransactionsSumInstructionMemoDesc = 'ASSET_TRANSACTIONS_SUM_INSTRUCTION_MEMO_DESC', + AssetTransactionsSumNftIdsAsc = 'ASSET_TRANSACTIONS_SUM_NFT_IDS_ASC', + AssetTransactionsSumNftIdsDesc = 'ASSET_TRANSACTIONS_SUM_NFT_IDS_DESC', + AssetTransactionsSumToPortfolioIdAsc = 'ASSET_TRANSACTIONS_SUM_TO_PORTFOLIO_ID_ASC', + AssetTransactionsSumToPortfolioIdDesc = 'ASSET_TRANSACTIONS_SUM_TO_PORTFOLIO_ID_DESC', + AssetTransactionsSumUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_SUM_UPDATED_BLOCK_ID_ASC', + AssetTransactionsSumUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_SUM_UPDATED_BLOCK_ID_DESC', + AssetTransactionsVariancePopulationAmountAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_AMOUNT_ASC', + AssetTransactionsVariancePopulationAmountDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_AMOUNT_DESC', + AssetTransactionsVariancePopulationAssetIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetTransactionsVariancePopulationAssetIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetTransactionsVariancePopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsVariancePopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsVariancePopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetTransactionsVariancePopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetTransactionsVariancePopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsVariancePopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsVariancePopulationDatetimeAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_DATETIME_ASC', + AssetTransactionsVariancePopulationDatetimeDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_DATETIME_DESC', + AssetTransactionsVariancePopulationEventIdxAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_IDX_ASC', + AssetTransactionsVariancePopulationEventIdxDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_IDX_DESC', + AssetTransactionsVariancePopulationEventIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_ID_ASC', + AssetTransactionsVariancePopulationEventIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_ID_DESC', + AssetTransactionsVariancePopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsVariancePopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsVariancePopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsVariancePopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsVariancePopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsVariancePopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsVariancePopulationIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_ID_ASC', + AssetTransactionsVariancePopulationIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_ID_DESC', + AssetTransactionsVariancePopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsVariancePopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsVariancePopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsVariancePopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsVariancePopulationNftIdsAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_NFT_IDS_ASC', + AssetTransactionsVariancePopulationNftIdsDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_NFT_IDS_DESC', + AssetTransactionsVariancePopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsVariancePopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsVariancePopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsVariancePopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsVarianceSampleAmountAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_AMOUNT_ASC', + AssetTransactionsVarianceSampleAmountDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_AMOUNT_DESC', + AssetTransactionsVarianceSampleAssetIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetTransactionsVarianceSampleAssetIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetTransactionsVarianceSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsVarianceSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsVarianceSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetTransactionsVarianceSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetTransactionsVarianceSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsVarianceSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsVarianceSampleDatetimeAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_DATETIME_ASC', + AssetTransactionsVarianceSampleDatetimeDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_DATETIME_DESC', + AssetTransactionsVarianceSampleEventIdxAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsVarianceSampleEventIdxDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsVarianceSampleEventIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_ID_ASC', + AssetTransactionsVarianceSampleEventIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_ID_DESC', + AssetTransactionsVarianceSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsVarianceSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsVarianceSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsVarianceSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsVarianceSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsVarianceSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsVarianceSampleIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ID_ASC', + AssetTransactionsVarianceSampleIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ID_DESC', + AssetTransactionsVarianceSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsVarianceSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsVarianceSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsVarianceSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsVarianceSampleNftIdsAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_NFT_IDS_ASC', + AssetTransactionsVarianceSampleNftIdsDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_NFT_IDS_DESC', + AssetTransactionsVarianceSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsVarianceSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsVarianceSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsVarianceSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimScopesAverageAssetIdAsc = 'CLAIM_SCOPES_AVERAGE_ASSET_ID_ASC', + ClaimScopesAverageAssetIdDesc = 'CLAIM_SCOPES_AVERAGE_ASSET_ID_DESC', + ClaimScopesAverageBlockRangeAsc = 'CLAIM_SCOPES_AVERAGE_BLOCK_RANGE_ASC', + ClaimScopesAverageBlockRangeDesc = 'CLAIM_SCOPES_AVERAGE_BLOCK_RANGE_DESC', + ClaimScopesAverageCreatedAtAsc = 'CLAIM_SCOPES_AVERAGE_CREATED_AT_ASC', + ClaimScopesAverageCreatedAtDesc = 'CLAIM_SCOPES_AVERAGE_CREATED_AT_DESC', + ClaimScopesAverageCreatedBlockIdAsc = 'CLAIM_SCOPES_AVERAGE_CREATED_BLOCK_ID_ASC', + ClaimScopesAverageCreatedBlockIdDesc = 'CLAIM_SCOPES_AVERAGE_CREATED_BLOCK_ID_DESC', + ClaimScopesAverageIdAsc = 'CLAIM_SCOPES_AVERAGE_ID_ASC', + ClaimScopesAverageIdDesc = 'CLAIM_SCOPES_AVERAGE_ID_DESC', + ClaimScopesAverageScopeAsc = 'CLAIM_SCOPES_AVERAGE_SCOPE_ASC', + ClaimScopesAverageScopeDesc = 'CLAIM_SCOPES_AVERAGE_SCOPE_DESC', + ClaimScopesAverageTargetAsc = 'CLAIM_SCOPES_AVERAGE_TARGET_ASC', + ClaimScopesAverageTargetDesc = 'CLAIM_SCOPES_AVERAGE_TARGET_DESC', + ClaimScopesAverageUpdatedBlockIdAsc = 'CLAIM_SCOPES_AVERAGE_UPDATED_BLOCK_ID_ASC', + ClaimScopesAverageUpdatedBlockIdDesc = 'CLAIM_SCOPES_AVERAGE_UPDATED_BLOCK_ID_DESC', + ClaimScopesCountAsc = 'CLAIM_SCOPES_COUNT_ASC', + ClaimScopesCountDesc = 'CLAIM_SCOPES_COUNT_DESC', + ClaimScopesDistinctCountAssetIdAsc = 'CLAIM_SCOPES_DISTINCT_COUNT_ASSET_ID_ASC', + ClaimScopesDistinctCountAssetIdDesc = 'CLAIM_SCOPES_DISTINCT_COUNT_ASSET_ID_DESC', + ClaimScopesDistinctCountBlockRangeAsc = 'CLAIM_SCOPES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ClaimScopesDistinctCountBlockRangeDesc = 'CLAIM_SCOPES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ClaimScopesDistinctCountCreatedAtAsc = 'CLAIM_SCOPES_DISTINCT_COUNT_CREATED_AT_ASC', + ClaimScopesDistinctCountCreatedAtDesc = 'CLAIM_SCOPES_DISTINCT_COUNT_CREATED_AT_DESC', + ClaimScopesDistinctCountCreatedBlockIdAsc = 'CLAIM_SCOPES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ClaimScopesDistinctCountCreatedBlockIdDesc = 'CLAIM_SCOPES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ClaimScopesDistinctCountIdAsc = 'CLAIM_SCOPES_DISTINCT_COUNT_ID_ASC', + ClaimScopesDistinctCountIdDesc = 'CLAIM_SCOPES_DISTINCT_COUNT_ID_DESC', + ClaimScopesDistinctCountScopeAsc = 'CLAIM_SCOPES_DISTINCT_COUNT_SCOPE_ASC', + ClaimScopesDistinctCountScopeDesc = 'CLAIM_SCOPES_DISTINCT_COUNT_SCOPE_DESC', + ClaimScopesDistinctCountTargetAsc = 'CLAIM_SCOPES_DISTINCT_COUNT_TARGET_ASC', + ClaimScopesDistinctCountTargetDesc = 'CLAIM_SCOPES_DISTINCT_COUNT_TARGET_DESC', + ClaimScopesDistinctCountUpdatedBlockIdAsc = 'CLAIM_SCOPES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ClaimScopesDistinctCountUpdatedBlockIdDesc = 'CLAIM_SCOPES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ClaimScopesMaxAssetIdAsc = 'CLAIM_SCOPES_MAX_ASSET_ID_ASC', + ClaimScopesMaxAssetIdDesc = 'CLAIM_SCOPES_MAX_ASSET_ID_DESC', + ClaimScopesMaxBlockRangeAsc = 'CLAIM_SCOPES_MAX_BLOCK_RANGE_ASC', + ClaimScopesMaxBlockRangeDesc = 'CLAIM_SCOPES_MAX_BLOCK_RANGE_DESC', + ClaimScopesMaxCreatedAtAsc = 'CLAIM_SCOPES_MAX_CREATED_AT_ASC', + ClaimScopesMaxCreatedAtDesc = 'CLAIM_SCOPES_MAX_CREATED_AT_DESC', + ClaimScopesMaxCreatedBlockIdAsc = 'CLAIM_SCOPES_MAX_CREATED_BLOCK_ID_ASC', + ClaimScopesMaxCreatedBlockIdDesc = 'CLAIM_SCOPES_MAX_CREATED_BLOCK_ID_DESC', + ClaimScopesMaxIdAsc = 'CLAIM_SCOPES_MAX_ID_ASC', + ClaimScopesMaxIdDesc = 'CLAIM_SCOPES_MAX_ID_DESC', + ClaimScopesMaxScopeAsc = 'CLAIM_SCOPES_MAX_SCOPE_ASC', + ClaimScopesMaxScopeDesc = 'CLAIM_SCOPES_MAX_SCOPE_DESC', + ClaimScopesMaxTargetAsc = 'CLAIM_SCOPES_MAX_TARGET_ASC', + ClaimScopesMaxTargetDesc = 'CLAIM_SCOPES_MAX_TARGET_DESC', + ClaimScopesMaxUpdatedBlockIdAsc = 'CLAIM_SCOPES_MAX_UPDATED_BLOCK_ID_ASC', + ClaimScopesMaxUpdatedBlockIdDesc = 'CLAIM_SCOPES_MAX_UPDATED_BLOCK_ID_DESC', + ClaimScopesMinAssetIdAsc = 'CLAIM_SCOPES_MIN_ASSET_ID_ASC', + ClaimScopesMinAssetIdDesc = 'CLAIM_SCOPES_MIN_ASSET_ID_DESC', + ClaimScopesMinBlockRangeAsc = 'CLAIM_SCOPES_MIN_BLOCK_RANGE_ASC', + ClaimScopesMinBlockRangeDesc = 'CLAIM_SCOPES_MIN_BLOCK_RANGE_DESC', + ClaimScopesMinCreatedAtAsc = 'CLAIM_SCOPES_MIN_CREATED_AT_ASC', + ClaimScopesMinCreatedAtDesc = 'CLAIM_SCOPES_MIN_CREATED_AT_DESC', + ClaimScopesMinCreatedBlockIdAsc = 'CLAIM_SCOPES_MIN_CREATED_BLOCK_ID_ASC', + ClaimScopesMinCreatedBlockIdDesc = 'CLAIM_SCOPES_MIN_CREATED_BLOCK_ID_DESC', + ClaimScopesMinIdAsc = 'CLAIM_SCOPES_MIN_ID_ASC', + ClaimScopesMinIdDesc = 'CLAIM_SCOPES_MIN_ID_DESC', + ClaimScopesMinScopeAsc = 'CLAIM_SCOPES_MIN_SCOPE_ASC', + ClaimScopesMinScopeDesc = 'CLAIM_SCOPES_MIN_SCOPE_DESC', + ClaimScopesMinTargetAsc = 'CLAIM_SCOPES_MIN_TARGET_ASC', + ClaimScopesMinTargetDesc = 'CLAIM_SCOPES_MIN_TARGET_DESC', + ClaimScopesMinUpdatedBlockIdAsc = 'CLAIM_SCOPES_MIN_UPDATED_BLOCK_ID_ASC', + ClaimScopesMinUpdatedBlockIdDesc = 'CLAIM_SCOPES_MIN_UPDATED_BLOCK_ID_DESC', + ClaimScopesStddevPopulationAssetIdAsc = 'CLAIM_SCOPES_STDDEV_POPULATION_ASSET_ID_ASC', + ClaimScopesStddevPopulationAssetIdDesc = 'CLAIM_SCOPES_STDDEV_POPULATION_ASSET_ID_DESC', + ClaimScopesStddevPopulationBlockRangeAsc = 'CLAIM_SCOPES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ClaimScopesStddevPopulationBlockRangeDesc = 'CLAIM_SCOPES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ClaimScopesStddevPopulationCreatedAtAsc = 'CLAIM_SCOPES_STDDEV_POPULATION_CREATED_AT_ASC', + ClaimScopesStddevPopulationCreatedAtDesc = 'CLAIM_SCOPES_STDDEV_POPULATION_CREATED_AT_DESC', + ClaimScopesStddevPopulationCreatedBlockIdAsc = 'CLAIM_SCOPES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimScopesStddevPopulationCreatedBlockIdDesc = 'CLAIM_SCOPES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimScopesStddevPopulationIdAsc = 'CLAIM_SCOPES_STDDEV_POPULATION_ID_ASC', + ClaimScopesStddevPopulationIdDesc = 'CLAIM_SCOPES_STDDEV_POPULATION_ID_DESC', + ClaimScopesStddevPopulationScopeAsc = 'CLAIM_SCOPES_STDDEV_POPULATION_SCOPE_ASC', + ClaimScopesStddevPopulationScopeDesc = 'CLAIM_SCOPES_STDDEV_POPULATION_SCOPE_DESC', + ClaimScopesStddevPopulationTargetAsc = 'CLAIM_SCOPES_STDDEV_POPULATION_TARGET_ASC', + ClaimScopesStddevPopulationTargetDesc = 'CLAIM_SCOPES_STDDEV_POPULATION_TARGET_DESC', + ClaimScopesStddevPopulationUpdatedBlockIdAsc = 'CLAIM_SCOPES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimScopesStddevPopulationUpdatedBlockIdDesc = 'CLAIM_SCOPES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimScopesStddevSampleAssetIdAsc = 'CLAIM_SCOPES_STDDEV_SAMPLE_ASSET_ID_ASC', + ClaimScopesStddevSampleAssetIdDesc = 'CLAIM_SCOPES_STDDEV_SAMPLE_ASSET_ID_DESC', + ClaimScopesStddevSampleBlockRangeAsc = 'CLAIM_SCOPES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ClaimScopesStddevSampleBlockRangeDesc = 'CLAIM_SCOPES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ClaimScopesStddevSampleCreatedAtAsc = 'CLAIM_SCOPES_STDDEV_SAMPLE_CREATED_AT_ASC', + ClaimScopesStddevSampleCreatedAtDesc = 'CLAIM_SCOPES_STDDEV_SAMPLE_CREATED_AT_DESC', + ClaimScopesStddevSampleCreatedBlockIdAsc = 'CLAIM_SCOPES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimScopesStddevSampleCreatedBlockIdDesc = 'CLAIM_SCOPES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimScopesStddevSampleIdAsc = 'CLAIM_SCOPES_STDDEV_SAMPLE_ID_ASC', + ClaimScopesStddevSampleIdDesc = 'CLAIM_SCOPES_STDDEV_SAMPLE_ID_DESC', + ClaimScopesStddevSampleScopeAsc = 'CLAIM_SCOPES_STDDEV_SAMPLE_SCOPE_ASC', + ClaimScopesStddevSampleScopeDesc = 'CLAIM_SCOPES_STDDEV_SAMPLE_SCOPE_DESC', + ClaimScopesStddevSampleTargetAsc = 'CLAIM_SCOPES_STDDEV_SAMPLE_TARGET_ASC', + ClaimScopesStddevSampleTargetDesc = 'CLAIM_SCOPES_STDDEV_SAMPLE_TARGET_DESC', + ClaimScopesStddevSampleUpdatedBlockIdAsc = 'CLAIM_SCOPES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimScopesStddevSampleUpdatedBlockIdDesc = 'CLAIM_SCOPES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimScopesSumAssetIdAsc = 'CLAIM_SCOPES_SUM_ASSET_ID_ASC', + ClaimScopesSumAssetIdDesc = 'CLAIM_SCOPES_SUM_ASSET_ID_DESC', + ClaimScopesSumBlockRangeAsc = 'CLAIM_SCOPES_SUM_BLOCK_RANGE_ASC', + ClaimScopesSumBlockRangeDesc = 'CLAIM_SCOPES_SUM_BLOCK_RANGE_DESC', + ClaimScopesSumCreatedAtAsc = 'CLAIM_SCOPES_SUM_CREATED_AT_ASC', + ClaimScopesSumCreatedAtDesc = 'CLAIM_SCOPES_SUM_CREATED_AT_DESC', + ClaimScopesSumCreatedBlockIdAsc = 'CLAIM_SCOPES_SUM_CREATED_BLOCK_ID_ASC', + ClaimScopesSumCreatedBlockIdDesc = 'CLAIM_SCOPES_SUM_CREATED_BLOCK_ID_DESC', + ClaimScopesSumIdAsc = 'CLAIM_SCOPES_SUM_ID_ASC', + ClaimScopesSumIdDesc = 'CLAIM_SCOPES_SUM_ID_DESC', + ClaimScopesSumScopeAsc = 'CLAIM_SCOPES_SUM_SCOPE_ASC', + ClaimScopesSumScopeDesc = 'CLAIM_SCOPES_SUM_SCOPE_DESC', + ClaimScopesSumTargetAsc = 'CLAIM_SCOPES_SUM_TARGET_ASC', + ClaimScopesSumTargetDesc = 'CLAIM_SCOPES_SUM_TARGET_DESC', + ClaimScopesSumUpdatedBlockIdAsc = 'CLAIM_SCOPES_SUM_UPDATED_BLOCK_ID_ASC', + ClaimScopesSumUpdatedBlockIdDesc = 'CLAIM_SCOPES_SUM_UPDATED_BLOCK_ID_DESC', + ClaimScopesVariancePopulationAssetIdAsc = 'CLAIM_SCOPES_VARIANCE_POPULATION_ASSET_ID_ASC', + ClaimScopesVariancePopulationAssetIdDesc = 'CLAIM_SCOPES_VARIANCE_POPULATION_ASSET_ID_DESC', + ClaimScopesVariancePopulationBlockRangeAsc = 'CLAIM_SCOPES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ClaimScopesVariancePopulationBlockRangeDesc = 'CLAIM_SCOPES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ClaimScopesVariancePopulationCreatedAtAsc = 'CLAIM_SCOPES_VARIANCE_POPULATION_CREATED_AT_ASC', + ClaimScopesVariancePopulationCreatedAtDesc = 'CLAIM_SCOPES_VARIANCE_POPULATION_CREATED_AT_DESC', + ClaimScopesVariancePopulationCreatedBlockIdAsc = 'CLAIM_SCOPES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimScopesVariancePopulationCreatedBlockIdDesc = 'CLAIM_SCOPES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimScopesVariancePopulationIdAsc = 'CLAIM_SCOPES_VARIANCE_POPULATION_ID_ASC', + ClaimScopesVariancePopulationIdDesc = 'CLAIM_SCOPES_VARIANCE_POPULATION_ID_DESC', + ClaimScopesVariancePopulationScopeAsc = 'CLAIM_SCOPES_VARIANCE_POPULATION_SCOPE_ASC', + ClaimScopesVariancePopulationScopeDesc = 'CLAIM_SCOPES_VARIANCE_POPULATION_SCOPE_DESC', + ClaimScopesVariancePopulationTargetAsc = 'CLAIM_SCOPES_VARIANCE_POPULATION_TARGET_ASC', + ClaimScopesVariancePopulationTargetDesc = 'CLAIM_SCOPES_VARIANCE_POPULATION_TARGET_DESC', + ClaimScopesVariancePopulationUpdatedBlockIdAsc = 'CLAIM_SCOPES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimScopesVariancePopulationUpdatedBlockIdDesc = 'CLAIM_SCOPES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimScopesVarianceSampleAssetIdAsc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_ASSET_ID_ASC', + ClaimScopesVarianceSampleAssetIdDesc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_ASSET_ID_DESC', + ClaimScopesVarianceSampleBlockRangeAsc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ClaimScopesVarianceSampleBlockRangeDesc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ClaimScopesVarianceSampleCreatedAtAsc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_CREATED_AT_ASC', + ClaimScopesVarianceSampleCreatedAtDesc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_CREATED_AT_DESC', + ClaimScopesVarianceSampleCreatedBlockIdAsc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimScopesVarianceSampleCreatedBlockIdDesc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimScopesVarianceSampleIdAsc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_ID_ASC', + ClaimScopesVarianceSampleIdDesc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_ID_DESC', + ClaimScopesVarianceSampleScopeAsc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_SCOPE_ASC', + ClaimScopesVarianceSampleScopeDesc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_SCOPE_DESC', + ClaimScopesVarianceSampleTargetAsc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_TARGET_ASC', + ClaimScopesVarianceSampleTargetDesc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_TARGET_DESC', + ClaimScopesVarianceSampleUpdatedBlockIdAsc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimScopesVarianceSampleUpdatedBlockIdDesc = 'CLAIM_SCOPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ComplianceAverageAssetIdAsc = 'COMPLIANCE_AVERAGE_ASSET_ID_ASC', + ComplianceAverageAssetIdDesc = 'COMPLIANCE_AVERAGE_ASSET_ID_DESC', + ComplianceAverageBlockRangeAsc = 'COMPLIANCE_AVERAGE_BLOCK_RANGE_ASC', + ComplianceAverageBlockRangeDesc = 'COMPLIANCE_AVERAGE_BLOCK_RANGE_DESC', + ComplianceAverageComplianceIdAsc = 'COMPLIANCE_AVERAGE_COMPLIANCE_ID_ASC', + ComplianceAverageComplianceIdDesc = 'COMPLIANCE_AVERAGE_COMPLIANCE_ID_DESC', + ComplianceAverageCreatedAtAsc = 'COMPLIANCE_AVERAGE_CREATED_AT_ASC', + ComplianceAverageCreatedAtDesc = 'COMPLIANCE_AVERAGE_CREATED_AT_DESC', + ComplianceAverageCreatedBlockIdAsc = 'COMPLIANCE_AVERAGE_CREATED_BLOCK_ID_ASC', + ComplianceAverageCreatedBlockIdDesc = 'COMPLIANCE_AVERAGE_CREATED_BLOCK_ID_DESC', + ComplianceAverageDataAsc = 'COMPLIANCE_AVERAGE_DATA_ASC', + ComplianceAverageDataDesc = 'COMPLIANCE_AVERAGE_DATA_DESC', + ComplianceAverageIdAsc = 'COMPLIANCE_AVERAGE_ID_ASC', + ComplianceAverageIdDesc = 'COMPLIANCE_AVERAGE_ID_DESC', + ComplianceAverageUpdatedBlockIdAsc = 'COMPLIANCE_AVERAGE_UPDATED_BLOCK_ID_ASC', + ComplianceAverageUpdatedBlockIdDesc = 'COMPLIANCE_AVERAGE_UPDATED_BLOCK_ID_DESC', + ComplianceCountAsc = 'COMPLIANCE_COUNT_ASC', + ComplianceCountDesc = 'COMPLIANCE_COUNT_DESC', + ComplianceDistinctCountAssetIdAsc = 'COMPLIANCE_DISTINCT_COUNT_ASSET_ID_ASC', + ComplianceDistinctCountAssetIdDesc = 'COMPLIANCE_DISTINCT_COUNT_ASSET_ID_DESC', + ComplianceDistinctCountBlockRangeAsc = 'COMPLIANCE_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ComplianceDistinctCountBlockRangeDesc = 'COMPLIANCE_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ComplianceDistinctCountComplianceIdAsc = 'COMPLIANCE_DISTINCT_COUNT_COMPLIANCE_ID_ASC', + ComplianceDistinctCountComplianceIdDesc = 'COMPLIANCE_DISTINCT_COUNT_COMPLIANCE_ID_DESC', + ComplianceDistinctCountCreatedAtAsc = 'COMPLIANCE_DISTINCT_COUNT_CREATED_AT_ASC', + ComplianceDistinctCountCreatedAtDesc = 'COMPLIANCE_DISTINCT_COUNT_CREATED_AT_DESC', + ComplianceDistinctCountCreatedBlockIdAsc = 'COMPLIANCE_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ComplianceDistinctCountCreatedBlockIdDesc = 'COMPLIANCE_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ComplianceDistinctCountDataAsc = 'COMPLIANCE_DISTINCT_COUNT_DATA_ASC', + ComplianceDistinctCountDataDesc = 'COMPLIANCE_DISTINCT_COUNT_DATA_DESC', + ComplianceDistinctCountIdAsc = 'COMPLIANCE_DISTINCT_COUNT_ID_ASC', + ComplianceDistinctCountIdDesc = 'COMPLIANCE_DISTINCT_COUNT_ID_DESC', + ComplianceDistinctCountUpdatedBlockIdAsc = 'COMPLIANCE_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ComplianceDistinctCountUpdatedBlockIdDesc = 'COMPLIANCE_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ComplianceMaxAssetIdAsc = 'COMPLIANCE_MAX_ASSET_ID_ASC', + ComplianceMaxAssetIdDesc = 'COMPLIANCE_MAX_ASSET_ID_DESC', + ComplianceMaxBlockRangeAsc = 'COMPLIANCE_MAX_BLOCK_RANGE_ASC', + ComplianceMaxBlockRangeDesc = 'COMPLIANCE_MAX_BLOCK_RANGE_DESC', + ComplianceMaxComplianceIdAsc = 'COMPLIANCE_MAX_COMPLIANCE_ID_ASC', + ComplianceMaxComplianceIdDesc = 'COMPLIANCE_MAX_COMPLIANCE_ID_DESC', + ComplianceMaxCreatedAtAsc = 'COMPLIANCE_MAX_CREATED_AT_ASC', + ComplianceMaxCreatedAtDesc = 'COMPLIANCE_MAX_CREATED_AT_DESC', + ComplianceMaxCreatedBlockIdAsc = 'COMPLIANCE_MAX_CREATED_BLOCK_ID_ASC', + ComplianceMaxCreatedBlockIdDesc = 'COMPLIANCE_MAX_CREATED_BLOCK_ID_DESC', + ComplianceMaxDataAsc = 'COMPLIANCE_MAX_DATA_ASC', + ComplianceMaxDataDesc = 'COMPLIANCE_MAX_DATA_DESC', + ComplianceMaxIdAsc = 'COMPLIANCE_MAX_ID_ASC', + ComplianceMaxIdDesc = 'COMPLIANCE_MAX_ID_DESC', + ComplianceMaxUpdatedBlockIdAsc = 'COMPLIANCE_MAX_UPDATED_BLOCK_ID_ASC', + ComplianceMaxUpdatedBlockIdDesc = 'COMPLIANCE_MAX_UPDATED_BLOCK_ID_DESC', + ComplianceMinAssetIdAsc = 'COMPLIANCE_MIN_ASSET_ID_ASC', + ComplianceMinAssetIdDesc = 'COMPLIANCE_MIN_ASSET_ID_DESC', + ComplianceMinBlockRangeAsc = 'COMPLIANCE_MIN_BLOCK_RANGE_ASC', + ComplianceMinBlockRangeDesc = 'COMPLIANCE_MIN_BLOCK_RANGE_DESC', + ComplianceMinComplianceIdAsc = 'COMPLIANCE_MIN_COMPLIANCE_ID_ASC', + ComplianceMinComplianceIdDesc = 'COMPLIANCE_MIN_COMPLIANCE_ID_DESC', + ComplianceMinCreatedAtAsc = 'COMPLIANCE_MIN_CREATED_AT_ASC', + ComplianceMinCreatedAtDesc = 'COMPLIANCE_MIN_CREATED_AT_DESC', + ComplianceMinCreatedBlockIdAsc = 'COMPLIANCE_MIN_CREATED_BLOCK_ID_ASC', + ComplianceMinCreatedBlockIdDesc = 'COMPLIANCE_MIN_CREATED_BLOCK_ID_DESC', + ComplianceMinDataAsc = 'COMPLIANCE_MIN_DATA_ASC', + ComplianceMinDataDesc = 'COMPLIANCE_MIN_DATA_DESC', + ComplianceMinIdAsc = 'COMPLIANCE_MIN_ID_ASC', + ComplianceMinIdDesc = 'COMPLIANCE_MIN_ID_DESC', + ComplianceMinUpdatedBlockIdAsc = 'COMPLIANCE_MIN_UPDATED_BLOCK_ID_ASC', + ComplianceMinUpdatedBlockIdDesc = 'COMPLIANCE_MIN_UPDATED_BLOCK_ID_DESC', + ComplianceStddevPopulationAssetIdAsc = 'COMPLIANCE_STDDEV_POPULATION_ASSET_ID_ASC', + ComplianceStddevPopulationAssetIdDesc = 'COMPLIANCE_STDDEV_POPULATION_ASSET_ID_DESC', + ComplianceStddevPopulationBlockRangeAsc = 'COMPLIANCE_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ComplianceStddevPopulationBlockRangeDesc = 'COMPLIANCE_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ComplianceStddevPopulationComplianceIdAsc = 'COMPLIANCE_STDDEV_POPULATION_COMPLIANCE_ID_ASC', + ComplianceStddevPopulationComplianceIdDesc = 'COMPLIANCE_STDDEV_POPULATION_COMPLIANCE_ID_DESC', + ComplianceStddevPopulationCreatedAtAsc = 'COMPLIANCE_STDDEV_POPULATION_CREATED_AT_ASC', + ComplianceStddevPopulationCreatedAtDesc = 'COMPLIANCE_STDDEV_POPULATION_CREATED_AT_DESC', + ComplianceStddevPopulationCreatedBlockIdAsc = 'COMPLIANCE_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ComplianceStddevPopulationCreatedBlockIdDesc = 'COMPLIANCE_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ComplianceStddevPopulationDataAsc = 'COMPLIANCE_STDDEV_POPULATION_DATA_ASC', + ComplianceStddevPopulationDataDesc = 'COMPLIANCE_STDDEV_POPULATION_DATA_DESC', + ComplianceStddevPopulationIdAsc = 'COMPLIANCE_STDDEV_POPULATION_ID_ASC', + ComplianceStddevPopulationIdDesc = 'COMPLIANCE_STDDEV_POPULATION_ID_DESC', + ComplianceStddevPopulationUpdatedBlockIdAsc = 'COMPLIANCE_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ComplianceStddevPopulationUpdatedBlockIdDesc = 'COMPLIANCE_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ComplianceStddevSampleAssetIdAsc = 'COMPLIANCE_STDDEV_SAMPLE_ASSET_ID_ASC', + ComplianceStddevSampleAssetIdDesc = 'COMPLIANCE_STDDEV_SAMPLE_ASSET_ID_DESC', + ComplianceStddevSampleBlockRangeAsc = 'COMPLIANCE_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ComplianceStddevSampleBlockRangeDesc = 'COMPLIANCE_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ComplianceStddevSampleComplianceIdAsc = 'COMPLIANCE_STDDEV_SAMPLE_COMPLIANCE_ID_ASC', + ComplianceStddevSampleComplianceIdDesc = 'COMPLIANCE_STDDEV_SAMPLE_COMPLIANCE_ID_DESC', + ComplianceStddevSampleCreatedAtAsc = 'COMPLIANCE_STDDEV_SAMPLE_CREATED_AT_ASC', + ComplianceStddevSampleCreatedAtDesc = 'COMPLIANCE_STDDEV_SAMPLE_CREATED_AT_DESC', + ComplianceStddevSampleCreatedBlockIdAsc = 'COMPLIANCE_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ComplianceStddevSampleCreatedBlockIdDesc = 'COMPLIANCE_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ComplianceStddevSampleDataAsc = 'COMPLIANCE_STDDEV_SAMPLE_DATA_ASC', + ComplianceStddevSampleDataDesc = 'COMPLIANCE_STDDEV_SAMPLE_DATA_DESC', + ComplianceStddevSampleIdAsc = 'COMPLIANCE_STDDEV_SAMPLE_ID_ASC', + ComplianceStddevSampleIdDesc = 'COMPLIANCE_STDDEV_SAMPLE_ID_DESC', + ComplianceStddevSampleUpdatedBlockIdAsc = 'COMPLIANCE_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ComplianceStddevSampleUpdatedBlockIdDesc = 'COMPLIANCE_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ComplianceSumAssetIdAsc = 'COMPLIANCE_SUM_ASSET_ID_ASC', + ComplianceSumAssetIdDesc = 'COMPLIANCE_SUM_ASSET_ID_DESC', + ComplianceSumBlockRangeAsc = 'COMPLIANCE_SUM_BLOCK_RANGE_ASC', + ComplianceSumBlockRangeDesc = 'COMPLIANCE_SUM_BLOCK_RANGE_DESC', + ComplianceSumComplianceIdAsc = 'COMPLIANCE_SUM_COMPLIANCE_ID_ASC', + ComplianceSumComplianceIdDesc = 'COMPLIANCE_SUM_COMPLIANCE_ID_DESC', + ComplianceSumCreatedAtAsc = 'COMPLIANCE_SUM_CREATED_AT_ASC', + ComplianceSumCreatedAtDesc = 'COMPLIANCE_SUM_CREATED_AT_DESC', + ComplianceSumCreatedBlockIdAsc = 'COMPLIANCE_SUM_CREATED_BLOCK_ID_ASC', + ComplianceSumCreatedBlockIdDesc = 'COMPLIANCE_SUM_CREATED_BLOCK_ID_DESC', + ComplianceSumDataAsc = 'COMPLIANCE_SUM_DATA_ASC', + ComplianceSumDataDesc = 'COMPLIANCE_SUM_DATA_DESC', + ComplianceSumIdAsc = 'COMPLIANCE_SUM_ID_ASC', + ComplianceSumIdDesc = 'COMPLIANCE_SUM_ID_DESC', + ComplianceSumUpdatedBlockIdAsc = 'COMPLIANCE_SUM_UPDATED_BLOCK_ID_ASC', + ComplianceSumUpdatedBlockIdDesc = 'COMPLIANCE_SUM_UPDATED_BLOCK_ID_DESC', + ComplianceVariancePopulationAssetIdAsc = 'COMPLIANCE_VARIANCE_POPULATION_ASSET_ID_ASC', + ComplianceVariancePopulationAssetIdDesc = 'COMPLIANCE_VARIANCE_POPULATION_ASSET_ID_DESC', + ComplianceVariancePopulationBlockRangeAsc = 'COMPLIANCE_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ComplianceVariancePopulationBlockRangeDesc = 'COMPLIANCE_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ComplianceVariancePopulationComplianceIdAsc = 'COMPLIANCE_VARIANCE_POPULATION_COMPLIANCE_ID_ASC', + ComplianceVariancePopulationComplianceIdDesc = 'COMPLIANCE_VARIANCE_POPULATION_COMPLIANCE_ID_DESC', + ComplianceVariancePopulationCreatedAtAsc = 'COMPLIANCE_VARIANCE_POPULATION_CREATED_AT_ASC', + ComplianceVariancePopulationCreatedAtDesc = 'COMPLIANCE_VARIANCE_POPULATION_CREATED_AT_DESC', + ComplianceVariancePopulationCreatedBlockIdAsc = 'COMPLIANCE_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ComplianceVariancePopulationCreatedBlockIdDesc = 'COMPLIANCE_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ComplianceVariancePopulationDataAsc = 'COMPLIANCE_VARIANCE_POPULATION_DATA_ASC', + ComplianceVariancePopulationDataDesc = 'COMPLIANCE_VARIANCE_POPULATION_DATA_DESC', + ComplianceVariancePopulationIdAsc = 'COMPLIANCE_VARIANCE_POPULATION_ID_ASC', + ComplianceVariancePopulationIdDesc = 'COMPLIANCE_VARIANCE_POPULATION_ID_DESC', + ComplianceVariancePopulationUpdatedBlockIdAsc = 'COMPLIANCE_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ComplianceVariancePopulationUpdatedBlockIdDesc = 'COMPLIANCE_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ComplianceVarianceSampleAssetIdAsc = 'COMPLIANCE_VARIANCE_SAMPLE_ASSET_ID_ASC', + ComplianceVarianceSampleAssetIdDesc = 'COMPLIANCE_VARIANCE_SAMPLE_ASSET_ID_DESC', + ComplianceVarianceSampleBlockRangeAsc = 'COMPLIANCE_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ComplianceVarianceSampleBlockRangeDesc = 'COMPLIANCE_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ComplianceVarianceSampleComplianceIdAsc = 'COMPLIANCE_VARIANCE_SAMPLE_COMPLIANCE_ID_ASC', + ComplianceVarianceSampleComplianceIdDesc = 'COMPLIANCE_VARIANCE_SAMPLE_COMPLIANCE_ID_DESC', + ComplianceVarianceSampleCreatedAtAsc = 'COMPLIANCE_VARIANCE_SAMPLE_CREATED_AT_ASC', + ComplianceVarianceSampleCreatedAtDesc = 'COMPLIANCE_VARIANCE_SAMPLE_CREATED_AT_DESC', + ComplianceVarianceSampleCreatedBlockIdAsc = 'COMPLIANCE_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ComplianceVarianceSampleCreatedBlockIdDesc = 'COMPLIANCE_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ComplianceVarianceSampleDataAsc = 'COMPLIANCE_VARIANCE_SAMPLE_DATA_ASC', + ComplianceVarianceSampleDataDesc = 'COMPLIANCE_VARIANCE_SAMPLE_DATA_DESC', + ComplianceVarianceSampleIdAsc = 'COMPLIANCE_VARIANCE_SAMPLE_ID_ASC', + ComplianceVarianceSampleIdDesc = 'COMPLIANCE_VARIANCE_SAMPLE_ID_DESC', + ComplianceVarianceSampleUpdatedBlockIdAsc = 'COMPLIANCE_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ComplianceVarianceSampleUpdatedBlockIdDesc = 'COMPLIANCE_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DistributionsAverageAmountAsc = 'DISTRIBUTIONS_AVERAGE_AMOUNT_ASC', + DistributionsAverageAmountDesc = 'DISTRIBUTIONS_AVERAGE_AMOUNT_DESC', + DistributionsAverageAssetIdAsc = 'DISTRIBUTIONS_AVERAGE_ASSET_ID_ASC', + DistributionsAverageAssetIdDesc = 'DISTRIBUTIONS_AVERAGE_ASSET_ID_DESC', + DistributionsAverageBlockRangeAsc = 'DISTRIBUTIONS_AVERAGE_BLOCK_RANGE_ASC', + DistributionsAverageBlockRangeDesc = 'DISTRIBUTIONS_AVERAGE_BLOCK_RANGE_DESC', + DistributionsAverageCreatedAtAsc = 'DISTRIBUTIONS_AVERAGE_CREATED_AT_ASC', + DistributionsAverageCreatedAtDesc = 'DISTRIBUTIONS_AVERAGE_CREATED_AT_DESC', + DistributionsAverageCreatedBlockIdAsc = 'DISTRIBUTIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + DistributionsAverageCreatedBlockIdDesc = 'DISTRIBUTIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + DistributionsAverageCurrencyAsc = 'DISTRIBUTIONS_AVERAGE_CURRENCY_ASC', + DistributionsAverageCurrencyDesc = 'DISTRIBUTIONS_AVERAGE_CURRENCY_DESC', + DistributionsAverageExpiresAtAsc = 'DISTRIBUTIONS_AVERAGE_EXPIRES_AT_ASC', + DistributionsAverageExpiresAtDesc = 'DISTRIBUTIONS_AVERAGE_EXPIRES_AT_DESC', + DistributionsAverageIdentityIdAsc = 'DISTRIBUTIONS_AVERAGE_IDENTITY_ID_ASC', + DistributionsAverageIdentityIdDesc = 'DISTRIBUTIONS_AVERAGE_IDENTITY_ID_DESC', + DistributionsAverageIdAsc = 'DISTRIBUTIONS_AVERAGE_ID_ASC', + DistributionsAverageIdDesc = 'DISTRIBUTIONS_AVERAGE_ID_DESC', + DistributionsAverageLocalIdAsc = 'DISTRIBUTIONS_AVERAGE_LOCAL_ID_ASC', + DistributionsAverageLocalIdDesc = 'DISTRIBUTIONS_AVERAGE_LOCAL_ID_DESC', + DistributionsAveragePaymentAtAsc = 'DISTRIBUTIONS_AVERAGE_PAYMENT_AT_ASC', + DistributionsAveragePaymentAtDesc = 'DISTRIBUTIONS_AVERAGE_PAYMENT_AT_DESC', + DistributionsAveragePerShareAsc = 'DISTRIBUTIONS_AVERAGE_PER_SHARE_ASC', + DistributionsAveragePerShareDesc = 'DISTRIBUTIONS_AVERAGE_PER_SHARE_DESC', + DistributionsAveragePortfolioIdAsc = 'DISTRIBUTIONS_AVERAGE_PORTFOLIO_ID_ASC', + DistributionsAveragePortfolioIdDesc = 'DISTRIBUTIONS_AVERAGE_PORTFOLIO_ID_DESC', + DistributionsAverageRemainingAsc = 'DISTRIBUTIONS_AVERAGE_REMAINING_ASC', + DistributionsAverageRemainingDesc = 'DISTRIBUTIONS_AVERAGE_REMAINING_DESC', + DistributionsAverageTaxesAsc = 'DISTRIBUTIONS_AVERAGE_TAXES_ASC', + DistributionsAverageTaxesDesc = 'DISTRIBUTIONS_AVERAGE_TAXES_DESC', + DistributionsAverageUpdatedBlockIdAsc = 'DISTRIBUTIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + DistributionsAverageUpdatedBlockIdDesc = 'DISTRIBUTIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + DistributionsCountAsc = 'DISTRIBUTIONS_COUNT_ASC', + DistributionsCountDesc = 'DISTRIBUTIONS_COUNT_DESC', + DistributionsDistinctCountAmountAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_AMOUNT_ASC', + DistributionsDistinctCountAmountDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_AMOUNT_DESC', + DistributionsDistinctCountAssetIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_ASSET_ID_ASC', + DistributionsDistinctCountAssetIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_ASSET_ID_DESC', + DistributionsDistinctCountBlockRangeAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + DistributionsDistinctCountBlockRangeDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + DistributionsDistinctCountCreatedAtAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_AT_ASC', + DistributionsDistinctCountCreatedAtDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_AT_DESC', + DistributionsDistinctCountCreatedBlockIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + DistributionsDistinctCountCreatedBlockIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + DistributionsDistinctCountCurrencyAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_CURRENCY_ASC', + DistributionsDistinctCountCurrencyDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_CURRENCY_DESC', + DistributionsDistinctCountExpiresAtAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_EXPIRES_AT_ASC', + DistributionsDistinctCountExpiresAtDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_EXPIRES_AT_DESC', + DistributionsDistinctCountIdentityIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_IDENTITY_ID_ASC', + DistributionsDistinctCountIdentityIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_IDENTITY_ID_DESC', + DistributionsDistinctCountIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_ID_ASC', + DistributionsDistinctCountIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_ID_DESC', + DistributionsDistinctCountLocalIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_LOCAL_ID_ASC', + DistributionsDistinctCountLocalIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_LOCAL_ID_DESC', + DistributionsDistinctCountPaymentAtAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_PAYMENT_AT_ASC', + DistributionsDistinctCountPaymentAtDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_PAYMENT_AT_DESC', + DistributionsDistinctCountPerShareAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_PER_SHARE_ASC', + DistributionsDistinctCountPerShareDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_PER_SHARE_DESC', + DistributionsDistinctCountPortfolioIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_PORTFOLIO_ID_ASC', + DistributionsDistinctCountPortfolioIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_PORTFOLIO_ID_DESC', + DistributionsDistinctCountRemainingAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_REMAINING_ASC', + DistributionsDistinctCountRemainingDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_REMAINING_DESC', + DistributionsDistinctCountTaxesAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_TAXES_ASC', + DistributionsDistinctCountTaxesDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_TAXES_DESC', + DistributionsDistinctCountUpdatedBlockIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + DistributionsDistinctCountUpdatedBlockIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + DistributionsMaxAmountAsc = 'DISTRIBUTIONS_MAX_AMOUNT_ASC', + DistributionsMaxAmountDesc = 'DISTRIBUTIONS_MAX_AMOUNT_DESC', + DistributionsMaxAssetIdAsc = 'DISTRIBUTIONS_MAX_ASSET_ID_ASC', + DistributionsMaxAssetIdDesc = 'DISTRIBUTIONS_MAX_ASSET_ID_DESC', + DistributionsMaxBlockRangeAsc = 'DISTRIBUTIONS_MAX_BLOCK_RANGE_ASC', + DistributionsMaxBlockRangeDesc = 'DISTRIBUTIONS_MAX_BLOCK_RANGE_DESC', + DistributionsMaxCreatedAtAsc = 'DISTRIBUTIONS_MAX_CREATED_AT_ASC', + DistributionsMaxCreatedAtDesc = 'DISTRIBUTIONS_MAX_CREATED_AT_DESC', + DistributionsMaxCreatedBlockIdAsc = 'DISTRIBUTIONS_MAX_CREATED_BLOCK_ID_ASC', + DistributionsMaxCreatedBlockIdDesc = 'DISTRIBUTIONS_MAX_CREATED_BLOCK_ID_DESC', + DistributionsMaxCurrencyAsc = 'DISTRIBUTIONS_MAX_CURRENCY_ASC', + DistributionsMaxCurrencyDesc = 'DISTRIBUTIONS_MAX_CURRENCY_DESC', + DistributionsMaxExpiresAtAsc = 'DISTRIBUTIONS_MAX_EXPIRES_AT_ASC', + DistributionsMaxExpiresAtDesc = 'DISTRIBUTIONS_MAX_EXPIRES_AT_DESC', + DistributionsMaxIdentityIdAsc = 'DISTRIBUTIONS_MAX_IDENTITY_ID_ASC', + DistributionsMaxIdentityIdDesc = 'DISTRIBUTIONS_MAX_IDENTITY_ID_DESC', + DistributionsMaxIdAsc = 'DISTRIBUTIONS_MAX_ID_ASC', + DistributionsMaxIdDesc = 'DISTRIBUTIONS_MAX_ID_DESC', + DistributionsMaxLocalIdAsc = 'DISTRIBUTIONS_MAX_LOCAL_ID_ASC', + DistributionsMaxLocalIdDesc = 'DISTRIBUTIONS_MAX_LOCAL_ID_DESC', + DistributionsMaxPaymentAtAsc = 'DISTRIBUTIONS_MAX_PAYMENT_AT_ASC', + DistributionsMaxPaymentAtDesc = 'DISTRIBUTIONS_MAX_PAYMENT_AT_DESC', + DistributionsMaxPerShareAsc = 'DISTRIBUTIONS_MAX_PER_SHARE_ASC', + DistributionsMaxPerShareDesc = 'DISTRIBUTIONS_MAX_PER_SHARE_DESC', + DistributionsMaxPortfolioIdAsc = 'DISTRIBUTIONS_MAX_PORTFOLIO_ID_ASC', + DistributionsMaxPortfolioIdDesc = 'DISTRIBUTIONS_MAX_PORTFOLIO_ID_DESC', + DistributionsMaxRemainingAsc = 'DISTRIBUTIONS_MAX_REMAINING_ASC', + DistributionsMaxRemainingDesc = 'DISTRIBUTIONS_MAX_REMAINING_DESC', + DistributionsMaxTaxesAsc = 'DISTRIBUTIONS_MAX_TAXES_ASC', + DistributionsMaxTaxesDesc = 'DISTRIBUTIONS_MAX_TAXES_DESC', + DistributionsMaxUpdatedBlockIdAsc = 'DISTRIBUTIONS_MAX_UPDATED_BLOCK_ID_ASC', + DistributionsMaxUpdatedBlockIdDesc = 'DISTRIBUTIONS_MAX_UPDATED_BLOCK_ID_DESC', + DistributionsMinAmountAsc = 'DISTRIBUTIONS_MIN_AMOUNT_ASC', + DistributionsMinAmountDesc = 'DISTRIBUTIONS_MIN_AMOUNT_DESC', + DistributionsMinAssetIdAsc = 'DISTRIBUTIONS_MIN_ASSET_ID_ASC', + DistributionsMinAssetIdDesc = 'DISTRIBUTIONS_MIN_ASSET_ID_DESC', + DistributionsMinBlockRangeAsc = 'DISTRIBUTIONS_MIN_BLOCK_RANGE_ASC', + DistributionsMinBlockRangeDesc = 'DISTRIBUTIONS_MIN_BLOCK_RANGE_DESC', + DistributionsMinCreatedAtAsc = 'DISTRIBUTIONS_MIN_CREATED_AT_ASC', + DistributionsMinCreatedAtDesc = 'DISTRIBUTIONS_MIN_CREATED_AT_DESC', + DistributionsMinCreatedBlockIdAsc = 'DISTRIBUTIONS_MIN_CREATED_BLOCK_ID_ASC', + DistributionsMinCreatedBlockIdDesc = 'DISTRIBUTIONS_MIN_CREATED_BLOCK_ID_DESC', + DistributionsMinCurrencyAsc = 'DISTRIBUTIONS_MIN_CURRENCY_ASC', + DistributionsMinCurrencyDesc = 'DISTRIBUTIONS_MIN_CURRENCY_DESC', + DistributionsMinExpiresAtAsc = 'DISTRIBUTIONS_MIN_EXPIRES_AT_ASC', + DistributionsMinExpiresAtDesc = 'DISTRIBUTIONS_MIN_EXPIRES_AT_DESC', + DistributionsMinIdentityIdAsc = 'DISTRIBUTIONS_MIN_IDENTITY_ID_ASC', + DistributionsMinIdentityIdDesc = 'DISTRIBUTIONS_MIN_IDENTITY_ID_DESC', + DistributionsMinIdAsc = 'DISTRIBUTIONS_MIN_ID_ASC', + DistributionsMinIdDesc = 'DISTRIBUTIONS_MIN_ID_DESC', + DistributionsMinLocalIdAsc = 'DISTRIBUTIONS_MIN_LOCAL_ID_ASC', + DistributionsMinLocalIdDesc = 'DISTRIBUTIONS_MIN_LOCAL_ID_DESC', + DistributionsMinPaymentAtAsc = 'DISTRIBUTIONS_MIN_PAYMENT_AT_ASC', + DistributionsMinPaymentAtDesc = 'DISTRIBUTIONS_MIN_PAYMENT_AT_DESC', + DistributionsMinPerShareAsc = 'DISTRIBUTIONS_MIN_PER_SHARE_ASC', + DistributionsMinPerShareDesc = 'DISTRIBUTIONS_MIN_PER_SHARE_DESC', + DistributionsMinPortfolioIdAsc = 'DISTRIBUTIONS_MIN_PORTFOLIO_ID_ASC', + DistributionsMinPortfolioIdDesc = 'DISTRIBUTIONS_MIN_PORTFOLIO_ID_DESC', + DistributionsMinRemainingAsc = 'DISTRIBUTIONS_MIN_REMAINING_ASC', + DistributionsMinRemainingDesc = 'DISTRIBUTIONS_MIN_REMAINING_DESC', + DistributionsMinTaxesAsc = 'DISTRIBUTIONS_MIN_TAXES_ASC', + DistributionsMinTaxesDesc = 'DISTRIBUTIONS_MIN_TAXES_DESC', + DistributionsMinUpdatedBlockIdAsc = 'DISTRIBUTIONS_MIN_UPDATED_BLOCK_ID_ASC', + DistributionsMinUpdatedBlockIdDesc = 'DISTRIBUTIONS_MIN_UPDATED_BLOCK_ID_DESC', + DistributionsStddevPopulationAmountAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_AMOUNT_ASC', + DistributionsStddevPopulationAmountDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_AMOUNT_DESC', + DistributionsStddevPopulationAssetIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_ASSET_ID_ASC', + DistributionsStddevPopulationAssetIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_ASSET_ID_DESC', + DistributionsStddevPopulationBlockRangeAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + DistributionsStddevPopulationBlockRangeDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + DistributionsStddevPopulationCreatedAtAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_AT_ASC', + DistributionsStddevPopulationCreatedAtDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_AT_DESC', + DistributionsStddevPopulationCreatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionsStddevPopulationCreatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionsStddevPopulationCurrencyAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_CURRENCY_ASC', + DistributionsStddevPopulationCurrencyDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_CURRENCY_DESC', + DistributionsStddevPopulationExpiresAtAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_EXPIRES_AT_ASC', + DistributionsStddevPopulationExpiresAtDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_EXPIRES_AT_DESC', + DistributionsStddevPopulationIdentityIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_IDENTITY_ID_ASC', + DistributionsStddevPopulationIdentityIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_IDENTITY_ID_DESC', + DistributionsStddevPopulationIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_ID_ASC', + DistributionsStddevPopulationIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_ID_DESC', + DistributionsStddevPopulationLocalIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_LOCAL_ID_ASC', + DistributionsStddevPopulationLocalIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_LOCAL_ID_DESC', + DistributionsStddevPopulationPaymentAtAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_PAYMENT_AT_ASC', + DistributionsStddevPopulationPaymentAtDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_PAYMENT_AT_DESC', + DistributionsStddevPopulationPerShareAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_PER_SHARE_ASC', + DistributionsStddevPopulationPerShareDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_PER_SHARE_DESC', + DistributionsStddevPopulationPortfolioIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_PORTFOLIO_ID_ASC', + DistributionsStddevPopulationPortfolioIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_PORTFOLIO_ID_DESC', + DistributionsStddevPopulationRemainingAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_REMAINING_ASC', + DistributionsStddevPopulationRemainingDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_REMAINING_DESC', + DistributionsStddevPopulationTaxesAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_TAXES_ASC', + DistributionsStddevPopulationTaxesDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_TAXES_DESC', + DistributionsStddevPopulationUpdatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionsStddevPopulationUpdatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionsStddevSampleAmountAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_AMOUNT_ASC', + DistributionsStddevSampleAmountDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_AMOUNT_DESC', + DistributionsStddevSampleAssetIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ASSET_ID_ASC', + DistributionsStddevSampleAssetIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ASSET_ID_DESC', + DistributionsStddevSampleBlockRangeAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + DistributionsStddevSampleBlockRangeDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + DistributionsStddevSampleCreatedAtAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + DistributionsStddevSampleCreatedAtDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + DistributionsStddevSampleCreatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionsStddevSampleCreatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionsStddevSampleCurrencyAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CURRENCY_ASC', + DistributionsStddevSampleCurrencyDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CURRENCY_DESC', + DistributionsStddevSampleExpiresAtAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_EXPIRES_AT_ASC', + DistributionsStddevSampleExpiresAtDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_EXPIRES_AT_DESC', + DistributionsStddevSampleIdentityIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + DistributionsStddevSampleIdentityIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + DistributionsStddevSampleIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ID_ASC', + DistributionsStddevSampleIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ID_DESC', + DistributionsStddevSampleLocalIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_LOCAL_ID_ASC', + DistributionsStddevSampleLocalIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_LOCAL_ID_DESC', + DistributionsStddevSamplePaymentAtAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PAYMENT_AT_ASC', + DistributionsStddevSamplePaymentAtDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PAYMENT_AT_DESC', + DistributionsStddevSamplePerShareAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PER_SHARE_ASC', + DistributionsStddevSamplePerShareDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PER_SHARE_DESC', + DistributionsStddevSamplePortfolioIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PORTFOLIO_ID_ASC', + DistributionsStddevSamplePortfolioIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PORTFOLIO_ID_DESC', + DistributionsStddevSampleRemainingAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_REMAINING_ASC', + DistributionsStddevSampleRemainingDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_REMAINING_DESC', + DistributionsStddevSampleTaxesAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_TAXES_ASC', + DistributionsStddevSampleTaxesDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_TAXES_DESC', + DistributionsStddevSampleUpdatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionsStddevSampleUpdatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionsSumAmountAsc = 'DISTRIBUTIONS_SUM_AMOUNT_ASC', + DistributionsSumAmountDesc = 'DISTRIBUTIONS_SUM_AMOUNT_DESC', + DistributionsSumAssetIdAsc = 'DISTRIBUTIONS_SUM_ASSET_ID_ASC', + DistributionsSumAssetIdDesc = 'DISTRIBUTIONS_SUM_ASSET_ID_DESC', + DistributionsSumBlockRangeAsc = 'DISTRIBUTIONS_SUM_BLOCK_RANGE_ASC', + DistributionsSumBlockRangeDesc = 'DISTRIBUTIONS_SUM_BLOCK_RANGE_DESC', + DistributionsSumCreatedAtAsc = 'DISTRIBUTIONS_SUM_CREATED_AT_ASC', + DistributionsSumCreatedAtDesc = 'DISTRIBUTIONS_SUM_CREATED_AT_DESC', + DistributionsSumCreatedBlockIdAsc = 'DISTRIBUTIONS_SUM_CREATED_BLOCK_ID_ASC', + DistributionsSumCreatedBlockIdDesc = 'DISTRIBUTIONS_SUM_CREATED_BLOCK_ID_DESC', + DistributionsSumCurrencyAsc = 'DISTRIBUTIONS_SUM_CURRENCY_ASC', + DistributionsSumCurrencyDesc = 'DISTRIBUTIONS_SUM_CURRENCY_DESC', + DistributionsSumExpiresAtAsc = 'DISTRIBUTIONS_SUM_EXPIRES_AT_ASC', + DistributionsSumExpiresAtDesc = 'DISTRIBUTIONS_SUM_EXPIRES_AT_DESC', + DistributionsSumIdentityIdAsc = 'DISTRIBUTIONS_SUM_IDENTITY_ID_ASC', + DistributionsSumIdentityIdDesc = 'DISTRIBUTIONS_SUM_IDENTITY_ID_DESC', + DistributionsSumIdAsc = 'DISTRIBUTIONS_SUM_ID_ASC', + DistributionsSumIdDesc = 'DISTRIBUTIONS_SUM_ID_DESC', + DistributionsSumLocalIdAsc = 'DISTRIBUTIONS_SUM_LOCAL_ID_ASC', + DistributionsSumLocalIdDesc = 'DISTRIBUTIONS_SUM_LOCAL_ID_DESC', + DistributionsSumPaymentAtAsc = 'DISTRIBUTIONS_SUM_PAYMENT_AT_ASC', + DistributionsSumPaymentAtDesc = 'DISTRIBUTIONS_SUM_PAYMENT_AT_DESC', + DistributionsSumPerShareAsc = 'DISTRIBUTIONS_SUM_PER_SHARE_ASC', + DistributionsSumPerShareDesc = 'DISTRIBUTIONS_SUM_PER_SHARE_DESC', + DistributionsSumPortfolioIdAsc = 'DISTRIBUTIONS_SUM_PORTFOLIO_ID_ASC', + DistributionsSumPortfolioIdDesc = 'DISTRIBUTIONS_SUM_PORTFOLIO_ID_DESC', + DistributionsSumRemainingAsc = 'DISTRIBUTIONS_SUM_REMAINING_ASC', + DistributionsSumRemainingDesc = 'DISTRIBUTIONS_SUM_REMAINING_DESC', + DistributionsSumTaxesAsc = 'DISTRIBUTIONS_SUM_TAXES_ASC', + DistributionsSumTaxesDesc = 'DISTRIBUTIONS_SUM_TAXES_DESC', + DistributionsSumUpdatedBlockIdAsc = 'DISTRIBUTIONS_SUM_UPDATED_BLOCK_ID_ASC', + DistributionsSumUpdatedBlockIdDesc = 'DISTRIBUTIONS_SUM_UPDATED_BLOCK_ID_DESC', + DistributionsVariancePopulationAmountAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_AMOUNT_ASC', + DistributionsVariancePopulationAmountDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_AMOUNT_DESC', + DistributionsVariancePopulationAssetIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ASSET_ID_ASC', + DistributionsVariancePopulationAssetIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ASSET_ID_DESC', + DistributionsVariancePopulationBlockRangeAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + DistributionsVariancePopulationBlockRangeDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + DistributionsVariancePopulationCreatedAtAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + DistributionsVariancePopulationCreatedAtDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + DistributionsVariancePopulationCreatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionsVariancePopulationCreatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionsVariancePopulationCurrencyAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CURRENCY_ASC', + DistributionsVariancePopulationCurrencyDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CURRENCY_DESC', + DistributionsVariancePopulationExpiresAtAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_EXPIRES_AT_ASC', + DistributionsVariancePopulationExpiresAtDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_EXPIRES_AT_DESC', + DistributionsVariancePopulationIdentityIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + DistributionsVariancePopulationIdentityIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + DistributionsVariancePopulationIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ID_ASC', + DistributionsVariancePopulationIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ID_DESC', + DistributionsVariancePopulationLocalIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_LOCAL_ID_ASC', + DistributionsVariancePopulationLocalIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_LOCAL_ID_DESC', + DistributionsVariancePopulationPaymentAtAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PAYMENT_AT_ASC', + DistributionsVariancePopulationPaymentAtDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PAYMENT_AT_DESC', + DistributionsVariancePopulationPerShareAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PER_SHARE_ASC', + DistributionsVariancePopulationPerShareDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PER_SHARE_DESC', + DistributionsVariancePopulationPortfolioIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PORTFOLIO_ID_ASC', + DistributionsVariancePopulationPortfolioIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PORTFOLIO_ID_DESC', + DistributionsVariancePopulationRemainingAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_REMAINING_ASC', + DistributionsVariancePopulationRemainingDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_REMAINING_DESC', + DistributionsVariancePopulationTaxesAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_TAXES_ASC', + DistributionsVariancePopulationTaxesDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_TAXES_DESC', + DistributionsVariancePopulationUpdatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionsVariancePopulationUpdatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionsVarianceSampleAmountAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_AMOUNT_ASC', + DistributionsVarianceSampleAmountDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_AMOUNT_DESC', + DistributionsVarianceSampleAssetIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ASSET_ID_ASC', + DistributionsVarianceSampleAssetIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ASSET_ID_DESC', + DistributionsVarianceSampleBlockRangeAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + DistributionsVarianceSampleBlockRangeDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + DistributionsVarianceSampleCreatedAtAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + DistributionsVarianceSampleCreatedAtDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + DistributionsVarianceSampleCreatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionsVarianceSampleCreatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionsVarianceSampleCurrencyAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CURRENCY_ASC', + DistributionsVarianceSampleCurrencyDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CURRENCY_DESC', + DistributionsVarianceSampleExpiresAtAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_EXPIRES_AT_ASC', + DistributionsVarianceSampleExpiresAtDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_EXPIRES_AT_DESC', + DistributionsVarianceSampleIdentityIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + DistributionsVarianceSampleIdentityIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + DistributionsVarianceSampleIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ID_ASC', + DistributionsVarianceSampleIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ID_DESC', + DistributionsVarianceSampleLocalIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_LOCAL_ID_ASC', + DistributionsVarianceSampleLocalIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_LOCAL_ID_DESC', + DistributionsVarianceSamplePaymentAtAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PAYMENT_AT_ASC', + DistributionsVarianceSamplePaymentAtDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PAYMENT_AT_DESC', + DistributionsVarianceSamplePerShareAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PER_SHARE_ASC', + DistributionsVarianceSamplePerShareDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PER_SHARE_DESC', + DistributionsVarianceSamplePortfolioIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PORTFOLIO_ID_ASC', + DistributionsVarianceSamplePortfolioIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PORTFOLIO_ID_DESC', + DistributionsVarianceSampleRemainingAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_REMAINING_ASC', + DistributionsVarianceSampleRemainingDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_REMAINING_DESC', + DistributionsVarianceSampleTaxesAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_TAXES_ASC', + DistributionsVarianceSampleTaxesDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_TAXES_DESC', + DistributionsVarianceSampleUpdatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionsVarianceSampleUpdatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + DocumentsAverageAssetIdAsc = 'DOCUMENTS_AVERAGE_ASSET_ID_ASC', + DocumentsAverageAssetIdDesc = 'DOCUMENTS_AVERAGE_ASSET_ID_DESC', + DocumentsAverageBlockRangeAsc = 'DOCUMENTS_AVERAGE_BLOCK_RANGE_ASC', + DocumentsAverageBlockRangeDesc = 'DOCUMENTS_AVERAGE_BLOCK_RANGE_DESC', + DocumentsAverageContentHashAsc = 'DOCUMENTS_AVERAGE_CONTENT_HASH_ASC', + DocumentsAverageContentHashDesc = 'DOCUMENTS_AVERAGE_CONTENT_HASH_DESC', + DocumentsAverageCreatedAtAsc = 'DOCUMENTS_AVERAGE_CREATED_AT_ASC', + DocumentsAverageCreatedAtDesc = 'DOCUMENTS_AVERAGE_CREATED_AT_DESC', + DocumentsAverageCreatedBlockIdAsc = 'DOCUMENTS_AVERAGE_CREATED_BLOCK_ID_ASC', + DocumentsAverageCreatedBlockIdDesc = 'DOCUMENTS_AVERAGE_CREATED_BLOCK_ID_DESC', + DocumentsAverageDocumentIdAsc = 'DOCUMENTS_AVERAGE_DOCUMENT_ID_ASC', + DocumentsAverageDocumentIdDesc = 'DOCUMENTS_AVERAGE_DOCUMENT_ID_DESC', + DocumentsAverageFiledAtAsc = 'DOCUMENTS_AVERAGE_FILED_AT_ASC', + DocumentsAverageFiledAtDesc = 'DOCUMENTS_AVERAGE_FILED_AT_DESC', + DocumentsAverageIdAsc = 'DOCUMENTS_AVERAGE_ID_ASC', + DocumentsAverageIdDesc = 'DOCUMENTS_AVERAGE_ID_DESC', + DocumentsAverageLinkAsc = 'DOCUMENTS_AVERAGE_LINK_ASC', + DocumentsAverageLinkDesc = 'DOCUMENTS_AVERAGE_LINK_DESC', + DocumentsAverageNameAsc = 'DOCUMENTS_AVERAGE_NAME_ASC', + DocumentsAverageNameDesc = 'DOCUMENTS_AVERAGE_NAME_DESC', + DocumentsAverageTypeAsc = 'DOCUMENTS_AVERAGE_TYPE_ASC', + DocumentsAverageTypeDesc = 'DOCUMENTS_AVERAGE_TYPE_DESC', + DocumentsAverageUpdatedBlockIdAsc = 'DOCUMENTS_AVERAGE_UPDATED_BLOCK_ID_ASC', + DocumentsAverageUpdatedBlockIdDesc = 'DOCUMENTS_AVERAGE_UPDATED_BLOCK_ID_DESC', + DocumentsCountAsc = 'DOCUMENTS_COUNT_ASC', + DocumentsCountDesc = 'DOCUMENTS_COUNT_DESC', + DocumentsDistinctCountAssetIdAsc = 'DOCUMENTS_DISTINCT_COUNT_ASSET_ID_ASC', + DocumentsDistinctCountAssetIdDesc = 'DOCUMENTS_DISTINCT_COUNT_ASSET_ID_DESC', + DocumentsDistinctCountBlockRangeAsc = 'DOCUMENTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + DocumentsDistinctCountBlockRangeDesc = 'DOCUMENTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + DocumentsDistinctCountContentHashAsc = 'DOCUMENTS_DISTINCT_COUNT_CONTENT_HASH_ASC', + DocumentsDistinctCountContentHashDesc = 'DOCUMENTS_DISTINCT_COUNT_CONTENT_HASH_DESC', + DocumentsDistinctCountCreatedAtAsc = 'DOCUMENTS_DISTINCT_COUNT_CREATED_AT_ASC', + DocumentsDistinctCountCreatedAtDesc = 'DOCUMENTS_DISTINCT_COUNT_CREATED_AT_DESC', + DocumentsDistinctCountCreatedBlockIdAsc = 'DOCUMENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + DocumentsDistinctCountCreatedBlockIdDesc = 'DOCUMENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + DocumentsDistinctCountDocumentIdAsc = 'DOCUMENTS_DISTINCT_COUNT_DOCUMENT_ID_ASC', + DocumentsDistinctCountDocumentIdDesc = 'DOCUMENTS_DISTINCT_COUNT_DOCUMENT_ID_DESC', + DocumentsDistinctCountFiledAtAsc = 'DOCUMENTS_DISTINCT_COUNT_FILED_AT_ASC', + DocumentsDistinctCountFiledAtDesc = 'DOCUMENTS_DISTINCT_COUNT_FILED_AT_DESC', + DocumentsDistinctCountIdAsc = 'DOCUMENTS_DISTINCT_COUNT_ID_ASC', + DocumentsDistinctCountIdDesc = 'DOCUMENTS_DISTINCT_COUNT_ID_DESC', + DocumentsDistinctCountLinkAsc = 'DOCUMENTS_DISTINCT_COUNT_LINK_ASC', + DocumentsDistinctCountLinkDesc = 'DOCUMENTS_DISTINCT_COUNT_LINK_DESC', + DocumentsDistinctCountNameAsc = 'DOCUMENTS_DISTINCT_COUNT_NAME_ASC', + DocumentsDistinctCountNameDesc = 'DOCUMENTS_DISTINCT_COUNT_NAME_DESC', + DocumentsDistinctCountTypeAsc = 'DOCUMENTS_DISTINCT_COUNT_TYPE_ASC', + DocumentsDistinctCountTypeDesc = 'DOCUMENTS_DISTINCT_COUNT_TYPE_DESC', + DocumentsDistinctCountUpdatedBlockIdAsc = 'DOCUMENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + DocumentsDistinctCountUpdatedBlockIdDesc = 'DOCUMENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + DocumentsMaxAssetIdAsc = 'DOCUMENTS_MAX_ASSET_ID_ASC', + DocumentsMaxAssetIdDesc = 'DOCUMENTS_MAX_ASSET_ID_DESC', + DocumentsMaxBlockRangeAsc = 'DOCUMENTS_MAX_BLOCK_RANGE_ASC', + DocumentsMaxBlockRangeDesc = 'DOCUMENTS_MAX_BLOCK_RANGE_DESC', + DocumentsMaxContentHashAsc = 'DOCUMENTS_MAX_CONTENT_HASH_ASC', + DocumentsMaxContentHashDesc = 'DOCUMENTS_MAX_CONTENT_HASH_DESC', + DocumentsMaxCreatedAtAsc = 'DOCUMENTS_MAX_CREATED_AT_ASC', + DocumentsMaxCreatedAtDesc = 'DOCUMENTS_MAX_CREATED_AT_DESC', + DocumentsMaxCreatedBlockIdAsc = 'DOCUMENTS_MAX_CREATED_BLOCK_ID_ASC', + DocumentsMaxCreatedBlockIdDesc = 'DOCUMENTS_MAX_CREATED_BLOCK_ID_DESC', + DocumentsMaxDocumentIdAsc = 'DOCUMENTS_MAX_DOCUMENT_ID_ASC', + DocumentsMaxDocumentIdDesc = 'DOCUMENTS_MAX_DOCUMENT_ID_DESC', + DocumentsMaxFiledAtAsc = 'DOCUMENTS_MAX_FILED_AT_ASC', + DocumentsMaxFiledAtDesc = 'DOCUMENTS_MAX_FILED_AT_DESC', + DocumentsMaxIdAsc = 'DOCUMENTS_MAX_ID_ASC', + DocumentsMaxIdDesc = 'DOCUMENTS_MAX_ID_DESC', + DocumentsMaxLinkAsc = 'DOCUMENTS_MAX_LINK_ASC', + DocumentsMaxLinkDesc = 'DOCUMENTS_MAX_LINK_DESC', + DocumentsMaxNameAsc = 'DOCUMENTS_MAX_NAME_ASC', + DocumentsMaxNameDesc = 'DOCUMENTS_MAX_NAME_DESC', + DocumentsMaxTypeAsc = 'DOCUMENTS_MAX_TYPE_ASC', + DocumentsMaxTypeDesc = 'DOCUMENTS_MAX_TYPE_DESC', + DocumentsMaxUpdatedBlockIdAsc = 'DOCUMENTS_MAX_UPDATED_BLOCK_ID_ASC', + DocumentsMaxUpdatedBlockIdDesc = 'DOCUMENTS_MAX_UPDATED_BLOCK_ID_DESC', + DocumentsMinAssetIdAsc = 'DOCUMENTS_MIN_ASSET_ID_ASC', + DocumentsMinAssetIdDesc = 'DOCUMENTS_MIN_ASSET_ID_DESC', + DocumentsMinBlockRangeAsc = 'DOCUMENTS_MIN_BLOCK_RANGE_ASC', + DocumentsMinBlockRangeDesc = 'DOCUMENTS_MIN_BLOCK_RANGE_DESC', + DocumentsMinContentHashAsc = 'DOCUMENTS_MIN_CONTENT_HASH_ASC', + DocumentsMinContentHashDesc = 'DOCUMENTS_MIN_CONTENT_HASH_DESC', + DocumentsMinCreatedAtAsc = 'DOCUMENTS_MIN_CREATED_AT_ASC', + DocumentsMinCreatedAtDesc = 'DOCUMENTS_MIN_CREATED_AT_DESC', + DocumentsMinCreatedBlockIdAsc = 'DOCUMENTS_MIN_CREATED_BLOCK_ID_ASC', + DocumentsMinCreatedBlockIdDesc = 'DOCUMENTS_MIN_CREATED_BLOCK_ID_DESC', + DocumentsMinDocumentIdAsc = 'DOCUMENTS_MIN_DOCUMENT_ID_ASC', + DocumentsMinDocumentIdDesc = 'DOCUMENTS_MIN_DOCUMENT_ID_DESC', + DocumentsMinFiledAtAsc = 'DOCUMENTS_MIN_FILED_AT_ASC', + DocumentsMinFiledAtDesc = 'DOCUMENTS_MIN_FILED_AT_DESC', + DocumentsMinIdAsc = 'DOCUMENTS_MIN_ID_ASC', + DocumentsMinIdDesc = 'DOCUMENTS_MIN_ID_DESC', + DocumentsMinLinkAsc = 'DOCUMENTS_MIN_LINK_ASC', + DocumentsMinLinkDesc = 'DOCUMENTS_MIN_LINK_DESC', + DocumentsMinNameAsc = 'DOCUMENTS_MIN_NAME_ASC', + DocumentsMinNameDesc = 'DOCUMENTS_MIN_NAME_DESC', + DocumentsMinTypeAsc = 'DOCUMENTS_MIN_TYPE_ASC', + DocumentsMinTypeDesc = 'DOCUMENTS_MIN_TYPE_DESC', + DocumentsMinUpdatedBlockIdAsc = 'DOCUMENTS_MIN_UPDATED_BLOCK_ID_ASC', + DocumentsMinUpdatedBlockIdDesc = 'DOCUMENTS_MIN_UPDATED_BLOCK_ID_DESC', + DocumentsStddevPopulationAssetIdAsc = 'DOCUMENTS_STDDEV_POPULATION_ASSET_ID_ASC', + DocumentsStddevPopulationAssetIdDesc = 'DOCUMENTS_STDDEV_POPULATION_ASSET_ID_DESC', + DocumentsStddevPopulationBlockRangeAsc = 'DOCUMENTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + DocumentsStddevPopulationBlockRangeDesc = 'DOCUMENTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + DocumentsStddevPopulationContentHashAsc = 'DOCUMENTS_STDDEV_POPULATION_CONTENT_HASH_ASC', + DocumentsStddevPopulationContentHashDesc = 'DOCUMENTS_STDDEV_POPULATION_CONTENT_HASH_DESC', + DocumentsStddevPopulationCreatedAtAsc = 'DOCUMENTS_STDDEV_POPULATION_CREATED_AT_ASC', + DocumentsStddevPopulationCreatedAtDesc = 'DOCUMENTS_STDDEV_POPULATION_CREATED_AT_DESC', + DocumentsStddevPopulationCreatedBlockIdAsc = 'DOCUMENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + DocumentsStddevPopulationCreatedBlockIdDesc = 'DOCUMENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + DocumentsStddevPopulationDocumentIdAsc = 'DOCUMENTS_STDDEV_POPULATION_DOCUMENT_ID_ASC', + DocumentsStddevPopulationDocumentIdDesc = 'DOCUMENTS_STDDEV_POPULATION_DOCUMENT_ID_DESC', + DocumentsStddevPopulationFiledAtAsc = 'DOCUMENTS_STDDEV_POPULATION_FILED_AT_ASC', + DocumentsStddevPopulationFiledAtDesc = 'DOCUMENTS_STDDEV_POPULATION_FILED_AT_DESC', + DocumentsStddevPopulationIdAsc = 'DOCUMENTS_STDDEV_POPULATION_ID_ASC', + DocumentsStddevPopulationIdDesc = 'DOCUMENTS_STDDEV_POPULATION_ID_DESC', + DocumentsStddevPopulationLinkAsc = 'DOCUMENTS_STDDEV_POPULATION_LINK_ASC', + DocumentsStddevPopulationLinkDesc = 'DOCUMENTS_STDDEV_POPULATION_LINK_DESC', + DocumentsStddevPopulationNameAsc = 'DOCUMENTS_STDDEV_POPULATION_NAME_ASC', + DocumentsStddevPopulationNameDesc = 'DOCUMENTS_STDDEV_POPULATION_NAME_DESC', + DocumentsStddevPopulationTypeAsc = 'DOCUMENTS_STDDEV_POPULATION_TYPE_ASC', + DocumentsStddevPopulationTypeDesc = 'DOCUMENTS_STDDEV_POPULATION_TYPE_DESC', + DocumentsStddevPopulationUpdatedBlockIdAsc = 'DOCUMENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + DocumentsStddevPopulationUpdatedBlockIdDesc = 'DOCUMENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + DocumentsStddevSampleAssetIdAsc = 'DOCUMENTS_STDDEV_SAMPLE_ASSET_ID_ASC', + DocumentsStddevSampleAssetIdDesc = 'DOCUMENTS_STDDEV_SAMPLE_ASSET_ID_DESC', + DocumentsStddevSampleBlockRangeAsc = 'DOCUMENTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + DocumentsStddevSampleBlockRangeDesc = 'DOCUMENTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + DocumentsStddevSampleContentHashAsc = 'DOCUMENTS_STDDEV_SAMPLE_CONTENT_HASH_ASC', + DocumentsStddevSampleContentHashDesc = 'DOCUMENTS_STDDEV_SAMPLE_CONTENT_HASH_DESC', + DocumentsStddevSampleCreatedAtAsc = 'DOCUMENTS_STDDEV_SAMPLE_CREATED_AT_ASC', + DocumentsStddevSampleCreatedAtDesc = 'DOCUMENTS_STDDEV_SAMPLE_CREATED_AT_DESC', + DocumentsStddevSampleCreatedBlockIdAsc = 'DOCUMENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + DocumentsStddevSampleCreatedBlockIdDesc = 'DOCUMENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + DocumentsStddevSampleDocumentIdAsc = 'DOCUMENTS_STDDEV_SAMPLE_DOCUMENT_ID_ASC', + DocumentsStddevSampleDocumentIdDesc = 'DOCUMENTS_STDDEV_SAMPLE_DOCUMENT_ID_DESC', + DocumentsStddevSampleFiledAtAsc = 'DOCUMENTS_STDDEV_SAMPLE_FILED_AT_ASC', + DocumentsStddevSampleFiledAtDesc = 'DOCUMENTS_STDDEV_SAMPLE_FILED_AT_DESC', + DocumentsStddevSampleIdAsc = 'DOCUMENTS_STDDEV_SAMPLE_ID_ASC', + DocumentsStddevSampleIdDesc = 'DOCUMENTS_STDDEV_SAMPLE_ID_DESC', + DocumentsStddevSampleLinkAsc = 'DOCUMENTS_STDDEV_SAMPLE_LINK_ASC', + DocumentsStddevSampleLinkDesc = 'DOCUMENTS_STDDEV_SAMPLE_LINK_DESC', + DocumentsStddevSampleNameAsc = 'DOCUMENTS_STDDEV_SAMPLE_NAME_ASC', + DocumentsStddevSampleNameDesc = 'DOCUMENTS_STDDEV_SAMPLE_NAME_DESC', + DocumentsStddevSampleTypeAsc = 'DOCUMENTS_STDDEV_SAMPLE_TYPE_ASC', + DocumentsStddevSampleTypeDesc = 'DOCUMENTS_STDDEV_SAMPLE_TYPE_DESC', + DocumentsStddevSampleUpdatedBlockIdAsc = 'DOCUMENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + DocumentsStddevSampleUpdatedBlockIdDesc = 'DOCUMENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + DocumentsSumAssetIdAsc = 'DOCUMENTS_SUM_ASSET_ID_ASC', + DocumentsSumAssetIdDesc = 'DOCUMENTS_SUM_ASSET_ID_DESC', + DocumentsSumBlockRangeAsc = 'DOCUMENTS_SUM_BLOCK_RANGE_ASC', + DocumentsSumBlockRangeDesc = 'DOCUMENTS_SUM_BLOCK_RANGE_DESC', + DocumentsSumContentHashAsc = 'DOCUMENTS_SUM_CONTENT_HASH_ASC', + DocumentsSumContentHashDesc = 'DOCUMENTS_SUM_CONTENT_HASH_DESC', + DocumentsSumCreatedAtAsc = 'DOCUMENTS_SUM_CREATED_AT_ASC', + DocumentsSumCreatedAtDesc = 'DOCUMENTS_SUM_CREATED_AT_DESC', + DocumentsSumCreatedBlockIdAsc = 'DOCUMENTS_SUM_CREATED_BLOCK_ID_ASC', + DocumentsSumCreatedBlockIdDesc = 'DOCUMENTS_SUM_CREATED_BLOCK_ID_DESC', + DocumentsSumDocumentIdAsc = 'DOCUMENTS_SUM_DOCUMENT_ID_ASC', + DocumentsSumDocumentIdDesc = 'DOCUMENTS_SUM_DOCUMENT_ID_DESC', + DocumentsSumFiledAtAsc = 'DOCUMENTS_SUM_FILED_AT_ASC', + DocumentsSumFiledAtDesc = 'DOCUMENTS_SUM_FILED_AT_DESC', + DocumentsSumIdAsc = 'DOCUMENTS_SUM_ID_ASC', + DocumentsSumIdDesc = 'DOCUMENTS_SUM_ID_DESC', + DocumentsSumLinkAsc = 'DOCUMENTS_SUM_LINK_ASC', + DocumentsSumLinkDesc = 'DOCUMENTS_SUM_LINK_DESC', + DocumentsSumNameAsc = 'DOCUMENTS_SUM_NAME_ASC', + DocumentsSumNameDesc = 'DOCUMENTS_SUM_NAME_DESC', + DocumentsSumTypeAsc = 'DOCUMENTS_SUM_TYPE_ASC', + DocumentsSumTypeDesc = 'DOCUMENTS_SUM_TYPE_DESC', + DocumentsSumUpdatedBlockIdAsc = 'DOCUMENTS_SUM_UPDATED_BLOCK_ID_ASC', + DocumentsSumUpdatedBlockIdDesc = 'DOCUMENTS_SUM_UPDATED_BLOCK_ID_DESC', + DocumentsVariancePopulationAssetIdAsc = 'DOCUMENTS_VARIANCE_POPULATION_ASSET_ID_ASC', + DocumentsVariancePopulationAssetIdDesc = 'DOCUMENTS_VARIANCE_POPULATION_ASSET_ID_DESC', + DocumentsVariancePopulationBlockRangeAsc = 'DOCUMENTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + DocumentsVariancePopulationBlockRangeDesc = 'DOCUMENTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + DocumentsVariancePopulationContentHashAsc = 'DOCUMENTS_VARIANCE_POPULATION_CONTENT_HASH_ASC', + DocumentsVariancePopulationContentHashDesc = 'DOCUMENTS_VARIANCE_POPULATION_CONTENT_HASH_DESC', + DocumentsVariancePopulationCreatedAtAsc = 'DOCUMENTS_VARIANCE_POPULATION_CREATED_AT_ASC', + DocumentsVariancePopulationCreatedAtDesc = 'DOCUMENTS_VARIANCE_POPULATION_CREATED_AT_DESC', + DocumentsVariancePopulationCreatedBlockIdAsc = 'DOCUMENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + DocumentsVariancePopulationCreatedBlockIdDesc = 'DOCUMENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + DocumentsVariancePopulationDocumentIdAsc = 'DOCUMENTS_VARIANCE_POPULATION_DOCUMENT_ID_ASC', + DocumentsVariancePopulationDocumentIdDesc = 'DOCUMENTS_VARIANCE_POPULATION_DOCUMENT_ID_DESC', + DocumentsVariancePopulationFiledAtAsc = 'DOCUMENTS_VARIANCE_POPULATION_FILED_AT_ASC', + DocumentsVariancePopulationFiledAtDesc = 'DOCUMENTS_VARIANCE_POPULATION_FILED_AT_DESC', + DocumentsVariancePopulationIdAsc = 'DOCUMENTS_VARIANCE_POPULATION_ID_ASC', + DocumentsVariancePopulationIdDesc = 'DOCUMENTS_VARIANCE_POPULATION_ID_DESC', + DocumentsVariancePopulationLinkAsc = 'DOCUMENTS_VARIANCE_POPULATION_LINK_ASC', + DocumentsVariancePopulationLinkDesc = 'DOCUMENTS_VARIANCE_POPULATION_LINK_DESC', + DocumentsVariancePopulationNameAsc = 'DOCUMENTS_VARIANCE_POPULATION_NAME_ASC', + DocumentsVariancePopulationNameDesc = 'DOCUMENTS_VARIANCE_POPULATION_NAME_DESC', + DocumentsVariancePopulationTypeAsc = 'DOCUMENTS_VARIANCE_POPULATION_TYPE_ASC', + DocumentsVariancePopulationTypeDesc = 'DOCUMENTS_VARIANCE_POPULATION_TYPE_DESC', + DocumentsVariancePopulationUpdatedBlockIdAsc = 'DOCUMENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + DocumentsVariancePopulationUpdatedBlockIdDesc = 'DOCUMENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + DocumentsVarianceSampleAssetIdAsc = 'DOCUMENTS_VARIANCE_SAMPLE_ASSET_ID_ASC', + DocumentsVarianceSampleAssetIdDesc = 'DOCUMENTS_VARIANCE_SAMPLE_ASSET_ID_DESC', + DocumentsVarianceSampleBlockRangeAsc = 'DOCUMENTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + DocumentsVarianceSampleBlockRangeDesc = 'DOCUMENTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + DocumentsVarianceSampleContentHashAsc = 'DOCUMENTS_VARIANCE_SAMPLE_CONTENT_HASH_ASC', + DocumentsVarianceSampleContentHashDesc = 'DOCUMENTS_VARIANCE_SAMPLE_CONTENT_HASH_DESC', + DocumentsVarianceSampleCreatedAtAsc = 'DOCUMENTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + DocumentsVarianceSampleCreatedAtDesc = 'DOCUMENTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + DocumentsVarianceSampleCreatedBlockIdAsc = 'DOCUMENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + DocumentsVarianceSampleCreatedBlockIdDesc = 'DOCUMENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + DocumentsVarianceSampleDocumentIdAsc = 'DOCUMENTS_VARIANCE_SAMPLE_DOCUMENT_ID_ASC', + DocumentsVarianceSampleDocumentIdDesc = 'DOCUMENTS_VARIANCE_SAMPLE_DOCUMENT_ID_DESC', + DocumentsVarianceSampleFiledAtAsc = 'DOCUMENTS_VARIANCE_SAMPLE_FILED_AT_ASC', + DocumentsVarianceSampleFiledAtDesc = 'DOCUMENTS_VARIANCE_SAMPLE_FILED_AT_DESC', + DocumentsVarianceSampleIdAsc = 'DOCUMENTS_VARIANCE_SAMPLE_ID_ASC', + DocumentsVarianceSampleIdDesc = 'DOCUMENTS_VARIANCE_SAMPLE_ID_DESC', + DocumentsVarianceSampleLinkAsc = 'DOCUMENTS_VARIANCE_SAMPLE_LINK_ASC', + DocumentsVarianceSampleLinkDesc = 'DOCUMENTS_VARIANCE_SAMPLE_LINK_DESC', + DocumentsVarianceSampleNameAsc = 'DOCUMENTS_VARIANCE_SAMPLE_NAME_ASC', + DocumentsVarianceSampleNameDesc = 'DOCUMENTS_VARIANCE_SAMPLE_NAME_DESC', + DocumentsVarianceSampleTypeAsc = 'DOCUMENTS_VARIANCE_SAMPLE_TYPE_ASC', + DocumentsVarianceSampleTypeDesc = 'DOCUMENTS_VARIANCE_SAMPLE_TYPE_DESC', + DocumentsVarianceSampleUpdatedBlockIdAsc = 'DOCUMENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + DocumentsVarianceSampleUpdatedBlockIdDesc = 'DOCUMENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + FundingsAverageAmountAsc = 'FUNDINGS_AVERAGE_AMOUNT_ASC', + FundingsAverageAmountDesc = 'FUNDINGS_AVERAGE_AMOUNT_DESC', + FundingsAverageAssetIdAsc = 'FUNDINGS_AVERAGE_ASSET_ID_ASC', + FundingsAverageAssetIdDesc = 'FUNDINGS_AVERAGE_ASSET_ID_DESC', + FundingsAverageBlockRangeAsc = 'FUNDINGS_AVERAGE_BLOCK_RANGE_ASC', + FundingsAverageBlockRangeDesc = 'FUNDINGS_AVERAGE_BLOCK_RANGE_DESC', + FundingsAverageCreatedAtAsc = 'FUNDINGS_AVERAGE_CREATED_AT_ASC', + FundingsAverageCreatedAtDesc = 'FUNDINGS_AVERAGE_CREATED_AT_DESC', + FundingsAverageCreatedBlockIdAsc = 'FUNDINGS_AVERAGE_CREATED_BLOCK_ID_ASC', + FundingsAverageCreatedBlockIdDesc = 'FUNDINGS_AVERAGE_CREATED_BLOCK_ID_DESC', + FundingsAverageDatetimeAsc = 'FUNDINGS_AVERAGE_DATETIME_ASC', + FundingsAverageDatetimeDesc = 'FUNDINGS_AVERAGE_DATETIME_DESC', + FundingsAverageFundingRoundAsc = 'FUNDINGS_AVERAGE_FUNDING_ROUND_ASC', + FundingsAverageFundingRoundDesc = 'FUNDINGS_AVERAGE_FUNDING_ROUND_DESC', + FundingsAverageIdAsc = 'FUNDINGS_AVERAGE_ID_ASC', + FundingsAverageIdDesc = 'FUNDINGS_AVERAGE_ID_DESC', + FundingsAverageTotalFundingAmountAsc = 'FUNDINGS_AVERAGE_TOTAL_FUNDING_AMOUNT_ASC', + FundingsAverageTotalFundingAmountDesc = 'FUNDINGS_AVERAGE_TOTAL_FUNDING_AMOUNT_DESC', + FundingsAverageUpdatedBlockIdAsc = 'FUNDINGS_AVERAGE_UPDATED_BLOCK_ID_ASC', + FundingsAverageUpdatedBlockIdDesc = 'FUNDINGS_AVERAGE_UPDATED_BLOCK_ID_DESC', + FundingsCountAsc = 'FUNDINGS_COUNT_ASC', + FundingsCountDesc = 'FUNDINGS_COUNT_DESC', + FundingsDistinctCountAmountAsc = 'FUNDINGS_DISTINCT_COUNT_AMOUNT_ASC', + FundingsDistinctCountAmountDesc = 'FUNDINGS_DISTINCT_COUNT_AMOUNT_DESC', + FundingsDistinctCountAssetIdAsc = 'FUNDINGS_DISTINCT_COUNT_ASSET_ID_ASC', + FundingsDistinctCountAssetIdDesc = 'FUNDINGS_DISTINCT_COUNT_ASSET_ID_DESC', + FundingsDistinctCountBlockRangeAsc = 'FUNDINGS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + FundingsDistinctCountBlockRangeDesc = 'FUNDINGS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + FundingsDistinctCountCreatedAtAsc = 'FUNDINGS_DISTINCT_COUNT_CREATED_AT_ASC', + FundingsDistinctCountCreatedAtDesc = 'FUNDINGS_DISTINCT_COUNT_CREATED_AT_DESC', + FundingsDistinctCountCreatedBlockIdAsc = 'FUNDINGS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + FundingsDistinctCountCreatedBlockIdDesc = 'FUNDINGS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + FundingsDistinctCountDatetimeAsc = 'FUNDINGS_DISTINCT_COUNT_DATETIME_ASC', + FundingsDistinctCountDatetimeDesc = 'FUNDINGS_DISTINCT_COUNT_DATETIME_DESC', + FundingsDistinctCountFundingRoundAsc = 'FUNDINGS_DISTINCT_COUNT_FUNDING_ROUND_ASC', + FundingsDistinctCountFundingRoundDesc = 'FUNDINGS_DISTINCT_COUNT_FUNDING_ROUND_DESC', + FundingsDistinctCountIdAsc = 'FUNDINGS_DISTINCT_COUNT_ID_ASC', + FundingsDistinctCountIdDesc = 'FUNDINGS_DISTINCT_COUNT_ID_DESC', + FundingsDistinctCountTotalFundingAmountAsc = 'FUNDINGS_DISTINCT_COUNT_TOTAL_FUNDING_AMOUNT_ASC', + FundingsDistinctCountTotalFundingAmountDesc = 'FUNDINGS_DISTINCT_COUNT_TOTAL_FUNDING_AMOUNT_DESC', + FundingsDistinctCountUpdatedBlockIdAsc = 'FUNDINGS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + FundingsDistinctCountUpdatedBlockIdDesc = 'FUNDINGS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + FundingsMaxAmountAsc = 'FUNDINGS_MAX_AMOUNT_ASC', + FundingsMaxAmountDesc = 'FUNDINGS_MAX_AMOUNT_DESC', + FundingsMaxAssetIdAsc = 'FUNDINGS_MAX_ASSET_ID_ASC', + FundingsMaxAssetIdDesc = 'FUNDINGS_MAX_ASSET_ID_DESC', + FundingsMaxBlockRangeAsc = 'FUNDINGS_MAX_BLOCK_RANGE_ASC', + FundingsMaxBlockRangeDesc = 'FUNDINGS_MAX_BLOCK_RANGE_DESC', + FundingsMaxCreatedAtAsc = 'FUNDINGS_MAX_CREATED_AT_ASC', + FundingsMaxCreatedAtDesc = 'FUNDINGS_MAX_CREATED_AT_DESC', + FundingsMaxCreatedBlockIdAsc = 'FUNDINGS_MAX_CREATED_BLOCK_ID_ASC', + FundingsMaxCreatedBlockIdDesc = 'FUNDINGS_MAX_CREATED_BLOCK_ID_DESC', + FundingsMaxDatetimeAsc = 'FUNDINGS_MAX_DATETIME_ASC', + FundingsMaxDatetimeDesc = 'FUNDINGS_MAX_DATETIME_DESC', + FundingsMaxFundingRoundAsc = 'FUNDINGS_MAX_FUNDING_ROUND_ASC', + FundingsMaxFundingRoundDesc = 'FUNDINGS_MAX_FUNDING_ROUND_DESC', + FundingsMaxIdAsc = 'FUNDINGS_MAX_ID_ASC', + FundingsMaxIdDesc = 'FUNDINGS_MAX_ID_DESC', + FundingsMaxTotalFundingAmountAsc = 'FUNDINGS_MAX_TOTAL_FUNDING_AMOUNT_ASC', + FundingsMaxTotalFundingAmountDesc = 'FUNDINGS_MAX_TOTAL_FUNDING_AMOUNT_DESC', + FundingsMaxUpdatedBlockIdAsc = 'FUNDINGS_MAX_UPDATED_BLOCK_ID_ASC', + FundingsMaxUpdatedBlockIdDesc = 'FUNDINGS_MAX_UPDATED_BLOCK_ID_DESC', + FundingsMinAmountAsc = 'FUNDINGS_MIN_AMOUNT_ASC', + FundingsMinAmountDesc = 'FUNDINGS_MIN_AMOUNT_DESC', + FundingsMinAssetIdAsc = 'FUNDINGS_MIN_ASSET_ID_ASC', + FundingsMinAssetIdDesc = 'FUNDINGS_MIN_ASSET_ID_DESC', + FundingsMinBlockRangeAsc = 'FUNDINGS_MIN_BLOCK_RANGE_ASC', + FundingsMinBlockRangeDesc = 'FUNDINGS_MIN_BLOCK_RANGE_DESC', + FundingsMinCreatedAtAsc = 'FUNDINGS_MIN_CREATED_AT_ASC', + FundingsMinCreatedAtDesc = 'FUNDINGS_MIN_CREATED_AT_DESC', + FundingsMinCreatedBlockIdAsc = 'FUNDINGS_MIN_CREATED_BLOCK_ID_ASC', + FundingsMinCreatedBlockIdDesc = 'FUNDINGS_MIN_CREATED_BLOCK_ID_DESC', + FundingsMinDatetimeAsc = 'FUNDINGS_MIN_DATETIME_ASC', + FundingsMinDatetimeDesc = 'FUNDINGS_MIN_DATETIME_DESC', + FundingsMinFundingRoundAsc = 'FUNDINGS_MIN_FUNDING_ROUND_ASC', + FundingsMinFundingRoundDesc = 'FUNDINGS_MIN_FUNDING_ROUND_DESC', + FundingsMinIdAsc = 'FUNDINGS_MIN_ID_ASC', + FundingsMinIdDesc = 'FUNDINGS_MIN_ID_DESC', + FundingsMinTotalFundingAmountAsc = 'FUNDINGS_MIN_TOTAL_FUNDING_AMOUNT_ASC', + FundingsMinTotalFundingAmountDesc = 'FUNDINGS_MIN_TOTAL_FUNDING_AMOUNT_DESC', + FundingsMinUpdatedBlockIdAsc = 'FUNDINGS_MIN_UPDATED_BLOCK_ID_ASC', + FundingsMinUpdatedBlockIdDesc = 'FUNDINGS_MIN_UPDATED_BLOCK_ID_DESC', + FundingsStddevPopulationAmountAsc = 'FUNDINGS_STDDEV_POPULATION_AMOUNT_ASC', + FundingsStddevPopulationAmountDesc = 'FUNDINGS_STDDEV_POPULATION_AMOUNT_DESC', + FundingsStddevPopulationAssetIdAsc = 'FUNDINGS_STDDEV_POPULATION_ASSET_ID_ASC', + FundingsStddevPopulationAssetIdDesc = 'FUNDINGS_STDDEV_POPULATION_ASSET_ID_DESC', + FundingsStddevPopulationBlockRangeAsc = 'FUNDINGS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + FundingsStddevPopulationBlockRangeDesc = 'FUNDINGS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + FundingsStddevPopulationCreatedAtAsc = 'FUNDINGS_STDDEV_POPULATION_CREATED_AT_ASC', + FundingsStddevPopulationCreatedAtDesc = 'FUNDINGS_STDDEV_POPULATION_CREATED_AT_DESC', + FundingsStddevPopulationCreatedBlockIdAsc = 'FUNDINGS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + FundingsStddevPopulationCreatedBlockIdDesc = 'FUNDINGS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + FundingsStddevPopulationDatetimeAsc = 'FUNDINGS_STDDEV_POPULATION_DATETIME_ASC', + FundingsStddevPopulationDatetimeDesc = 'FUNDINGS_STDDEV_POPULATION_DATETIME_DESC', + FundingsStddevPopulationFundingRoundAsc = 'FUNDINGS_STDDEV_POPULATION_FUNDING_ROUND_ASC', + FundingsStddevPopulationFundingRoundDesc = 'FUNDINGS_STDDEV_POPULATION_FUNDING_ROUND_DESC', + FundingsStddevPopulationIdAsc = 'FUNDINGS_STDDEV_POPULATION_ID_ASC', + FundingsStddevPopulationIdDesc = 'FUNDINGS_STDDEV_POPULATION_ID_DESC', + FundingsStddevPopulationTotalFundingAmountAsc = 'FUNDINGS_STDDEV_POPULATION_TOTAL_FUNDING_AMOUNT_ASC', + FundingsStddevPopulationTotalFundingAmountDesc = 'FUNDINGS_STDDEV_POPULATION_TOTAL_FUNDING_AMOUNT_DESC', + FundingsStddevPopulationUpdatedBlockIdAsc = 'FUNDINGS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + FundingsStddevPopulationUpdatedBlockIdDesc = 'FUNDINGS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + FundingsStddevSampleAmountAsc = 'FUNDINGS_STDDEV_SAMPLE_AMOUNT_ASC', + FundingsStddevSampleAmountDesc = 'FUNDINGS_STDDEV_SAMPLE_AMOUNT_DESC', + FundingsStddevSampleAssetIdAsc = 'FUNDINGS_STDDEV_SAMPLE_ASSET_ID_ASC', + FundingsStddevSampleAssetIdDesc = 'FUNDINGS_STDDEV_SAMPLE_ASSET_ID_DESC', + FundingsStddevSampleBlockRangeAsc = 'FUNDINGS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + FundingsStddevSampleBlockRangeDesc = 'FUNDINGS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + FundingsStddevSampleCreatedAtAsc = 'FUNDINGS_STDDEV_SAMPLE_CREATED_AT_ASC', + FundingsStddevSampleCreatedAtDesc = 'FUNDINGS_STDDEV_SAMPLE_CREATED_AT_DESC', + FundingsStddevSampleCreatedBlockIdAsc = 'FUNDINGS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + FundingsStddevSampleCreatedBlockIdDesc = 'FUNDINGS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + FundingsStddevSampleDatetimeAsc = 'FUNDINGS_STDDEV_SAMPLE_DATETIME_ASC', + FundingsStddevSampleDatetimeDesc = 'FUNDINGS_STDDEV_SAMPLE_DATETIME_DESC', + FundingsStddevSampleFundingRoundAsc = 'FUNDINGS_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + FundingsStddevSampleFundingRoundDesc = 'FUNDINGS_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + FundingsStddevSampleIdAsc = 'FUNDINGS_STDDEV_SAMPLE_ID_ASC', + FundingsStddevSampleIdDesc = 'FUNDINGS_STDDEV_SAMPLE_ID_DESC', + FundingsStddevSampleTotalFundingAmountAsc = 'FUNDINGS_STDDEV_SAMPLE_TOTAL_FUNDING_AMOUNT_ASC', + FundingsStddevSampleTotalFundingAmountDesc = 'FUNDINGS_STDDEV_SAMPLE_TOTAL_FUNDING_AMOUNT_DESC', + FundingsStddevSampleUpdatedBlockIdAsc = 'FUNDINGS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + FundingsStddevSampleUpdatedBlockIdDesc = 'FUNDINGS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + FundingsSumAmountAsc = 'FUNDINGS_SUM_AMOUNT_ASC', + FundingsSumAmountDesc = 'FUNDINGS_SUM_AMOUNT_DESC', + FundingsSumAssetIdAsc = 'FUNDINGS_SUM_ASSET_ID_ASC', + FundingsSumAssetIdDesc = 'FUNDINGS_SUM_ASSET_ID_DESC', + FundingsSumBlockRangeAsc = 'FUNDINGS_SUM_BLOCK_RANGE_ASC', + FundingsSumBlockRangeDesc = 'FUNDINGS_SUM_BLOCK_RANGE_DESC', + FundingsSumCreatedAtAsc = 'FUNDINGS_SUM_CREATED_AT_ASC', + FundingsSumCreatedAtDesc = 'FUNDINGS_SUM_CREATED_AT_DESC', + FundingsSumCreatedBlockIdAsc = 'FUNDINGS_SUM_CREATED_BLOCK_ID_ASC', + FundingsSumCreatedBlockIdDesc = 'FUNDINGS_SUM_CREATED_BLOCK_ID_DESC', + FundingsSumDatetimeAsc = 'FUNDINGS_SUM_DATETIME_ASC', + FundingsSumDatetimeDesc = 'FUNDINGS_SUM_DATETIME_DESC', + FundingsSumFundingRoundAsc = 'FUNDINGS_SUM_FUNDING_ROUND_ASC', + FundingsSumFundingRoundDesc = 'FUNDINGS_SUM_FUNDING_ROUND_DESC', + FundingsSumIdAsc = 'FUNDINGS_SUM_ID_ASC', + FundingsSumIdDesc = 'FUNDINGS_SUM_ID_DESC', + FundingsSumTotalFundingAmountAsc = 'FUNDINGS_SUM_TOTAL_FUNDING_AMOUNT_ASC', + FundingsSumTotalFundingAmountDesc = 'FUNDINGS_SUM_TOTAL_FUNDING_AMOUNT_DESC', + FundingsSumUpdatedBlockIdAsc = 'FUNDINGS_SUM_UPDATED_BLOCK_ID_ASC', + FundingsSumUpdatedBlockIdDesc = 'FUNDINGS_SUM_UPDATED_BLOCK_ID_DESC', + FundingsVariancePopulationAmountAsc = 'FUNDINGS_VARIANCE_POPULATION_AMOUNT_ASC', + FundingsVariancePopulationAmountDesc = 'FUNDINGS_VARIANCE_POPULATION_AMOUNT_DESC', + FundingsVariancePopulationAssetIdAsc = 'FUNDINGS_VARIANCE_POPULATION_ASSET_ID_ASC', + FundingsVariancePopulationAssetIdDesc = 'FUNDINGS_VARIANCE_POPULATION_ASSET_ID_DESC', + FundingsVariancePopulationBlockRangeAsc = 'FUNDINGS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + FundingsVariancePopulationBlockRangeDesc = 'FUNDINGS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + FundingsVariancePopulationCreatedAtAsc = 'FUNDINGS_VARIANCE_POPULATION_CREATED_AT_ASC', + FundingsVariancePopulationCreatedAtDesc = 'FUNDINGS_VARIANCE_POPULATION_CREATED_AT_DESC', + FundingsVariancePopulationCreatedBlockIdAsc = 'FUNDINGS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + FundingsVariancePopulationCreatedBlockIdDesc = 'FUNDINGS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + FundingsVariancePopulationDatetimeAsc = 'FUNDINGS_VARIANCE_POPULATION_DATETIME_ASC', + FundingsVariancePopulationDatetimeDesc = 'FUNDINGS_VARIANCE_POPULATION_DATETIME_DESC', + FundingsVariancePopulationFundingRoundAsc = 'FUNDINGS_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + FundingsVariancePopulationFundingRoundDesc = 'FUNDINGS_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + FundingsVariancePopulationIdAsc = 'FUNDINGS_VARIANCE_POPULATION_ID_ASC', + FundingsVariancePopulationIdDesc = 'FUNDINGS_VARIANCE_POPULATION_ID_DESC', + FundingsVariancePopulationTotalFundingAmountAsc = 'FUNDINGS_VARIANCE_POPULATION_TOTAL_FUNDING_AMOUNT_ASC', + FundingsVariancePopulationTotalFundingAmountDesc = 'FUNDINGS_VARIANCE_POPULATION_TOTAL_FUNDING_AMOUNT_DESC', + FundingsVariancePopulationUpdatedBlockIdAsc = 'FUNDINGS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + FundingsVariancePopulationUpdatedBlockIdDesc = 'FUNDINGS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + FundingsVarianceSampleAmountAsc = 'FUNDINGS_VARIANCE_SAMPLE_AMOUNT_ASC', + FundingsVarianceSampleAmountDesc = 'FUNDINGS_VARIANCE_SAMPLE_AMOUNT_DESC', + FundingsVarianceSampleAssetIdAsc = 'FUNDINGS_VARIANCE_SAMPLE_ASSET_ID_ASC', + FundingsVarianceSampleAssetIdDesc = 'FUNDINGS_VARIANCE_SAMPLE_ASSET_ID_DESC', + FundingsVarianceSampleBlockRangeAsc = 'FUNDINGS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + FundingsVarianceSampleBlockRangeDesc = 'FUNDINGS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + FundingsVarianceSampleCreatedAtAsc = 'FUNDINGS_VARIANCE_SAMPLE_CREATED_AT_ASC', + FundingsVarianceSampleCreatedAtDesc = 'FUNDINGS_VARIANCE_SAMPLE_CREATED_AT_DESC', + FundingsVarianceSampleCreatedBlockIdAsc = 'FUNDINGS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + FundingsVarianceSampleCreatedBlockIdDesc = 'FUNDINGS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + FundingsVarianceSampleDatetimeAsc = 'FUNDINGS_VARIANCE_SAMPLE_DATETIME_ASC', + FundingsVarianceSampleDatetimeDesc = 'FUNDINGS_VARIANCE_SAMPLE_DATETIME_DESC', + FundingsVarianceSampleFundingRoundAsc = 'FUNDINGS_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + FundingsVarianceSampleFundingRoundDesc = 'FUNDINGS_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + FundingsVarianceSampleIdAsc = 'FUNDINGS_VARIANCE_SAMPLE_ID_ASC', + FundingsVarianceSampleIdDesc = 'FUNDINGS_VARIANCE_SAMPLE_ID_DESC', + FundingsVarianceSampleTotalFundingAmountAsc = 'FUNDINGS_VARIANCE_SAMPLE_TOTAL_FUNDING_AMOUNT_ASC', + FundingsVarianceSampleTotalFundingAmountDesc = 'FUNDINGS_VARIANCE_SAMPLE_TOTAL_FUNDING_AMOUNT_DESC', + FundingsVarianceSampleUpdatedBlockIdAsc = 'FUNDINGS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + FundingsVarianceSampleUpdatedBlockIdDesc = 'FUNDINGS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + FundingRoundAsc = 'FUNDING_ROUND_ASC', + FundingRoundDesc = 'FUNDING_ROUND_DESC', + HoldersAverageAmountAsc = 'HOLDERS_AVERAGE_AMOUNT_ASC', + HoldersAverageAmountDesc = 'HOLDERS_AVERAGE_AMOUNT_DESC', + HoldersAverageAssetIdAsc = 'HOLDERS_AVERAGE_ASSET_ID_ASC', + HoldersAverageAssetIdDesc = 'HOLDERS_AVERAGE_ASSET_ID_DESC', + HoldersAverageBlockRangeAsc = 'HOLDERS_AVERAGE_BLOCK_RANGE_ASC', + HoldersAverageBlockRangeDesc = 'HOLDERS_AVERAGE_BLOCK_RANGE_DESC', + HoldersAverageCreatedAtAsc = 'HOLDERS_AVERAGE_CREATED_AT_ASC', + HoldersAverageCreatedAtDesc = 'HOLDERS_AVERAGE_CREATED_AT_DESC', + HoldersAverageCreatedBlockIdAsc = 'HOLDERS_AVERAGE_CREATED_BLOCK_ID_ASC', + HoldersAverageCreatedBlockIdDesc = 'HOLDERS_AVERAGE_CREATED_BLOCK_ID_DESC', + HoldersAverageIdentityIdAsc = 'HOLDERS_AVERAGE_IDENTITY_ID_ASC', + HoldersAverageIdentityIdDesc = 'HOLDERS_AVERAGE_IDENTITY_ID_DESC', + HoldersAverageIdAsc = 'HOLDERS_AVERAGE_ID_ASC', + HoldersAverageIdDesc = 'HOLDERS_AVERAGE_ID_DESC', + HoldersAverageUpdatedBlockIdAsc = 'HOLDERS_AVERAGE_UPDATED_BLOCK_ID_ASC', + HoldersAverageUpdatedBlockIdDesc = 'HOLDERS_AVERAGE_UPDATED_BLOCK_ID_DESC', + HoldersCountAsc = 'HOLDERS_COUNT_ASC', + HoldersCountDesc = 'HOLDERS_COUNT_DESC', + HoldersDistinctCountAmountAsc = 'HOLDERS_DISTINCT_COUNT_AMOUNT_ASC', + HoldersDistinctCountAmountDesc = 'HOLDERS_DISTINCT_COUNT_AMOUNT_DESC', + HoldersDistinctCountAssetIdAsc = 'HOLDERS_DISTINCT_COUNT_ASSET_ID_ASC', + HoldersDistinctCountAssetIdDesc = 'HOLDERS_DISTINCT_COUNT_ASSET_ID_DESC', + HoldersDistinctCountBlockRangeAsc = 'HOLDERS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + HoldersDistinctCountBlockRangeDesc = 'HOLDERS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + HoldersDistinctCountCreatedAtAsc = 'HOLDERS_DISTINCT_COUNT_CREATED_AT_ASC', + HoldersDistinctCountCreatedAtDesc = 'HOLDERS_DISTINCT_COUNT_CREATED_AT_DESC', + HoldersDistinctCountCreatedBlockIdAsc = 'HOLDERS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + HoldersDistinctCountCreatedBlockIdDesc = 'HOLDERS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + HoldersDistinctCountIdentityIdAsc = 'HOLDERS_DISTINCT_COUNT_IDENTITY_ID_ASC', + HoldersDistinctCountIdentityIdDesc = 'HOLDERS_DISTINCT_COUNT_IDENTITY_ID_DESC', + HoldersDistinctCountIdAsc = 'HOLDERS_DISTINCT_COUNT_ID_ASC', + HoldersDistinctCountIdDesc = 'HOLDERS_DISTINCT_COUNT_ID_DESC', + HoldersDistinctCountUpdatedBlockIdAsc = 'HOLDERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + HoldersDistinctCountUpdatedBlockIdDesc = 'HOLDERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + HoldersMaxAmountAsc = 'HOLDERS_MAX_AMOUNT_ASC', + HoldersMaxAmountDesc = 'HOLDERS_MAX_AMOUNT_DESC', + HoldersMaxAssetIdAsc = 'HOLDERS_MAX_ASSET_ID_ASC', + HoldersMaxAssetIdDesc = 'HOLDERS_MAX_ASSET_ID_DESC', + HoldersMaxBlockRangeAsc = 'HOLDERS_MAX_BLOCK_RANGE_ASC', + HoldersMaxBlockRangeDesc = 'HOLDERS_MAX_BLOCK_RANGE_DESC', + HoldersMaxCreatedAtAsc = 'HOLDERS_MAX_CREATED_AT_ASC', + HoldersMaxCreatedAtDesc = 'HOLDERS_MAX_CREATED_AT_DESC', + HoldersMaxCreatedBlockIdAsc = 'HOLDERS_MAX_CREATED_BLOCK_ID_ASC', + HoldersMaxCreatedBlockIdDesc = 'HOLDERS_MAX_CREATED_BLOCK_ID_DESC', + HoldersMaxIdentityIdAsc = 'HOLDERS_MAX_IDENTITY_ID_ASC', + HoldersMaxIdentityIdDesc = 'HOLDERS_MAX_IDENTITY_ID_DESC', + HoldersMaxIdAsc = 'HOLDERS_MAX_ID_ASC', + HoldersMaxIdDesc = 'HOLDERS_MAX_ID_DESC', + HoldersMaxUpdatedBlockIdAsc = 'HOLDERS_MAX_UPDATED_BLOCK_ID_ASC', + HoldersMaxUpdatedBlockIdDesc = 'HOLDERS_MAX_UPDATED_BLOCK_ID_DESC', + HoldersMinAmountAsc = 'HOLDERS_MIN_AMOUNT_ASC', + HoldersMinAmountDesc = 'HOLDERS_MIN_AMOUNT_DESC', + HoldersMinAssetIdAsc = 'HOLDERS_MIN_ASSET_ID_ASC', + HoldersMinAssetIdDesc = 'HOLDERS_MIN_ASSET_ID_DESC', + HoldersMinBlockRangeAsc = 'HOLDERS_MIN_BLOCK_RANGE_ASC', + HoldersMinBlockRangeDesc = 'HOLDERS_MIN_BLOCK_RANGE_DESC', + HoldersMinCreatedAtAsc = 'HOLDERS_MIN_CREATED_AT_ASC', + HoldersMinCreatedAtDesc = 'HOLDERS_MIN_CREATED_AT_DESC', + HoldersMinCreatedBlockIdAsc = 'HOLDERS_MIN_CREATED_BLOCK_ID_ASC', + HoldersMinCreatedBlockIdDesc = 'HOLDERS_MIN_CREATED_BLOCK_ID_DESC', + HoldersMinIdentityIdAsc = 'HOLDERS_MIN_IDENTITY_ID_ASC', + HoldersMinIdentityIdDesc = 'HOLDERS_MIN_IDENTITY_ID_DESC', + HoldersMinIdAsc = 'HOLDERS_MIN_ID_ASC', + HoldersMinIdDesc = 'HOLDERS_MIN_ID_DESC', + HoldersMinUpdatedBlockIdAsc = 'HOLDERS_MIN_UPDATED_BLOCK_ID_ASC', + HoldersMinUpdatedBlockIdDesc = 'HOLDERS_MIN_UPDATED_BLOCK_ID_DESC', + HoldersStddevPopulationAmountAsc = 'HOLDERS_STDDEV_POPULATION_AMOUNT_ASC', + HoldersStddevPopulationAmountDesc = 'HOLDERS_STDDEV_POPULATION_AMOUNT_DESC', + HoldersStddevPopulationAssetIdAsc = 'HOLDERS_STDDEV_POPULATION_ASSET_ID_ASC', + HoldersStddevPopulationAssetIdDesc = 'HOLDERS_STDDEV_POPULATION_ASSET_ID_DESC', + HoldersStddevPopulationBlockRangeAsc = 'HOLDERS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + HoldersStddevPopulationBlockRangeDesc = 'HOLDERS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + HoldersStddevPopulationCreatedAtAsc = 'HOLDERS_STDDEV_POPULATION_CREATED_AT_ASC', + HoldersStddevPopulationCreatedAtDesc = 'HOLDERS_STDDEV_POPULATION_CREATED_AT_DESC', + HoldersStddevPopulationCreatedBlockIdAsc = 'HOLDERS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + HoldersStddevPopulationCreatedBlockIdDesc = 'HOLDERS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + HoldersStddevPopulationIdentityIdAsc = 'HOLDERS_STDDEV_POPULATION_IDENTITY_ID_ASC', + HoldersStddevPopulationIdentityIdDesc = 'HOLDERS_STDDEV_POPULATION_IDENTITY_ID_DESC', + HoldersStddevPopulationIdAsc = 'HOLDERS_STDDEV_POPULATION_ID_ASC', + HoldersStddevPopulationIdDesc = 'HOLDERS_STDDEV_POPULATION_ID_DESC', + HoldersStddevPopulationUpdatedBlockIdAsc = 'HOLDERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + HoldersStddevPopulationUpdatedBlockIdDesc = 'HOLDERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + HoldersStddevSampleAmountAsc = 'HOLDERS_STDDEV_SAMPLE_AMOUNT_ASC', + HoldersStddevSampleAmountDesc = 'HOLDERS_STDDEV_SAMPLE_AMOUNT_DESC', + HoldersStddevSampleAssetIdAsc = 'HOLDERS_STDDEV_SAMPLE_ASSET_ID_ASC', + HoldersStddevSampleAssetIdDesc = 'HOLDERS_STDDEV_SAMPLE_ASSET_ID_DESC', + HoldersStddevSampleBlockRangeAsc = 'HOLDERS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + HoldersStddevSampleBlockRangeDesc = 'HOLDERS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + HoldersStddevSampleCreatedAtAsc = 'HOLDERS_STDDEV_SAMPLE_CREATED_AT_ASC', + HoldersStddevSampleCreatedAtDesc = 'HOLDERS_STDDEV_SAMPLE_CREATED_AT_DESC', + HoldersStddevSampleCreatedBlockIdAsc = 'HOLDERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + HoldersStddevSampleCreatedBlockIdDesc = 'HOLDERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + HoldersStddevSampleIdentityIdAsc = 'HOLDERS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + HoldersStddevSampleIdentityIdDesc = 'HOLDERS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + HoldersStddevSampleIdAsc = 'HOLDERS_STDDEV_SAMPLE_ID_ASC', + HoldersStddevSampleIdDesc = 'HOLDERS_STDDEV_SAMPLE_ID_DESC', + HoldersStddevSampleUpdatedBlockIdAsc = 'HOLDERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + HoldersStddevSampleUpdatedBlockIdDesc = 'HOLDERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + HoldersSumAmountAsc = 'HOLDERS_SUM_AMOUNT_ASC', + HoldersSumAmountDesc = 'HOLDERS_SUM_AMOUNT_DESC', + HoldersSumAssetIdAsc = 'HOLDERS_SUM_ASSET_ID_ASC', + HoldersSumAssetIdDesc = 'HOLDERS_SUM_ASSET_ID_DESC', + HoldersSumBlockRangeAsc = 'HOLDERS_SUM_BLOCK_RANGE_ASC', + HoldersSumBlockRangeDesc = 'HOLDERS_SUM_BLOCK_RANGE_DESC', + HoldersSumCreatedAtAsc = 'HOLDERS_SUM_CREATED_AT_ASC', + HoldersSumCreatedAtDesc = 'HOLDERS_SUM_CREATED_AT_DESC', + HoldersSumCreatedBlockIdAsc = 'HOLDERS_SUM_CREATED_BLOCK_ID_ASC', + HoldersSumCreatedBlockIdDesc = 'HOLDERS_SUM_CREATED_BLOCK_ID_DESC', + HoldersSumIdentityIdAsc = 'HOLDERS_SUM_IDENTITY_ID_ASC', + HoldersSumIdentityIdDesc = 'HOLDERS_SUM_IDENTITY_ID_DESC', + HoldersSumIdAsc = 'HOLDERS_SUM_ID_ASC', + HoldersSumIdDesc = 'HOLDERS_SUM_ID_DESC', + HoldersSumUpdatedBlockIdAsc = 'HOLDERS_SUM_UPDATED_BLOCK_ID_ASC', + HoldersSumUpdatedBlockIdDesc = 'HOLDERS_SUM_UPDATED_BLOCK_ID_DESC', + HoldersVariancePopulationAmountAsc = 'HOLDERS_VARIANCE_POPULATION_AMOUNT_ASC', + HoldersVariancePopulationAmountDesc = 'HOLDERS_VARIANCE_POPULATION_AMOUNT_DESC', + HoldersVariancePopulationAssetIdAsc = 'HOLDERS_VARIANCE_POPULATION_ASSET_ID_ASC', + HoldersVariancePopulationAssetIdDesc = 'HOLDERS_VARIANCE_POPULATION_ASSET_ID_DESC', + HoldersVariancePopulationBlockRangeAsc = 'HOLDERS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + HoldersVariancePopulationBlockRangeDesc = 'HOLDERS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + HoldersVariancePopulationCreatedAtAsc = 'HOLDERS_VARIANCE_POPULATION_CREATED_AT_ASC', + HoldersVariancePopulationCreatedAtDesc = 'HOLDERS_VARIANCE_POPULATION_CREATED_AT_DESC', + HoldersVariancePopulationCreatedBlockIdAsc = 'HOLDERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + HoldersVariancePopulationCreatedBlockIdDesc = 'HOLDERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + HoldersVariancePopulationIdentityIdAsc = 'HOLDERS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + HoldersVariancePopulationIdentityIdDesc = 'HOLDERS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + HoldersVariancePopulationIdAsc = 'HOLDERS_VARIANCE_POPULATION_ID_ASC', + HoldersVariancePopulationIdDesc = 'HOLDERS_VARIANCE_POPULATION_ID_DESC', + HoldersVariancePopulationUpdatedBlockIdAsc = 'HOLDERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + HoldersVariancePopulationUpdatedBlockIdDesc = 'HOLDERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + HoldersVarianceSampleAmountAsc = 'HOLDERS_VARIANCE_SAMPLE_AMOUNT_ASC', + HoldersVarianceSampleAmountDesc = 'HOLDERS_VARIANCE_SAMPLE_AMOUNT_DESC', + HoldersVarianceSampleAssetIdAsc = 'HOLDERS_VARIANCE_SAMPLE_ASSET_ID_ASC', + HoldersVarianceSampleAssetIdDesc = 'HOLDERS_VARIANCE_SAMPLE_ASSET_ID_DESC', + HoldersVarianceSampleBlockRangeAsc = 'HOLDERS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + HoldersVarianceSampleBlockRangeDesc = 'HOLDERS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + HoldersVarianceSampleCreatedAtAsc = 'HOLDERS_VARIANCE_SAMPLE_CREATED_AT_ASC', + HoldersVarianceSampleCreatedAtDesc = 'HOLDERS_VARIANCE_SAMPLE_CREATED_AT_DESC', + HoldersVarianceSampleCreatedBlockIdAsc = 'HOLDERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + HoldersVarianceSampleCreatedBlockIdDesc = 'HOLDERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + HoldersVarianceSampleIdentityIdAsc = 'HOLDERS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + HoldersVarianceSampleIdentityIdDesc = 'HOLDERS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + HoldersVarianceSampleIdAsc = 'HOLDERS_VARIANCE_SAMPLE_ID_ASC', + HoldersVarianceSampleIdDesc = 'HOLDERS_VARIANCE_SAMPLE_ID_DESC', + HoldersVarianceSampleUpdatedBlockIdAsc = 'HOLDERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + HoldersVarianceSampleUpdatedBlockIdDesc = 'HOLDERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + IdentifiersAsc = 'IDENTIFIERS_ASC', + IdentifiersDesc = 'IDENTIFIERS_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + IsCompliancePausedAsc = 'IS_COMPLIANCE_PAUSED_ASC', + IsCompliancePausedDesc = 'IS_COMPLIANCE_PAUSED_DESC', + IsDivisibleAsc = 'IS_DIVISIBLE_ASC', + IsDivisibleDesc = 'IS_DIVISIBLE_DESC', + IsFrozenAsc = 'IS_FROZEN_ASC', + IsFrozenDesc = 'IS_FROZEN_DESC', + IsNftCollectionAsc = 'IS_NFT_COLLECTION_ASC', + IsNftCollectionDesc = 'IS_NFT_COLLECTION_DESC', + IsUniquenessRequiredAsc = 'IS_UNIQUENESS_REQUIRED_ASC', + IsUniquenessRequiredDesc = 'IS_UNIQUENESS_REQUIRED_DESC', + MandatoryMediatorsAverageAddedByIdAsc = 'MANDATORY_MEDIATORS_AVERAGE_ADDED_BY_ID_ASC', + MandatoryMediatorsAverageAddedByIdDesc = 'MANDATORY_MEDIATORS_AVERAGE_ADDED_BY_ID_DESC', + MandatoryMediatorsAverageAssetIdAsc = 'MANDATORY_MEDIATORS_AVERAGE_ASSET_ID_ASC', + MandatoryMediatorsAverageAssetIdDesc = 'MANDATORY_MEDIATORS_AVERAGE_ASSET_ID_DESC', + MandatoryMediatorsAverageBlockRangeAsc = 'MANDATORY_MEDIATORS_AVERAGE_BLOCK_RANGE_ASC', + MandatoryMediatorsAverageBlockRangeDesc = 'MANDATORY_MEDIATORS_AVERAGE_BLOCK_RANGE_DESC', + MandatoryMediatorsAverageCreatedAtAsc = 'MANDATORY_MEDIATORS_AVERAGE_CREATED_AT_ASC', + MandatoryMediatorsAverageCreatedAtDesc = 'MANDATORY_MEDIATORS_AVERAGE_CREATED_AT_DESC', + MandatoryMediatorsAverageCreatedBlockIdAsc = 'MANDATORY_MEDIATORS_AVERAGE_CREATED_BLOCK_ID_ASC', + MandatoryMediatorsAverageCreatedBlockIdDesc = 'MANDATORY_MEDIATORS_AVERAGE_CREATED_BLOCK_ID_DESC', + MandatoryMediatorsAverageIdentityIdAsc = 'MANDATORY_MEDIATORS_AVERAGE_IDENTITY_ID_ASC', + MandatoryMediatorsAverageIdentityIdDesc = 'MANDATORY_MEDIATORS_AVERAGE_IDENTITY_ID_DESC', + MandatoryMediatorsAverageIdAsc = 'MANDATORY_MEDIATORS_AVERAGE_ID_ASC', + MandatoryMediatorsAverageIdDesc = 'MANDATORY_MEDIATORS_AVERAGE_ID_DESC', + MandatoryMediatorsAverageUpdatedBlockIdAsc = 'MANDATORY_MEDIATORS_AVERAGE_UPDATED_BLOCK_ID_ASC', + MandatoryMediatorsAverageUpdatedBlockIdDesc = 'MANDATORY_MEDIATORS_AVERAGE_UPDATED_BLOCK_ID_DESC', + MandatoryMediatorsCountAsc = 'MANDATORY_MEDIATORS_COUNT_ASC', + MandatoryMediatorsCountDesc = 'MANDATORY_MEDIATORS_COUNT_DESC', + MandatoryMediatorsDistinctCountAddedByIdAsc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_ADDED_BY_ID_ASC', + MandatoryMediatorsDistinctCountAddedByIdDesc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_ADDED_BY_ID_DESC', + MandatoryMediatorsDistinctCountAssetIdAsc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_ASSET_ID_ASC', + MandatoryMediatorsDistinctCountAssetIdDesc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_ASSET_ID_DESC', + MandatoryMediatorsDistinctCountBlockRangeAsc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MandatoryMediatorsDistinctCountBlockRangeDesc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MandatoryMediatorsDistinctCountCreatedAtAsc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_CREATED_AT_ASC', + MandatoryMediatorsDistinctCountCreatedAtDesc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_CREATED_AT_DESC', + MandatoryMediatorsDistinctCountCreatedBlockIdAsc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MandatoryMediatorsDistinctCountCreatedBlockIdDesc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MandatoryMediatorsDistinctCountIdentityIdAsc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_IDENTITY_ID_ASC', + MandatoryMediatorsDistinctCountIdentityIdDesc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_IDENTITY_ID_DESC', + MandatoryMediatorsDistinctCountIdAsc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_ID_ASC', + MandatoryMediatorsDistinctCountIdDesc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_ID_DESC', + MandatoryMediatorsDistinctCountUpdatedBlockIdAsc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MandatoryMediatorsDistinctCountUpdatedBlockIdDesc = 'MANDATORY_MEDIATORS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MandatoryMediatorsMaxAddedByIdAsc = 'MANDATORY_MEDIATORS_MAX_ADDED_BY_ID_ASC', + MandatoryMediatorsMaxAddedByIdDesc = 'MANDATORY_MEDIATORS_MAX_ADDED_BY_ID_DESC', + MandatoryMediatorsMaxAssetIdAsc = 'MANDATORY_MEDIATORS_MAX_ASSET_ID_ASC', + MandatoryMediatorsMaxAssetIdDesc = 'MANDATORY_MEDIATORS_MAX_ASSET_ID_DESC', + MandatoryMediatorsMaxBlockRangeAsc = 'MANDATORY_MEDIATORS_MAX_BLOCK_RANGE_ASC', + MandatoryMediatorsMaxBlockRangeDesc = 'MANDATORY_MEDIATORS_MAX_BLOCK_RANGE_DESC', + MandatoryMediatorsMaxCreatedAtAsc = 'MANDATORY_MEDIATORS_MAX_CREATED_AT_ASC', + MandatoryMediatorsMaxCreatedAtDesc = 'MANDATORY_MEDIATORS_MAX_CREATED_AT_DESC', + MandatoryMediatorsMaxCreatedBlockIdAsc = 'MANDATORY_MEDIATORS_MAX_CREATED_BLOCK_ID_ASC', + MandatoryMediatorsMaxCreatedBlockIdDesc = 'MANDATORY_MEDIATORS_MAX_CREATED_BLOCK_ID_DESC', + MandatoryMediatorsMaxIdentityIdAsc = 'MANDATORY_MEDIATORS_MAX_IDENTITY_ID_ASC', + MandatoryMediatorsMaxIdentityIdDesc = 'MANDATORY_MEDIATORS_MAX_IDENTITY_ID_DESC', + MandatoryMediatorsMaxIdAsc = 'MANDATORY_MEDIATORS_MAX_ID_ASC', + MandatoryMediatorsMaxIdDesc = 'MANDATORY_MEDIATORS_MAX_ID_DESC', + MandatoryMediatorsMaxUpdatedBlockIdAsc = 'MANDATORY_MEDIATORS_MAX_UPDATED_BLOCK_ID_ASC', + MandatoryMediatorsMaxUpdatedBlockIdDesc = 'MANDATORY_MEDIATORS_MAX_UPDATED_BLOCK_ID_DESC', + MandatoryMediatorsMinAddedByIdAsc = 'MANDATORY_MEDIATORS_MIN_ADDED_BY_ID_ASC', + MandatoryMediatorsMinAddedByIdDesc = 'MANDATORY_MEDIATORS_MIN_ADDED_BY_ID_DESC', + MandatoryMediatorsMinAssetIdAsc = 'MANDATORY_MEDIATORS_MIN_ASSET_ID_ASC', + MandatoryMediatorsMinAssetIdDesc = 'MANDATORY_MEDIATORS_MIN_ASSET_ID_DESC', + MandatoryMediatorsMinBlockRangeAsc = 'MANDATORY_MEDIATORS_MIN_BLOCK_RANGE_ASC', + MandatoryMediatorsMinBlockRangeDesc = 'MANDATORY_MEDIATORS_MIN_BLOCK_RANGE_DESC', + MandatoryMediatorsMinCreatedAtAsc = 'MANDATORY_MEDIATORS_MIN_CREATED_AT_ASC', + MandatoryMediatorsMinCreatedAtDesc = 'MANDATORY_MEDIATORS_MIN_CREATED_AT_DESC', + MandatoryMediatorsMinCreatedBlockIdAsc = 'MANDATORY_MEDIATORS_MIN_CREATED_BLOCK_ID_ASC', + MandatoryMediatorsMinCreatedBlockIdDesc = 'MANDATORY_MEDIATORS_MIN_CREATED_BLOCK_ID_DESC', + MandatoryMediatorsMinIdentityIdAsc = 'MANDATORY_MEDIATORS_MIN_IDENTITY_ID_ASC', + MandatoryMediatorsMinIdentityIdDesc = 'MANDATORY_MEDIATORS_MIN_IDENTITY_ID_DESC', + MandatoryMediatorsMinIdAsc = 'MANDATORY_MEDIATORS_MIN_ID_ASC', + MandatoryMediatorsMinIdDesc = 'MANDATORY_MEDIATORS_MIN_ID_DESC', + MandatoryMediatorsMinUpdatedBlockIdAsc = 'MANDATORY_MEDIATORS_MIN_UPDATED_BLOCK_ID_ASC', + MandatoryMediatorsMinUpdatedBlockIdDesc = 'MANDATORY_MEDIATORS_MIN_UPDATED_BLOCK_ID_DESC', + MandatoryMediatorsStddevPopulationAddedByIdAsc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_ADDED_BY_ID_ASC', + MandatoryMediatorsStddevPopulationAddedByIdDesc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_ADDED_BY_ID_DESC', + MandatoryMediatorsStddevPopulationAssetIdAsc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_ASSET_ID_ASC', + MandatoryMediatorsStddevPopulationAssetIdDesc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_ASSET_ID_DESC', + MandatoryMediatorsStddevPopulationBlockRangeAsc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MandatoryMediatorsStddevPopulationBlockRangeDesc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MandatoryMediatorsStddevPopulationCreatedAtAsc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_CREATED_AT_ASC', + MandatoryMediatorsStddevPopulationCreatedAtDesc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_CREATED_AT_DESC', + MandatoryMediatorsStddevPopulationCreatedBlockIdAsc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MandatoryMediatorsStddevPopulationCreatedBlockIdDesc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MandatoryMediatorsStddevPopulationIdentityIdAsc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_IDENTITY_ID_ASC', + MandatoryMediatorsStddevPopulationIdentityIdDesc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_IDENTITY_ID_DESC', + MandatoryMediatorsStddevPopulationIdAsc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_ID_ASC', + MandatoryMediatorsStddevPopulationIdDesc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_ID_DESC', + MandatoryMediatorsStddevPopulationUpdatedBlockIdAsc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MandatoryMediatorsStddevPopulationUpdatedBlockIdDesc = 'MANDATORY_MEDIATORS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MandatoryMediatorsStddevSampleAddedByIdAsc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_ADDED_BY_ID_ASC', + MandatoryMediatorsStddevSampleAddedByIdDesc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_ADDED_BY_ID_DESC', + MandatoryMediatorsStddevSampleAssetIdAsc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_ASSET_ID_ASC', + MandatoryMediatorsStddevSampleAssetIdDesc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_ASSET_ID_DESC', + MandatoryMediatorsStddevSampleBlockRangeAsc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MandatoryMediatorsStddevSampleBlockRangeDesc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MandatoryMediatorsStddevSampleCreatedAtAsc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_CREATED_AT_ASC', + MandatoryMediatorsStddevSampleCreatedAtDesc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_CREATED_AT_DESC', + MandatoryMediatorsStddevSampleCreatedBlockIdAsc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MandatoryMediatorsStddevSampleCreatedBlockIdDesc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MandatoryMediatorsStddevSampleIdentityIdAsc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + MandatoryMediatorsStddevSampleIdentityIdDesc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + MandatoryMediatorsStddevSampleIdAsc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_ID_ASC', + MandatoryMediatorsStddevSampleIdDesc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_ID_DESC', + MandatoryMediatorsStddevSampleUpdatedBlockIdAsc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MandatoryMediatorsStddevSampleUpdatedBlockIdDesc = 'MANDATORY_MEDIATORS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MandatoryMediatorsSumAddedByIdAsc = 'MANDATORY_MEDIATORS_SUM_ADDED_BY_ID_ASC', + MandatoryMediatorsSumAddedByIdDesc = 'MANDATORY_MEDIATORS_SUM_ADDED_BY_ID_DESC', + MandatoryMediatorsSumAssetIdAsc = 'MANDATORY_MEDIATORS_SUM_ASSET_ID_ASC', + MandatoryMediatorsSumAssetIdDesc = 'MANDATORY_MEDIATORS_SUM_ASSET_ID_DESC', + MandatoryMediatorsSumBlockRangeAsc = 'MANDATORY_MEDIATORS_SUM_BLOCK_RANGE_ASC', + MandatoryMediatorsSumBlockRangeDesc = 'MANDATORY_MEDIATORS_SUM_BLOCK_RANGE_DESC', + MandatoryMediatorsSumCreatedAtAsc = 'MANDATORY_MEDIATORS_SUM_CREATED_AT_ASC', + MandatoryMediatorsSumCreatedAtDesc = 'MANDATORY_MEDIATORS_SUM_CREATED_AT_DESC', + MandatoryMediatorsSumCreatedBlockIdAsc = 'MANDATORY_MEDIATORS_SUM_CREATED_BLOCK_ID_ASC', + MandatoryMediatorsSumCreatedBlockIdDesc = 'MANDATORY_MEDIATORS_SUM_CREATED_BLOCK_ID_DESC', + MandatoryMediatorsSumIdentityIdAsc = 'MANDATORY_MEDIATORS_SUM_IDENTITY_ID_ASC', + MandatoryMediatorsSumIdentityIdDesc = 'MANDATORY_MEDIATORS_SUM_IDENTITY_ID_DESC', + MandatoryMediatorsSumIdAsc = 'MANDATORY_MEDIATORS_SUM_ID_ASC', + MandatoryMediatorsSumIdDesc = 'MANDATORY_MEDIATORS_SUM_ID_DESC', + MandatoryMediatorsSumUpdatedBlockIdAsc = 'MANDATORY_MEDIATORS_SUM_UPDATED_BLOCK_ID_ASC', + MandatoryMediatorsSumUpdatedBlockIdDesc = 'MANDATORY_MEDIATORS_SUM_UPDATED_BLOCK_ID_DESC', + MandatoryMediatorsVariancePopulationAddedByIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_ADDED_BY_ID_ASC', + MandatoryMediatorsVariancePopulationAddedByIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_ADDED_BY_ID_DESC', + MandatoryMediatorsVariancePopulationAssetIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_ASSET_ID_ASC', + MandatoryMediatorsVariancePopulationAssetIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_ASSET_ID_DESC', + MandatoryMediatorsVariancePopulationBlockRangeAsc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MandatoryMediatorsVariancePopulationBlockRangeDesc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MandatoryMediatorsVariancePopulationCreatedAtAsc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_CREATED_AT_ASC', + MandatoryMediatorsVariancePopulationCreatedAtDesc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_CREATED_AT_DESC', + MandatoryMediatorsVariancePopulationCreatedBlockIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MandatoryMediatorsVariancePopulationCreatedBlockIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MandatoryMediatorsVariancePopulationIdentityIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + MandatoryMediatorsVariancePopulationIdentityIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + MandatoryMediatorsVariancePopulationIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_ID_ASC', + MandatoryMediatorsVariancePopulationIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_ID_DESC', + MandatoryMediatorsVariancePopulationUpdatedBlockIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MandatoryMediatorsVariancePopulationUpdatedBlockIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MandatoryMediatorsVarianceSampleAddedByIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_ADDED_BY_ID_ASC', + MandatoryMediatorsVarianceSampleAddedByIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_ADDED_BY_ID_DESC', + MandatoryMediatorsVarianceSampleAssetIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_ASSET_ID_ASC', + MandatoryMediatorsVarianceSampleAssetIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_ASSET_ID_DESC', + MandatoryMediatorsVarianceSampleBlockRangeAsc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MandatoryMediatorsVarianceSampleBlockRangeDesc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MandatoryMediatorsVarianceSampleCreatedAtAsc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_CREATED_AT_ASC', + MandatoryMediatorsVarianceSampleCreatedAtDesc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_CREATED_AT_DESC', + MandatoryMediatorsVarianceSampleCreatedBlockIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MandatoryMediatorsVarianceSampleCreatedBlockIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MandatoryMediatorsVarianceSampleIdentityIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + MandatoryMediatorsVarianceSampleIdentityIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + MandatoryMediatorsVarianceSampleIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_ID_ASC', + MandatoryMediatorsVarianceSampleIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_ID_DESC', + MandatoryMediatorsVarianceSampleUpdatedBlockIdAsc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MandatoryMediatorsVarianceSampleUpdatedBlockIdDesc = 'MANDATORY_MEDIATORS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + NameAsc = 'NAME_ASC', + NameDesc = 'NAME_DESC', + Natural = 'NATURAL', + NftHoldersAverageAssetIdAsc = 'NFT_HOLDERS_AVERAGE_ASSET_ID_ASC', + NftHoldersAverageAssetIdDesc = 'NFT_HOLDERS_AVERAGE_ASSET_ID_DESC', + NftHoldersAverageBlockRangeAsc = 'NFT_HOLDERS_AVERAGE_BLOCK_RANGE_ASC', + NftHoldersAverageBlockRangeDesc = 'NFT_HOLDERS_AVERAGE_BLOCK_RANGE_DESC', + NftHoldersAverageCreatedAtAsc = 'NFT_HOLDERS_AVERAGE_CREATED_AT_ASC', + NftHoldersAverageCreatedAtDesc = 'NFT_HOLDERS_AVERAGE_CREATED_AT_DESC', + NftHoldersAverageCreatedBlockIdAsc = 'NFT_HOLDERS_AVERAGE_CREATED_BLOCK_ID_ASC', + NftHoldersAverageCreatedBlockIdDesc = 'NFT_HOLDERS_AVERAGE_CREATED_BLOCK_ID_DESC', + NftHoldersAverageIdentityIdAsc = 'NFT_HOLDERS_AVERAGE_IDENTITY_ID_ASC', + NftHoldersAverageIdentityIdDesc = 'NFT_HOLDERS_AVERAGE_IDENTITY_ID_DESC', + NftHoldersAverageIdAsc = 'NFT_HOLDERS_AVERAGE_ID_ASC', + NftHoldersAverageIdDesc = 'NFT_HOLDERS_AVERAGE_ID_DESC', + NftHoldersAverageNftIdsAsc = 'NFT_HOLDERS_AVERAGE_NFT_IDS_ASC', + NftHoldersAverageNftIdsDesc = 'NFT_HOLDERS_AVERAGE_NFT_IDS_DESC', + NftHoldersAverageUpdatedBlockIdAsc = 'NFT_HOLDERS_AVERAGE_UPDATED_BLOCK_ID_ASC', + NftHoldersAverageUpdatedBlockIdDesc = 'NFT_HOLDERS_AVERAGE_UPDATED_BLOCK_ID_DESC', + NftHoldersCountAsc = 'NFT_HOLDERS_COUNT_ASC', + NftHoldersCountDesc = 'NFT_HOLDERS_COUNT_DESC', + NftHoldersDistinctCountAssetIdAsc = 'NFT_HOLDERS_DISTINCT_COUNT_ASSET_ID_ASC', + NftHoldersDistinctCountAssetIdDesc = 'NFT_HOLDERS_DISTINCT_COUNT_ASSET_ID_DESC', + NftHoldersDistinctCountBlockRangeAsc = 'NFT_HOLDERS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + NftHoldersDistinctCountBlockRangeDesc = 'NFT_HOLDERS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + NftHoldersDistinctCountCreatedAtAsc = 'NFT_HOLDERS_DISTINCT_COUNT_CREATED_AT_ASC', + NftHoldersDistinctCountCreatedAtDesc = 'NFT_HOLDERS_DISTINCT_COUNT_CREATED_AT_DESC', + NftHoldersDistinctCountCreatedBlockIdAsc = 'NFT_HOLDERS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + NftHoldersDistinctCountCreatedBlockIdDesc = 'NFT_HOLDERS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + NftHoldersDistinctCountIdentityIdAsc = 'NFT_HOLDERS_DISTINCT_COUNT_IDENTITY_ID_ASC', + NftHoldersDistinctCountIdentityIdDesc = 'NFT_HOLDERS_DISTINCT_COUNT_IDENTITY_ID_DESC', + NftHoldersDistinctCountIdAsc = 'NFT_HOLDERS_DISTINCT_COUNT_ID_ASC', + NftHoldersDistinctCountIdDesc = 'NFT_HOLDERS_DISTINCT_COUNT_ID_DESC', + NftHoldersDistinctCountNftIdsAsc = 'NFT_HOLDERS_DISTINCT_COUNT_NFT_IDS_ASC', + NftHoldersDistinctCountNftIdsDesc = 'NFT_HOLDERS_DISTINCT_COUNT_NFT_IDS_DESC', + NftHoldersDistinctCountUpdatedBlockIdAsc = 'NFT_HOLDERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + NftHoldersDistinctCountUpdatedBlockIdDesc = 'NFT_HOLDERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + NftHoldersMaxAssetIdAsc = 'NFT_HOLDERS_MAX_ASSET_ID_ASC', + NftHoldersMaxAssetIdDesc = 'NFT_HOLDERS_MAX_ASSET_ID_DESC', + NftHoldersMaxBlockRangeAsc = 'NFT_HOLDERS_MAX_BLOCK_RANGE_ASC', + NftHoldersMaxBlockRangeDesc = 'NFT_HOLDERS_MAX_BLOCK_RANGE_DESC', + NftHoldersMaxCreatedAtAsc = 'NFT_HOLDERS_MAX_CREATED_AT_ASC', + NftHoldersMaxCreatedAtDesc = 'NFT_HOLDERS_MAX_CREATED_AT_DESC', + NftHoldersMaxCreatedBlockIdAsc = 'NFT_HOLDERS_MAX_CREATED_BLOCK_ID_ASC', + NftHoldersMaxCreatedBlockIdDesc = 'NFT_HOLDERS_MAX_CREATED_BLOCK_ID_DESC', + NftHoldersMaxIdentityIdAsc = 'NFT_HOLDERS_MAX_IDENTITY_ID_ASC', + NftHoldersMaxIdentityIdDesc = 'NFT_HOLDERS_MAX_IDENTITY_ID_DESC', + NftHoldersMaxIdAsc = 'NFT_HOLDERS_MAX_ID_ASC', + NftHoldersMaxIdDesc = 'NFT_HOLDERS_MAX_ID_DESC', + NftHoldersMaxNftIdsAsc = 'NFT_HOLDERS_MAX_NFT_IDS_ASC', + NftHoldersMaxNftIdsDesc = 'NFT_HOLDERS_MAX_NFT_IDS_DESC', + NftHoldersMaxUpdatedBlockIdAsc = 'NFT_HOLDERS_MAX_UPDATED_BLOCK_ID_ASC', + NftHoldersMaxUpdatedBlockIdDesc = 'NFT_HOLDERS_MAX_UPDATED_BLOCK_ID_DESC', + NftHoldersMinAssetIdAsc = 'NFT_HOLDERS_MIN_ASSET_ID_ASC', + NftHoldersMinAssetIdDesc = 'NFT_HOLDERS_MIN_ASSET_ID_DESC', + NftHoldersMinBlockRangeAsc = 'NFT_HOLDERS_MIN_BLOCK_RANGE_ASC', + NftHoldersMinBlockRangeDesc = 'NFT_HOLDERS_MIN_BLOCK_RANGE_DESC', + NftHoldersMinCreatedAtAsc = 'NFT_HOLDERS_MIN_CREATED_AT_ASC', + NftHoldersMinCreatedAtDesc = 'NFT_HOLDERS_MIN_CREATED_AT_DESC', + NftHoldersMinCreatedBlockIdAsc = 'NFT_HOLDERS_MIN_CREATED_BLOCK_ID_ASC', + NftHoldersMinCreatedBlockIdDesc = 'NFT_HOLDERS_MIN_CREATED_BLOCK_ID_DESC', + NftHoldersMinIdentityIdAsc = 'NFT_HOLDERS_MIN_IDENTITY_ID_ASC', + NftHoldersMinIdentityIdDesc = 'NFT_HOLDERS_MIN_IDENTITY_ID_DESC', + NftHoldersMinIdAsc = 'NFT_HOLDERS_MIN_ID_ASC', + NftHoldersMinIdDesc = 'NFT_HOLDERS_MIN_ID_DESC', + NftHoldersMinNftIdsAsc = 'NFT_HOLDERS_MIN_NFT_IDS_ASC', + NftHoldersMinNftIdsDesc = 'NFT_HOLDERS_MIN_NFT_IDS_DESC', + NftHoldersMinUpdatedBlockIdAsc = 'NFT_HOLDERS_MIN_UPDATED_BLOCK_ID_ASC', + NftHoldersMinUpdatedBlockIdDesc = 'NFT_HOLDERS_MIN_UPDATED_BLOCK_ID_DESC', + NftHoldersStddevPopulationAssetIdAsc = 'NFT_HOLDERS_STDDEV_POPULATION_ASSET_ID_ASC', + NftHoldersStddevPopulationAssetIdDesc = 'NFT_HOLDERS_STDDEV_POPULATION_ASSET_ID_DESC', + NftHoldersStddevPopulationBlockRangeAsc = 'NFT_HOLDERS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + NftHoldersStddevPopulationBlockRangeDesc = 'NFT_HOLDERS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + NftHoldersStddevPopulationCreatedAtAsc = 'NFT_HOLDERS_STDDEV_POPULATION_CREATED_AT_ASC', + NftHoldersStddevPopulationCreatedAtDesc = 'NFT_HOLDERS_STDDEV_POPULATION_CREATED_AT_DESC', + NftHoldersStddevPopulationCreatedBlockIdAsc = 'NFT_HOLDERS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + NftHoldersStddevPopulationCreatedBlockIdDesc = 'NFT_HOLDERS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + NftHoldersStddevPopulationIdentityIdAsc = 'NFT_HOLDERS_STDDEV_POPULATION_IDENTITY_ID_ASC', + NftHoldersStddevPopulationIdentityIdDesc = 'NFT_HOLDERS_STDDEV_POPULATION_IDENTITY_ID_DESC', + NftHoldersStddevPopulationIdAsc = 'NFT_HOLDERS_STDDEV_POPULATION_ID_ASC', + NftHoldersStddevPopulationIdDesc = 'NFT_HOLDERS_STDDEV_POPULATION_ID_DESC', + NftHoldersStddevPopulationNftIdsAsc = 'NFT_HOLDERS_STDDEV_POPULATION_NFT_IDS_ASC', + NftHoldersStddevPopulationNftIdsDesc = 'NFT_HOLDERS_STDDEV_POPULATION_NFT_IDS_DESC', + NftHoldersStddevPopulationUpdatedBlockIdAsc = 'NFT_HOLDERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + NftHoldersStddevPopulationUpdatedBlockIdDesc = 'NFT_HOLDERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + NftHoldersStddevSampleAssetIdAsc = 'NFT_HOLDERS_STDDEV_SAMPLE_ASSET_ID_ASC', + NftHoldersStddevSampleAssetIdDesc = 'NFT_HOLDERS_STDDEV_SAMPLE_ASSET_ID_DESC', + NftHoldersStddevSampleBlockRangeAsc = 'NFT_HOLDERS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + NftHoldersStddevSampleBlockRangeDesc = 'NFT_HOLDERS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + NftHoldersStddevSampleCreatedAtAsc = 'NFT_HOLDERS_STDDEV_SAMPLE_CREATED_AT_ASC', + NftHoldersStddevSampleCreatedAtDesc = 'NFT_HOLDERS_STDDEV_SAMPLE_CREATED_AT_DESC', + NftHoldersStddevSampleCreatedBlockIdAsc = 'NFT_HOLDERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + NftHoldersStddevSampleCreatedBlockIdDesc = 'NFT_HOLDERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + NftHoldersStddevSampleIdentityIdAsc = 'NFT_HOLDERS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + NftHoldersStddevSampleIdentityIdDesc = 'NFT_HOLDERS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + NftHoldersStddevSampleIdAsc = 'NFT_HOLDERS_STDDEV_SAMPLE_ID_ASC', + NftHoldersStddevSampleIdDesc = 'NFT_HOLDERS_STDDEV_SAMPLE_ID_DESC', + NftHoldersStddevSampleNftIdsAsc = 'NFT_HOLDERS_STDDEV_SAMPLE_NFT_IDS_ASC', + NftHoldersStddevSampleNftIdsDesc = 'NFT_HOLDERS_STDDEV_SAMPLE_NFT_IDS_DESC', + NftHoldersStddevSampleUpdatedBlockIdAsc = 'NFT_HOLDERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + NftHoldersStddevSampleUpdatedBlockIdDesc = 'NFT_HOLDERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + NftHoldersSumAssetIdAsc = 'NFT_HOLDERS_SUM_ASSET_ID_ASC', + NftHoldersSumAssetIdDesc = 'NFT_HOLDERS_SUM_ASSET_ID_DESC', + NftHoldersSumBlockRangeAsc = 'NFT_HOLDERS_SUM_BLOCK_RANGE_ASC', + NftHoldersSumBlockRangeDesc = 'NFT_HOLDERS_SUM_BLOCK_RANGE_DESC', + NftHoldersSumCreatedAtAsc = 'NFT_HOLDERS_SUM_CREATED_AT_ASC', + NftHoldersSumCreatedAtDesc = 'NFT_HOLDERS_SUM_CREATED_AT_DESC', + NftHoldersSumCreatedBlockIdAsc = 'NFT_HOLDERS_SUM_CREATED_BLOCK_ID_ASC', + NftHoldersSumCreatedBlockIdDesc = 'NFT_HOLDERS_SUM_CREATED_BLOCK_ID_DESC', + NftHoldersSumIdentityIdAsc = 'NFT_HOLDERS_SUM_IDENTITY_ID_ASC', + NftHoldersSumIdentityIdDesc = 'NFT_HOLDERS_SUM_IDENTITY_ID_DESC', + NftHoldersSumIdAsc = 'NFT_HOLDERS_SUM_ID_ASC', + NftHoldersSumIdDesc = 'NFT_HOLDERS_SUM_ID_DESC', + NftHoldersSumNftIdsAsc = 'NFT_HOLDERS_SUM_NFT_IDS_ASC', + NftHoldersSumNftIdsDesc = 'NFT_HOLDERS_SUM_NFT_IDS_DESC', + NftHoldersSumUpdatedBlockIdAsc = 'NFT_HOLDERS_SUM_UPDATED_BLOCK_ID_ASC', + NftHoldersSumUpdatedBlockIdDesc = 'NFT_HOLDERS_SUM_UPDATED_BLOCK_ID_DESC', + NftHoldersVariancePopulationAssetIdAsc = 'NFT_HOLDERS_VARIANCE_POPULATION_ASSET_ID_ASC', + NftHoldersVariancePopulationAssetIdDesc = 'NFT_HOLDERS_VARIANCE_POPULATION_ASSET_ID_DESC', + NftHoldersVariancePopulationBlockRangeAsc = 'NFT_HOLDERS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + NftHoldersVariancePopulationBlockRangeDesc = 'NFT_HOLDERS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + NftHoldersVariancePopulationCreatedAtAsc = 'NFT_HOLDERS_VARIANCE_POPULATION_CREATED_AT_ASC', + NftHoldersVariancePopulationCreatedAtDesc = 'NFT_HOLDERS_VARIANCE_POPULATION_CREATED_AT_DESC', + NftHoldersVariancePopulationCreatedBlockIdAsc = 'NFT_HOLDERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + NftHoldersVariancePopulationCreatedBlockIdDesc = 'NFT_HOLDERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + NftHoldersVariancePopulationIdentityIdAsc = 'NFT_HOLDERS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + NftHoldersVariancePopulationIdentityIdDesc = 'NFT_HOLDERS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + NftHoldersVariancePopulationIdAsc = 'NFT_HOLDERS_VARIANCE_POPULATION_ID_ASC', + NftHoldersVariancePopulationIdDesc = 'NFT_HOLDERS_VARIANCE_POPULATION_ID_DESC', + NftHoldersVariancePopulationNftIdsAsc = 'NFT_HOLDERS_VARIANCE_POPULATION_NFT_IDS_ASC', + NftHoldersVariancePopulationNftIdsDesc = 'NFT_HOLDERS_VARIANCE_POPULATION_NFT_IDS_DESC', + NftHoldersVariancePopulationUpdatedBlockIdAsc = 'NFT_HOLDERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + NftHoldersVariancePopulationUpdatedBlockIdDesc = 'NFT_HOLDERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + NftHoldersVarianceSampleAssetIdAsc = 'NFT_HOLDERS_VARIANCE_SAMPLE_ASSET_ID_ASC', + NftHoldersVarianceSampleAssetIdDesc = 'NFT_HOLDERS_VARIANCE_SAMPLE_ASSET_ID_DESC', + NftHoldersVarianceSampleBlockRangeAsc = 'NFT_HOLDERS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + NftHoldersVarianceSampleBlockRangeDesc = 'NFT_HOLDERS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + NftHoldersVarianceSampleCreatedAtAsc = 'NFT_HOLDERS_VARIANCE_SAMPLE_CREATED_AT_ASC', + NftHoldersVarianceSampleCreatedAtDesc = 'NFT_HOLDERS_VARIANCE_SAMPLE_CREATED_AT_DESC', + NftHoldersVarianceSampleCreatedBlockIdAsc = 'NFT_HOLDERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + NftHoldersVarianceSampleCreatedBlockIdDesc = 'NFT_HOLDERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + NftHoldersVarianceSampleIdentityIdAsc = 'NFT_HOLDERS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + NftHoldersVarianceSampleIdentityIdDesc = 'NFT_HOLDERS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + NftHoldersVarianceSampleIdAsc = 'NFT_HOLDERS_VARIANCE_SAMPLE_ID_ASC', + NftHoldersVarianceSampleIdDesc = 'NFT_HOLDERS_VARIANCE_SAMPLE_ID_DESC', + NftHoldersVarianceSampleNftIdsAsc = 'NFT_HOLDERS_VARIANCE_SAMPLE_NFT_IDS_ASC', + NftHoldersVarianceSampleNftIdsDesc = 'NFT_HOLDERS_VARIANCE_SAMPLE_NFT_IDS_DESC', + NftHoldersVarianceSampleUpdatedBlockIdAsc = 'NFT_HOLDERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + NftHoldersVarianceSampleUpdatedBlockIdDesc = 'NFT_HOLDERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + OwnerIdAsc = 'OWNER_ID_ASC', + OwnerIdDesc = 'OWNER_ID_DESC', + PortfolioMovementsAverageAddressAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_ADDRESS_ASC', + PortfolioMovementsAverageAddressDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_ADDRESS_DESC', + PortfolioMovementsAverageAmountAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_AMOUNT_ASC', + PortfolioMovementsAverageAmountDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_AMOUNT_DESC', + PortfolioMovementsAverageAssetIdAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_ASSET_ID_ASC', + PortfolioMovementsAverageAssetIdDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_ASSET_ID_DESC', + PortfolioMovementsAverageBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_BLOCK_RANGE_ASC', + PortfolioMovementsAverageBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_BLOCK_RANGE_DESC', + PortfolioMovementsAverageCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_CREATED_AT_ASC', + PortfolioMovementsAverageCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_CREATED_AT_DESC', + PortfolioMovementsAverageCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsAverageCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsAverageFromIdAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_FROM_ID_ASC', + PortfolioMovementsAverageFromIdDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_FROM_ID_DESC', + PortfolioMovementsAverageIdAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_ID_ASC', + PortfolioMovementsAverageIdDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_ID_DESC', + PortfolioMovementsAverageMemoAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_MEMO_ASC', + PortfolioMovementsAverageMemoDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_MEMO_DESC', + PortfolioMovementsAverageNftIdsAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_NFT_IDS_ASC', + PortfolioMovementsAverageNftIdsDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_NFT_IDS_DESC', + PortfolioMovementsAverageToIdAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_TO_ID_ASC', + PortfolioMovementsAverageToIdDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_TO_ID_DESC', + PortfolioMovementsAverageTypeAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_TYPE_ASC', + PortfolioMovementsAverageTypeDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_TYPE_DESC', + PortfolioMovementsAverageUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_AVERAGE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsAverageUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_AVERAGE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsCountAsc = 'PORTFOLIO_MOVEMENTS_COUNT_ASC', + PortfolioMovementsCountDesc = 'PORTFOLIO_MOVEMENTS_COUNT_DESC', + PortfolioMovementsDistinctCountAddressAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_ADDRESS_ASC', + PortfolioMovementsDistinctCountAddressDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_ADDRESS_DESC', + PortfolioMovementsDistinctCountAmountAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_AMOUNT_ASC', + PortfolioMovementsDistinctCountAmountDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_AMOUNT_DESC', + PortfolioMovementsDistinctCountAssetIdAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_ASSET_ID_ASC', + PortfolioMovementsDistinctCountAssetIdDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_ASSET_ID_DESC', + PortfolioMovementsDistinctCountBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PortfolioMovementsDistinctCountBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PortfolioMovementsDistinctCountCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_CREATED_AT_ASC', + PortfolioMovementsDistinctCountCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_CREATED_AT_DESC', + PortfolioMovementsDistinctCountCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PortfolioMovementsDistinctCountCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PortfolioMovementsDistinctCountFromIdAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_FROM_ID_ASC', + PortfolioMovementsDistinctCountFromIdDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_FROM_ID_DESC', + PortfolioMovementsDistinctCountIdAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_ID_ASC', + PortfolioMovementsDistinctCountIdDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_ID_DESC', + PortfolioMovementsDistinctCountMemoAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_MEMO_ASC', + PortfolioMovementsDistinctCountMemoDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_MEMO_DESC', + PortfolioMovementsDistinctCountNftIdsAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_NFT_IDS_ASC', + PortfolioMovementsDistinctCountNftIdsDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_NFT_IDS_DESC', + PortfolioMovementsDistinctCountToIdAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_TO_ID_ASC', + PortfolioMovementsDistinctCountToIdDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_TO_ID_DESC', + PortfolioMovementsDistinctCountTypeAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_TYPE_ASC', + PortfolioMovementsDistinctCountTypeDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_TYPE_DESC', + PortfolioMovementsDistinctCountUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsDistinctCountUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsMaxAddressAsc = 'PORTFOLIO_MOVEMENTS_MAX_ADDRESS_ASC', + PortfolioMovementsMaxAddressDesc = 'PORTFOLIO_MOVEMENTS_MAX_ADDRESS_DESC', + PortfolioMovementsMaxAmountAsc = 'PORTFOLIO_MOVEMENTS_MAX_AMOUNT_ASC', + PortfolioMovementsMaxAmountDesc = 'PORTFOLIO_MOVEMENTS_MAX_AMOUNT_DESC', + PortfolioMovementsMaxAssetIdAsc = 'PORTFOLIO_MOVEMENTS_MAX_ASSET_ID_ASC', + PortfolioMovementsMaxAssetIdDesc = 'PORTFOLIO_MOVEMENTS_MAX_ASSET_ID_DESC', + PortfolioMovementsMaxBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_MAX_BLOCK_RANGE_ASC', + PortfolioMovementsMaxBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_MAX_BLOCK_RANGE_DESC', + PortfolioMovementsMaxCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_MAX_CREATED_AT_ASC', + PortfolioMovementsMaxCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_MAX_CREATED_AT_DESC', + PortfolioMovementsMaxCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_MAX_CREATED_BLOCK_ID_ASC', + PortfolioMovementsMaxCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_MAX_CREATED_BLOCK_ID_DESC', + PortfolioMovementsMaxFromIdAsc = 'PORTFOLIO_MOVEMENTS_MAX_FROM_ID_ASC', + PortfolioMovementsMaxFromIdDesc = 'PORTFOLIO_MOVEMENTS_MAX_FROM_ID_DESC', + PortfolioMovementsMaxIdAsc = 'PORTFOLIO_MOVEMENTS_MAX_ID_ASC', + PortfolioMovementsMaxIdDesc = 'PORTFOLIO_MOVEMENTS_MAX_ID_DESC', + PortfolioMovementsMaxMemoAsc = 'PORTFOLIO_MOVEMENTS_MAX_MEMO_ASC', + PortfolioMovementsMaxMemoDesc = 'PORTFOLIO_MOVEMENTS_MAX_MEMO_DESC', + PortfolioMovementsMaxNftIdsAsc = 'PORTFOLIO_MOVEMENTS_MAX_NFT_IDS_ASC', + PortfolioMovementsMaxNftIdsDesc = 'PORTFOLIO_MOVEMENTS_MAX_NFT_IDS_DESC', + PortfolioMovementsMaxToIdAsc = 'PORTFOLIO_MOVEMENTS_MAX_TO_ID_ASC', + PortfolioMovementsMaxToIdDesc = 'PORTFOLIO_MOVEMENTS_MAX_TO_ID_DESC', + PortfolioMovementsMaxTypeAsc = 'PORTFOLIO_MOVEMENTS_MAX_TYPE_ASC', + PortfolioMovementsMaxTypeDesc = 'PORTFOLIO_MOVEMENTS_MAX_TYPE_DESC', + PortfolioMovementsMaxUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_MAX_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsMaxUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_MAX_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsMinAddressAsc = 'PORTFOLIO_MOVEMENTS_MIN_ADDRESS_ASC', + PortfolioMovementsMinAddressDesc = 'PORTFOLIO_MOVEMENTS_MIN_ADDRESS_DESC', + PortfolioMovementsMinAmountAsc = 'PORTFOLIO_MOVEMENTS_MIN_AMOUNT_ASC', + PortfolioMovementsMinAmountDesc = 'PORTFOLIO_MOVEMENTS_MIN_AMOUNT_DESC', + PortfolioMovementsMinAssetIdAsc = 'PORTFOLIO_MOVEMENTS_MIN_ASSET_ID_ASC', + PortfolioMovementsMinAssetIdDesc = 'PORTFOLIO_MOVEMENTS_MIN_ASSET_ID_DESC', + PortfolioMovementsMinBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_MIN_BLOCK_RANGE_ASC', + PortfolioMovementsMinBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_MIN_BLOCK_RANGE_DESC', + PortfolioMovementsMinCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_MIN_CREATED_AT_ASC', + PortfolioMovementsMinCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_MIN_CREATED_AT_DESC', + PortfolioMovementsMinCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_MIN_CREATED_BLOCK_ID_ASC', + PortfolioMovementsMinCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_MIN_CREATED_BLOCK_ID_DESC', + PortfolioMovementsMinFromIdAsc = 'PORTFOLIO_MOVEMENTS_MIN_FROM_ID_ASC', + PortfolioMovementsMinFromIdDesc = 'PORTFOLIO_MOVEMENTS_MIN_FROM_ID_DESC', + PortfolioMovementsMinIdAsc = 'PORTFOLIO_MOVEMENTS_MIN_ID_ASC', + PortfolioMovementsMinIdDesc = 'PORTFOLIO_MOVEMENTS_MIN_ID_DESC', + PortfolioMovementsMinMemoAsc = 'PORTFOLIO_MOVEMENTS_MIN_MEMO_ASC', + PortfolioMovementsMinMemoDesc = 'PORTFOLIO_MOVEMENTS_MIN_MEMO_DESC', + PortfolioMovementsMinNftIdsAsc = 'PORTFOLIO_MOVEMENTS_MIN_NFT_IDS_ASC', + PortfolioMovementsMinNftIdsDesc = 'PORTFOLIO_MOVEMENTS_MIN_NFT_IDS_DESC', + PortfolioMovementsMinToIdAsc = 'PORTFOLIO_MOVEMENTS_MIN_TO_ID_ASC', + PortfolioMovementsMinToIdDesc = 'PORTFOLIO_MOVEMENTS_MIN_TO_ID_DESC', + PortfolioMovementsMinTypeAsc = 'PORTFOLIO_MOVEMENTS_MIN_TYPE_ASC', + PortfolioMovementsMinTypeDesc = 'PORTFOLIO_MOVEMENTS_MIN_TYPE_DESC', + PortfolioMovementsMinUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_MIN_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsMinUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_MIN_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsStddevPopulationAddressAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_ADDRESS_ASC', + PortfolioMovementsStddevPopulationAddressDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_ADDRESS_DESC', + PortfolioMovementsStddevPopulationAmountAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_AMOUNT_ASC', + PortfolioMovementsStddevPopulationAmountDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_AMOUNT_DESC', + PortfolioMovementsStddevPopulationAssetIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_ASSET_ID_ASC', + PortfolioMovementsStddevPopulationAssetIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_ASSET_ID_DESC', + PortfolioMovementsStddevPopulationBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PortfolioMovementsStddevPopulationBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PortfolioMovementsStddevPopulationCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_CREATED_AT_ASC', + PortfolioMovementsStddevPopulationCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_CREATED_AT_DESC', + PortfolioMovementsStddevPopulationCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PortfolioMovementsStddevPopulationCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PortfolioMovementsStddevPopulationFromIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_FROM_ID_ASC', + PortfolioMovementsStddevPopulationFromIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_FROM_ID_DESC', + PortfolioMovementsStddevPopulationIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_ID_ASC', + PortfolioMovementsStddevPopulationIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_ID_DESC', + PortfolioMovementsStddevPopulationMemoAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_MEMO_ASC', + PortfolioMovementsStddevPopulationMemoDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_MEMO_DESC', + PortfolioMovementsStddevPopulationNftIdsAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_NFT_IDS_ASC', + PortfolioMovementsStddevPopulationNftIdsDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_NFT_IDS_DESC', + PortfolioMovementsStddevPopulationToIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_TO_ID_ASC', + PortfolioMovementsStddevPopulationToIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_TO_ID_DESC', + PortfolioMovementsStddevPopulationTypeAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_TYPE_ASC', + PortfolioMovementsStddevPopulationTypeDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_TYPE_DESC', + PortfolioMovementsStddevPopulationUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsStddevPopulationUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsStddevSampleAddressAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_ADDRESS_ASC', + PortfolioMovementsStddevSampleAddressDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_ADDRESS_DESC', + PortfolioMovementsStddevSampleAmountAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_AMOUNT_ASC', + PortfolioMovementsStddevSampleAmountDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_AMOUNT_DESC', + PortfolioMovementsStddevSampleAssetIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_ASSET_ID_ASC', + PortfolioMovementsStddevSampleAssetIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_ASSET_ID_DESC', + PortfolioMovementsStddevSampleBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PortfolioMovementsStddevSampleBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PortfolioMovementsStddevSampleCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_CREATED_AT_ASC', + PortfolioMovementsStddevSampleCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_CREATED_AT_DESC', + PortfolioMovementsStddevSampleCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsStddevSampleCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsStddevSampleFromIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_FROM_ID_ASC', + PortfolioMovementsStddevSampleFromIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_FROM_ID_DESC', + PortfolioMovementsStddevSampleIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_ID_ASC', + PortfolioMovementsStddevSampleIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_ID_DESC', + PortfolioMovementsStddevSampleMemoAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_MEMO_ASC', + PortfolioMovementsStddevSampleMemoDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_MEMO_DESC', + PortfolioMovementsStddevSampleNftIdsAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_NFT_IDS_ASC', + PortfolioMovementsStddevSampleNftIdsDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_NFT_IDS_DESC', + PortfolioMovementsStddevSampleToIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_TO_ID_ASC', + PortfolioMovementsStddevSampleToIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_TO_ID_DESC', + PortfolioMovementsStddevSampleTypeAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_TYPE_ASC', + PortfolioMovementsStddevSampleTypeDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_TYPE_DESC', + PortfolioMovementsStddevSampleUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsStddevSampleUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsSumAddressAsc = 'PORTFOLIO_MOVEMENTS_SUM_ADDRESS_ASC', + PortfolioMovementsSumAddressDesc = 'PORTFOLIO_MOVEMENTS_SUM_ADDRESS_DESC', + PortfolioMovementsSumAmountAsc = 'PORTFOLIO_MOVEMENTS_SUM_AMOUNT_ASC', + PortfolioMovementsSumAmountDesc = 'PORTFOLIO_MOVEMENTS_SUM_AMOUNT_DESC', + PortfolioMovementsSumAssetIdAsc = 'PORTFOLIO_MOVEMENTS_SUM_ASSET_ID_ASC', + PortfolioMovementsSumAssetIdDesc = 'PORTFOLIO_MOVEMENTS_SUM_ASSET_ID_DESC', + PortfolioMovementsSumBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_SUM_BLOCK_RANGE_ASC', + PortfolioMovementsSumBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_SUM_BLOCK_RANGE_DESC', + PortfolioMovementsSumCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_SUM_CREATED_AT_ASC', + PortfolioMovementsSumCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_SUM_CREATED_AT_DESC', + PortfolioMovementsSumCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_SUM_CREATED_BLOCK_ID_ASC', + PortfolioMovementsSumCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_SUM_CREATED_BLOCK_ID_DESC', + PortfolioMovementsSumFromIdAsc = 'PORTFOLIO_MOVEMENTS_SUM_FROM_ID_ASC', + PortfolioMovementsSumFromIdDesc = 'PORTFOLIO_MOVEMENTS_SUM_FROM_ID_DESC', + PortfolioMovementsSumIdAsc = 'PORTFOLIO_MOVEMENTS_SUM_ID_ASC', + PortfolioMovementsSumIdDesc = 'PORTFOLIO_MOVEMENTS_SUM_ID_DESC', + PortfolioMovementsSumMemoAsc = 'PORTFOLIO_MOVEMENTS_SUM_MEMO_ASC', + PortfolioMovementsSumMemoDesc = 'PORTFOLIO_MOVEMENTS_SUM_MEMO_DESC', + PortfolioMovementsSumNftIdsAsc = 'PORTFOLIO_MOVEMENTS_SUM_NFT_IDS_ASC', + PortfolioMovementsSumNftIdsDesc = 'PORTFOLIO_MOVEMENTS_SUM_NFT_IDS_DESC', + PortfolioMovementsSumToIdAsc = 'PORTFOLIO_MOVEMENTS_SUM_TO_ID_ASC', + PortfolioMovementsSumToIdDesc = 'PORTFOLIO_MOVEMENTS_SUM_TO_ID_DESC', + PortfolioMovementsSumTypeAsc = 'PORTFOLIO_MOVEMENTS_SUM_TYPE_ASC', + PortfolioMovementsSumTypeDesc = 'PORTFOLIO_MOVEMENTS_SUM_TYPE_DESC', + PortfolioMovementsSumUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_SUM_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsSumUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_SUM_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsVariancePopulationAddressAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_ADDRESS_ASC', + PortfolioMovementsVariancePopulationAddressDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_ADDRESS_DESC', + PortfolioMovementsVariancePopulationAmountAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_AMOUNT_ASC', + PortfolioMovementsVariancePopulationAmountDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_AMOUNT_DESC', + PortfolioMovementsVariancePopulationAssetIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_ASSET_ID_ASC', + PortfolioMovementsVariancePopulationAssetIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_ASSET_ID_DESC', + PortfolioMovementsVariancePopulationBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PortfolioMovementsVariancePopulationBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PortfolioMovementsVariancePopulationCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_CREATED_AT_ASC', + PortfolioMovementsVariancePopulationCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_CREATED_AT_DESC', + PortfolioMovementsVariancePopulationCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PortfolioMovementsVariancePopulationCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PortfolioMovementsVariancePopulationFromIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_FROM_ID_ASC', + PortfolioMovementsVariancePopulationFromIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_FROM_ID_DESC', + PortfolioMovementsVariancePopulationIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_ID_ASC', + PortfolioMovementsVariancePopulationIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_ID_DESC', + PortfolioMovementsVariancePopulationMemoAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_MEMO_ASC', + PortfolioMovementsVariancePopulationMemoDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_MEMO_DESC', + PortfolioMovementsVariancePopulationNftIdsAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_NFT_IDS_ASC', + PortfolioMovementsVariancePopulationNftIdsDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_NFT_IDS_DESC', + PortfolioMovementsVariancePopulationToIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_TO_ID_ASC', + PortfolioMovementsVariancePopulationToIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_TO_ID_DESC', + PortfolioMovementsVariancePopulationTypeAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_TYPE_ASC', + PortfolioMovementsVariancePopulationTypeDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_TYPE_DESC', + PortfolioMovementsVariancePopulationUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsVariancePopulationUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsVarianceSampleAddressAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_ADDRESS_ASC', + PortfolioMovementsVarianceSampleAddressDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_ADDRESS_DESC', + PortfolioMovementsVarianceSampleAmountAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_AMOUNT_ASC', + PortfolioMovementsVarianceSampleAmountDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_AMOUNT_DESC', + PortfolioMovementsVarianceSampleAssetIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_ASSET_ID_ASC', + PortfolioMovementsVarianceSampleAssetIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_ASSET_ID_DESC', + PortfolioMovementsVarianceSampleBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PortfolioMovementsVarianceSampleBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PortfolioMovementsVarianceSampleCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + PortfolioMovementsVarianceSampleCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + PortfolioMovementsVarianceSampleCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsVarianceSampleCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsVarianceSampleFromIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_FROM_ID_ASC', + PortfolioMovementsVarianceSampleFromIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_FROM_ID_DESC', + PortfolioMovementsVarianceSampleIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_ID_ASC', + PortfolioMovementsVarianceSampleIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_ID_DESC', + PortfolioMovementsVarianceSampleMemoAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_MEMO_ASC', + PortfolioMovementsVarianceSampleMemoDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_MEMO_DESC', + PortfolioMovementsVarianceSampleNftIdsAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_NFT_IDS_ASC', + PortfolioMovementsVarianceSampleNftIdsDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_NFT_IDS_DESC', + PortfolioMovementsVarianceSampleToIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_TO_ID_ASC', + PortfolioMovementsVarianceSampleToIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_TO_ID_DESC', + PortfolioMovementsVarianceSampleTypeAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_TYPE_ASC', + PortfolioMovementsVarianceSampleTypeDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_TYPE_DESC', + PortfolioMovementsVarianceSampleUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsVarianceSampleUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + StatTypesAverageAssetIdAsc = 'STAT_TYPES_AVERAGE_ASSET_ID_ASC', + StatTypesAverageAssetIdDesc = 'STAT_TYPES_AVERAGE_ASSET_ID_DESC', + StatTypesAverageBlockRangeAsc = 'STAT_TYPES_AVERAGE_BLOCK_RANGE_ASC', + StatTypesAverageBlockRangeDesc = 'STAT_TYPES_AVERAGE_BLOCK_RANGE_DESC', + StatTypesAverageClaimIssuerIdAsc = 'STAT_TYPES_AVERAGE_CLAIM_ISSUER_ID_ASC', + StatTypesAverageClaimIssuerIdDesc = 'STAT_TYPES_AVERAGE_CLAIM_ISSUER_ID_DESC', + StatTypesAverageClaimTypeAsc = 'STAT_TYPES_AVERAGE_CLAIM_TYPE_ASC', + StatTypesAverageClaimTypeDesc = 'STAT_TYPES_AVERAGE_CLAIM_TYPE_DESC', + StatTypesAverageCreatedAtAsc = 'STAT_TYPES_AVERAGE_CREATED_AT_ASC', + StatTypesAverageCreatedAtDesc = 'STAT_TYPES_AVERAGE_CREATED_AT_DESC', + StatTypesAverageCreatedBlockIdAsc = 'STAT_TYPES_AVERAGE_CREATED_BLOCK_ID_ASC', + StatTypesAverageCreatedBlockIdDesc = 'STAT_TYPES_AVERAGE_CREATED_BLOCK_ID_DESC', + StatTypesAverageCustomClaimTypeIdAsc = 'STAT_TYPES_AVERAGE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesAverageCustomClaimTypeIdDesc = 'STAT_TYPES_AVERAGE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesAverageIdAsc = 'STAT_TYPES_AVERAGE_ID_ASC', + StatTypesAverageIdDesc = 'STAT_TYPES_AVERAGE_ID_DESC', + StatTypesAverageOpTypeAsc = 'STAT_TYPES_AVERAGE_OP_TYPE_ASC', + StatTypesAverageOpTypeDesc = 'STAT_TYPES_AVERAGE_OP_TYPE_DESC', + StatTypesAverageUpdatedBlockIdAsc = 'STAT_TYPES_AVERAGE_UPDATED_BLOCK_ID_ASC', + StatTypesAverageUpdatedBlockIdDesc = 'STAT_TYPES_AVERAGE_UPDATED_BLOCK_ID_DESC', + StatTypesCountAsc = 'STAT_TYPES_COUNT_ASC', + StatTypesCountDesc = 'STAT_TYPES_COUNT_DESC', + StatTypesDistinctCountAssetIdAsc = 'STAT_TYPES_DISTINCT_COUNT_ASSET_ID_ASC', + StatTypesDistinctCountAssetIdDesc = 'STAT_TYPES_DISTINCT_COUNT_ASSET_ID_DESC', + StatTypesDistinctCountBlockRangeAsc = 'STAT_TYPES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StatTypesDistinctCountBlockRangeDesc = 'STAT_TYPES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StatTypesDistinctCountClaimIssuerIdAsc = 'STAT_TYPES_DISTINCT_COUNT_CLAIM_ISSUER_ID_ASC', + StatTypesDistinctCountClaimIssuerIdDesc = 'STAT_TYPES_DISTINCT_COUNT_CLAIM_ISSUER_ID_DESC', + StatTypesDistinctCountClaimTypeAsc = 'STAT_TYPES_DISTINCT_COUNT_CLAIM_TYPE_ASC', + StatTypesDistinctCountClaimTypeDesc = 'STAT_TYPES_DISTINCT_COUNT_CLAIM_TYPE_DESC', + StatTypesDistinctCountCreatedAtAsc = 'STAT_TYPES_DISTINCT_COUNT_CREATED_AT_ASC', + StatTypesDistinctCountCreatedAtDesc = 'STAT_TYPES_DISTINCT_COUNT_CREATED_AT_DESC', + StatTypesDistinctCountCreatedBlockIdAsc = 'STAT_TYPES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StatTypesDistinctCountCreatedBlockIdDesc = 'STAT_TYPES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StatTypesDistinctCountCustomClaimTypeIdAsc = 'STAT_TYPES_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesDistinctCountCustomClaimTypeIdDesc = 'STAT_TYPES_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesDistinctCountIdAsc = 'STAT_TYPES_DISTINCT_COUNT_ID_ASC', + StatTypesDistinctCountIdDesc = 'STAT_TYPES_DISTINCT_COUNT_ID_DESC', + StatTypesDistinctCountOpTypeAsc = 'STAT_TYPES_DISTINCT_COUNT_OP_TYPE_ASC', + StatTypesDistinctCountOpTypeDesc = 'STAT_TYPES_DISTINCT_COUNT_OP_TYPE_DESC', + StatTypesDistinctCountUpdatedBlockIdAsc = 'STAT_TYPES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StatTypesDistinctCountUpdatedBlockIdDesc = 'STAT_TYPES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StatTypesMaxAssetIdAsc = 'STAT_TYPES_MAX_ASSET_ID_ASC', + StatTypesMaxAssetIdDesc = 'STAT_TYPES_MAX_ASSET_ID_DESC', + StatTypesMaxBlockRangeAsc = 'STAT_TYPES_MAX_BLOCK_RANGE_ASC', + StatTypesMaxBlockRangeDesc = 'STAT_TYPES_MAX_BLOCK_RANGE_DESC', + StatTypesMaxClaimIssuerIdAsc = 'STAT_TYPES_MAX_CLAIM_ISSUER_ID_ASC', + StatTypesMaxClaimIssuerIdDesc = 'STAT_TYPES_MAX_CLAIM_ISSUER_ID_DESC', + StatTypesMaxClaimTypeAsc = 'STAT_TYPES_MAX_CLAIM_TYPE_ASC', + StatTypesMaxClaimTypeDesc = 'STAT_TYPES_MAX_CLAIM_TYPE_DESC', + StatTypesMaxCreatedAtAsc = 'STAT_TYPES_MAX_CREATED_AT_ASC', + StatTypesMaxCreatedAtDesc = 'STAT_TYPES_MAX_CREATED_AT_DESC', + StatTypesMaxCreatedBlockIdAsc = 'STAT_TYPES_MAX_CREATED_BLOCK_ID_ASC', + StatTypesMaxCreatedBlockIdDesc = 'STAT_TYPES_MAX_CREATED_BLOCK_ID_DESC', + StatTypesMaxCustomClaimTypeIdAsc = 'STAT_TYPES_MAX_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesMaxCustomClaimTypeIdDesc = 'STAT_TYPES_MAX_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesMaxIdAsc = 'STAT_TYPES_MAX_ID_ASC', + StatTypesMaxIdDesc = 'STAT_TYPES_MAX_ID_DESC', + StatTypesMaxOpTypeAsc = 'STAT_TYPES_MAX_OP_TYPE_ASC', + StatTypesMaxOpTypeDesc = 'STAT_TYPES_MAX_OP_TYPE_DESC', + StatTypesMaxUpdatedBlockIdAsc = 'STAT_TYPES_MAX_UPDATED_BLOCK_ID_ASC', + StatTypesMaxUpdatedBlockIdDesc = 'STAT_TYPES_MAX_UPDATED_BLOCK_ID_DESC', + StatTypesMinAssetIdAsc = 'STAT_TYPES_MIN_ASSET_ID_ASC', + StatTypesMinAssetIdDesc = 'STAT_TYPES_MIN_ASSET_ID_DESC', + StatTypesMinBlockRangeAsc = 'STAT_TYPES_MIN_BLOCK_RANGE_ASC', + StatTypesMinBlockRangeDesc = 'STAT_TYPES_MIN_BLOCK_RANGE_DESC', + StatTypesMinClaimIssuerIdAsc = 'STAT_TYPES_MIN_CLAIM_ISSUER_ID_ASC', + StatTypesMinClaimIssuerIdDesc = 'STAT_TYPES_MIN_CLAIM_ISSUER_ID_DESC', + StatTypesMinClaimTypeAsc = 'STAT_TYPES_MIN_CLAIM_TYPE_ASC', + StatTypesMinClaimTypeDesc = 'STAT_TYPES_MIN_CLAIM_TYPE_DESC', + StatTypesMinCreatedAtAsc = 'STAT_TYPES_MIN_CREATED_AT_ASC', + StatTypesMinCreatedAtDesc = 'STAT_TYPES_MIN_CREATED_AT_DESC', + StatTypesMinCreatedBlockIdAsc = 'STAT_TYPES_MIN_CREATED_BLOCK_ID_ASC', + StatTypesMinCreatedBlockIdDesc = 'STAT_TYPES_MIN_CREATED_BLOCK_ID_DESC', + StatTypesMinCustomClaimTypeIdAsc = 'STAT_TYPES_MIN_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesMinCustomClaimTypeIdDesc = 'STAT_TYPES_MIN_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesMinIdAsc = 'STAT_TYPES_MIN_ID_ASC', + StatTypesMinIdDesc = 'STAT_TYPES_MIN_ID_DESC', + StatTypesMinOpTypeAsc = 'STAT_TYPES_MIN_OP_TYPE_ASC', + StatTypesMinOpTypeDesc = 'STAT_TYPES_MIN_OP_TYPE_DESC', + StatTypesMinUpdatedBlockIdAsc = 'STAT_TYPES_MIN_UPDATED_BLOCK_ID_ASC', + StatTypesMinUpdatedBlockIdDesc = 'STAT_TYPES_MIN_UPDATED_BLOCK_ID_DESC', + StatTypesStddevPopulationAssetIdAsc = 'STAT_TYPES_STDDEV_POPULATION_ASSET_ID_ASC', + StatTypesStddevPopulationAssetIdDesc = 'STAT_TYPES_STDDEV_POPULATION_ASSET_ID_DESC', + StatTypesStddevPopulationBlockRangeAsc = 'STAT_TYPES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StatTypesStddevPopulationBlockRangeDesc = 'STAT_TYPES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StatTypesStddevPopulationClaimIssuerIdAsc = 'STAT_TYPES_STDDEV_POPULATION_CLAIM_ISSUER_ID_ASC', + StatTypesStddevPopulationClaimIssuerIdDesc = 'STAT_TYPES_STDDEV_POPULATION_CLAIM_ISSUER_ID_DESC', + StatTypesStddevPopulationClaimTypeAsc = 'STAT_TYPES_STDDEV_POPULATION_CLAIM_TYPE_ASC', + StatTypesStddevPopulationClaimTypeDesc = 'STAT_TYPES_STDDEV_POPULATION_CLAIM_TYPE_DESC', + StatTypesStddevPopulationCreatedAtAsc = 'STAT_TYPES_STDDEV_POPULATION_CREATED_AT_ASC', + StatTypesStddevPopulationCreatedAtDesc = 'STAT_TYPES_STDDEV_POPULATION_CREATED_AT_DESC', + StatTypesStddevPopulationCreatedBlockIdAsc = 'STAT_TYPES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StatTypesStddevPopulationCreatedBlockIdDesc = 'STAT_TYPES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StatTypesStddevPopulationCustomClaimTypeIdAsc = 'STAT_TYPES_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesStddevPopulationCustomClaimTypeIdDesc = 'STAT_TYPES_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesStddevPopulationIdAsc = 'STAT_TYPES_STDDEV_POPULATION_ID_ASC', + StatTypesStddevPopulationIdDesc = 'STAT_TYPES_STDDEV_POPULATION_ID_DESC', + StatTypesStddevPopulationOpTypeAsc = 'STAT_TYPES_STDDEV_POPULATION_OP_TYPE_ASC', + StatTypesStddevPopulationOpTypeDesc = 'STAT_TYPES_STDDEV_POPULATION_OP_TYPE_DESC', + StatTypesStddevPopulationUpdatedBlockIdAsc = 'STAT_TYPES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StatTypesStddevPopulationUpdatedBlockIdDesc = 'STAT_TYPES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StatTypesStddevSampleAssetIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_ASSET_ID_ASC', + StatTypesStddevSampleAssetIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_ASSET_ID_DESC', + StatTypesStddevSampleBlockRangeAsc = 'STAT_TYPES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StatTypesStddevSampleBlockRangeDesc = 'STAT_TYPES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StatTypesStddevSampleClaimIssuerIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_CLAIM_ISSUER_ID_ASC', + StatTypesStddevSampleClaimIssuerIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_CLAIM_ISSUER_ID_DESC', + StatTypesStddevSampleClaimTypeAsc = 'STAT_TYPES_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + StatTypesStddevSampleClaimTypeDesc = 'STAT_TYPES_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + StatTypesStddevSampleCreatedAtAsc = 'STAT_TYPES_STDDEV_SAMPLE_CREATED_AT_ASC', + StatTypesStddevSampleCreatedAtDesc = 'STAT_TYPES_STDDEV_SAMPLE_CREATED_AT_DESC', + StatTypesStddevSampleCreatedBlockIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StatTypesStddevSampleCreatedBlockIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StatTypesStddevSampleCustomClaimTypeIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesStddevSampleCustomClaimTypeIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesStddevSampleIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_ID_ASC', + StatTypesStddevSampleIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_ID_DESC', + StatTypesStddevSampleOpTypeAsc = 'STAT_TYPES_STDDEV_SAMPLE_OP_TYPE_ASC', + StatTypesStddevSampleOpTypeDesc = 'STAT_TYPES_STDDEV_SAMPLE_OP_TYPE_DESC', + StatTypesStddevSampleUpdatedBlockIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StatTypesStddevSampleUpdatedBlockIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StatTypesSumAssetIdAsc = 'STAT_TYPES_SUM_ASSET_ID_ASC', + StatTypesSumAssetIdDesc = 'STAT_TYPES_SUM_ASSET_ID_DESC', + StatTypesSumBlockRangeAsc = 'STAT_TYPES_SUM_BLOCK_RANGE_ASC', + StatTypesSumBlockRangeDesc = 'STAT_TYPES_SUM_BLOCK_RANGE_DESC', + StatTypesSumClaimIssuerIdAsc = 'STAT_TYPES_SUM_CLAIM_ISSUER_ID_ASC', + StatTypesSumClaimIssuerIdDesc = 'STAT_TYPES_SUM_CLAIM_ISSUER_ID_DESC', + StatTypesSumClaimTypeAsc = 'STAT_TYPES_SUM_CLAIM_TYPE_ASC', + StatTypesSumClaimTypeDesc = 'STAT_TYPES_SUM_CLAIM_TYPE_DESC', + StatTypesSumCreatedAtAsc = 'STAT_TYPES_SUM_CREATED_AT_ASC', + StatTypesSumCreatedAtDesc = 'STAT_TYPES_SUM_CREATED_AT_DESC', + StatTypesSumCreatedBlockIdAsc = 'STAT_TYPES_SUM_CREATED_BLOCK_ID_ASC', + StatTypesSumCreatedBlockIdDesc = 'STAT_TYPES_SUM_CREATED_BLOCK_ID_DESC', + StatTypesSumCustomClaimTypeIdAsc = 'STAT_TYPES_SUM_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesSumCustomClaimTypeIdDesc = 'STAT_TYPES_SUM_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesSumIdAsc = 'STAT_TYPES_SUM_ID_ASC', + StatTypesSumIdDesc = 'STAT_TYPES_SUM_ID_DESC', + StatTypesSumOpTypeAsc = 'STAT_TYPES_SUM_OP_TYPE_ASC', + StatTypesSumOpTypeDesc = 'STAT_TYPES_SUM_OP_TYPE_DESC', + StatTypesSumUpdatedBlockIdAsc = 'STAT_TYPES_SUM_UPDATED_BLOCK_ID_ASC', + StatTypesSumUpdatedBlockIdDesc = 'STAT_TYPES_SUM_UPDATED_BLOCK_ID_DESC', + StatTypesVariancePopulationAssetIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_ASSET_ID_ASC', + StatTypesVariancePopulationAssetIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_ASSET_ID_DESC', + StatTypesVariancePopulationBlockRangeAsc = 'STAT_TYPES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StatTypesVariancePopulationBlockRangeDesc = 'STAT_TYPES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StatTypesVariancePopulationClaimIssuerIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_CLAIM_ISSUER_ID_ASC', + StatTypesVariancePopulationClaimIssuerIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_CLAIM_ISSUER_ID_DESC', + StatTypesVariancePopulationClaimTypeAsc = 'STAT_TYPES_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + StatTypesVariancePopulationClaimTypeDesc = 'STAT_TYPES_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + StatTypesVariancePopulationCreatedAtAsc = 'STAT_TYPES_VARIANCE_POPULATION_CREATED_AT_ASC', + StatTypesVariancePopulationCreatedAtDesc = 'STAT_TYPES_VARIANCE_POPULATION_CREATED_AT_DESC', + StatTypesVariancePopulationCreatedBlockIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StatTypesVariancePopulationCreatedBlockIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StatTypesVariancePopulationCustomClaimTypeIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesVariancePopulationCustomClaimTypeIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesVariancePopulationIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_ID_ASC', + StatTypesVariancePopulationIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_ID_DESC', + StatTypesVariancePopulationOpTypeAsc = 'STAT_TYPES_VARIANCE_POPULATION_OP_TYPE_ASC', + StatTypesVariancePopulationOpTypeDesc = 'STAT_TYPES_VARIANCE_POPULATION_OP_TYPE_DESC', + StatTypesVariancePopulationUpdatedBlockIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StatTypesVariancePopulationUpdatedBlockIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StatTypesVarianceSampleAssetIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_ASSET_ID_ASC', + StatTypesVarianceSampleAssetIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_ASSET_ID_DESC', + StatTypesVarianceSampleBlockRangeAsc = 'STAT_TYPES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StatTypesVarianceSampleBlockRangeDesc = 'STAT_TYPES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StatTypesVarianceSampleClaimIssuerIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_ASC', + StatTypesVarianceSampleClaimIssuerIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_DESC', + StatTypesVarianceSampleClaimTypeAsc = 'STAT_TYPES_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + StatTypesVarianceSampleClaimTypeDesc = 'STAT_TYPES_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + StatTypesVarianceSampleCreatedAtAsc = 'STAT_TYPES_VARIANCE_SAMPLE_CREATED_AT_ASC', + StatTypesVarianceSampleCreatedAtDesc = 'STAT_TYPES_VARIANCE_SAMPLE_CREATED_AT_DESC', + StatTypesVarianceSampleCreatedBlockIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StatTypesVarianceSampleCreatedBlockIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StatTypesVarianceSampleCustomClaimTypeIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesVarianceSampleCustomClaimTypeIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesVarianceSampleIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_ID_ASC', + StatTypesVarianceSampleIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_ID_DESC', + StatTypesVarianceSampleOpTypeAsc = 'STAT_TYPES_VARIANCE_SAMPLE_OP_TYPE_ASC', + StatTypesVarianceSampleOpTypeDesc = 'STAT_TYPES_VARIANCE_SAMPLE_OP_TYPE_DESC', + StatTypesVarianceSampleUpdatedBlockIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StatTypesVarianceSampleUpdatedBlockIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByOfferingAssetIdAverageBlockRangeAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_BLOCK_RANGE_ASC', + StosByOfferingAssetIdAverageBlockRangeDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_BLOCK_RANGE_DESC', + StosByOfferingAssetIdAverageCreatedAtAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_CREATED_AT_ASC', + StosByOfferingAssetIdAverageCreatedAtDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_CREATED_AT_DESC', + StosByOfferingAssetIdAverageCreatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + StosByOfferingAssetIdAverageCreatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + StosByOfferingAssetIdAverageCreatorIdAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_CREATOR_ID_ASC', + StosByOfferingAssetIdAverageCreatorIdDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_CREATOR_ID_DESC', + StosByOfferingAssetIdAverageEndAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_END_ASC', + StosByOfferingAssetIdAverageEndDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_END_DESC', + StosByOfferingAssetIdAverageIdAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_ID_ASC', + StosByOfferingAssetIdAverageIdDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_ID_DESC', + StosByOfferingAssetIdAverageMinimumInvestmentAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_MINIMUM_INVESTMENT_ASC', + StosByOfferingAssetIdAverageMinimumInvestmentDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_MINIMUM_INVESTMENT_DESC', + StosByOfferingAssetIdAverageNameAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_NAME_ASC', + StosByOfferingAssetIdAverageNameDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_NAME_DESC', + StosByOfferingAssetIdAverageOfferingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_OFFERING_ASSET_ID_ASC', + StosByOfferingAssetIdAverageOfferingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_OFFERING_ASSET_ID_DESC', + StosByOfferingAssetIdAverageOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdAverageOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdAverageRaisingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_RAISING_ASSET_ID_ASC', + StosByOfferingAssetIdAverageRaisingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_RAISING_ASSET_ID_DESC', + StosByOfferingAssetIdAverageRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdAverageRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdAverageRaisingTickerAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_RAISING_TICKER_ASC', + StosByOfferingAssetIdAverageRaisingTickerDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_RAISING_TICKER_DESC', + StosByOfferingAssetIdAverageStartAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_START_ASC', + StosByOfferingAssetIdAverageStartDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_START_DESC', + StosByOfferingAssetIdAverageStatusAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_STATUS_ASC', + StosByOfferingAssetIdAverageStatusDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_STATUS_DESC', + StosByOfferingAssetIdAverageStoIdAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_STO_ID_ASC', + StosByOfferingAssetIdAverageStoIdDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_STO_ID_DESC', + StosByOfferingAssetIdAverageTiersAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_TIERS_ASC', + StosByOfferingAssetIdAverageTiersDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_TIERS_DESC', + StosByOfferingAssetIdAverageUpdatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + StosByOfferingAssetIdAverageUpdatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + StosByOfferingAssetIdAverageVenueIdAsc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_VENUE_ID_ASC', + StosByOfferingAssetIdAverageVenueIdDesc = 'STOS_BY_OFFERING_ASSET_ID_AVERAGE_VENUE_ID_DESC', + StosByOfferingAssetIdCountAsc = 'STOS_BY_OFFERING_ASSET_ID_COUNT_ASC', + StosByOfferingAssetIdCountDesc = 'STOS_BY_OFFERING_ASSET_ID_COUNT_DESC', + StosByOfferingAssetIdDistinctCountBlockRangeAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StosByOfferingAssetIdDistinctCountBlockRangeDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StosByOfferingAssetIdDistinctCountCreatedAtAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_CREATED_AT_ASC', + StosByOfferingAssetIdDistinctCountCreatedAtDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_CREATED_AT_DESC', + StosByOfferingAssetIdDistinctCountCreatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StosByOfferingAssetIdDistinctCountCreatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StosByOfferingAssetIdDistinctCountCreatorIdAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + StosByOfferingAssetIdDistinctCountCreatorIdDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + StosByOfferingAssetIdDistinctCountEndAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_END_ASC', + StosByOfferingAssetIdDistinctCountEndDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_END_DESC', + StosByOfferingAssetIdDistinctCountIdAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_ID_ASC', + StosByOfferingAssetIdDistinctCountIdDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_ID_DESC', + StosByOfferingAssetIdDistinctCountMinimumInvestmentAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_ASC', + StosByOfferingAssetIdDistinctCountMinimumInvestmentDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_DESC', + StosByOfferingAssetIdDistinctCountNameAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_NAME_ASC', + StosByOfferingAssetIdDistinctCountNameDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_NAME_DESC', + StosByOfferingAssetIdDistinctCountOfferingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_ASC', + StosByOfferingAssetIdDistinctCountOfferingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_DESC', + StosByOfferingAssetIdDistinctCountOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdDistinctCountOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdDistinctCountRaisingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_RAISING_ASSET_ID_ASC', + StosByOfferingAssetIdDistinctCountRaisingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_RAISING_ASSET_ID_DESC', + StosByOfferingAssetIdDistinctCountRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdDistinctCountRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdDistinctCountRaisingTickerAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_RAISING_TICKER_ASC', + StosByOfferingAssetIdDistinctCountRaisingTickerDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_RAISING_TICKER_DESC', + StosByOfferingAssetIdDistinctCountStartAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_START_ASC', + StosByOfferingAssetIdDistinctCountStartDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_START_DESC', + StosByOfferingAssetIdDistinctCountStatusAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_STATUS_ASC', + StosByOfferingAssetIdDistinctCountStatusDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_STATUS_DESC', + StosByOfferingAssetIdDistinctCountStoIdAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_STO_ID_ASC', + StosByOfferingAssetIdDistinctCountStoIdDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_STO_ID_DESC', + StosByOfferingAssetIdDistinctCountTiersAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_TIERS_ASC', + StosByOfferingAssetIdDistinctCountTiersDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_TIERS_DESC', + StosByOfferingAssetIdDistinctCountUpdatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StosByOfferingAssetIdDistinctCountUpdatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StosByOfferingAssetIdDistinctCountVenueIdAsc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_VENUE_ID_ASC', + StosByOfferingAssetIdDistinctCountVenueIdDesc = 'STOS_BY_OFFERING_ASSET_ID_DISTINCT_COUNT_VENUE_ID_DESC', + StosByOfferingAssetIdMaxBlockRangeAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_BLOCK_RANGE_ASC', + StosByOfferingAssetIdMaxBlockRangeDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_BLOCK_RANGE_DESC', + StosByOfferingAssetIdMaxCreatedAtAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_CREATED_AT_ASC', + StosByOfferingAssetIdMaxCreatedAtDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_CREATED_AT_DESC', + StosByOfferingAssetIdMaxCreatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_CREATED_BLOCK_ID_ASC', + StosByOfferingAssetIdMaxCreatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_CREATED_BLOCK_ID_DESC', + StosByOfferingAssetIdMaxCreatorIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_CREATOR_ID_ASC', + StosByOfferingAssetIdMaxCreatorIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_CREATOR_ID_DESC', + StosByOfferingAssetIdMaxEndAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_END_ASC', + StosByOfferingAssetIdMaxEndDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_END_DESC', + StosByOfferingAssetIdMaxIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_ID_ASC', + StosByOfferingAssetIdMaxIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_ID_DESC', + StosByOfferingAssetIdMaxMinimumInvestmentAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_MINIMUM_INVESTMENT_ASC', + StosByOfferingAssetIdMaxMinimumInvestmentDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_MINIMUM_INVESTMENT_DESC', + StosByOfferingAssetIdMaxNameAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_NAME_ASC', + StosByOfferingAssetIdMaxNameDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_NAME_DESC', + StosByOfferingAssetIdMaxOfferingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_OFFERING_ASSET_ID_ASC', + StosByOfferingAssetIdMaxOfferingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_OFFERING_ASSET_ID_DESC', + StosByOfferingAssetIdMaxOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdMaxOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdMaxRaisingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_RAISING_ASSET_ID_ASC', + StosByOfferingAssetIdMaxRaisingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_RAISING_ASSET_ID_DESC', + StosByOfferingAssetIdMaxRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdMaxRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdMaxRaisingTickerAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_RAISING_TICKER_ASC', + StosByOfferingAssetIdMaxRaisingTickerDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_RAISING_TICKER_DESC', + StosByOfferingAssetIdMaxStartAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_START_ASC', + StosByOfferingAssetIdMaxStartDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_START_DESC', + StosByOfferingAssetIdMaxStatusAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_STATUS_ASC', + StosByOfferingAssetIdMaxStatusDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_STATUS_DESC', + StosByOfferingAssetIdMaxStoIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_STO_ID_ASC', + StosByOfferingAssetIdMaxStoIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_STO_ID_DESC', + StosByOfferingAssetIdMaxTiersAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_TIERS_ASC', + StosByOfferingAssetIdMaxTiersDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_TIERS_DESC', + StosByOfferingAssetIdMaxUpdatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_UPDATED_BLOCK_ID_ASC', + StosByOfferingAssetIdMaxUpdatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_UPDATED_BLOCK_ID_DESC', + StosByOfferingAssetIdMaxVenueIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MAX_VENUE_ID_ASC', + StosByOfferingAssetIdMaxVenueIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MAX_VENUE_ID_DESC', + StosByOfferingAssetIdMinBlockRangeAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_BLOCK_RANGE_ASC', + StosByOfferingAssetIdMinBlockRangeDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_BLOCK_RANGE_DESC', + StosByOfferingAssetIdMinCreatedAtAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_CREATED_AT_ASC', + StosByOfferingAssetIdMinCreatedAtDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_CREATED_AT_DESC', + StosByOfferingAssetIdMinCreatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_CREATED_BLOCK_ID_ASC', + StosByOfferingAssetIdMinCreatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_CREATED_BLOCK_ID_DESC', + StosByOfferingAssetIdMinCreatorIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_CREATOR_ID_ASC', + StosByOfferingAssetIdMinCreatorIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_CREATOR_ID_DESC', + StosByOfferingAssetIdMinEndAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_END_ASC', + StosByOfferingAssetIdMinEndDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_END_DESC', + StosByOfferingAssetIdMinIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_ID_ASC', + StosByOfferingAssetIdMinIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_ID_DESC', + StosByOfferingAssetIdMinMinimumInvestmentAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_MINIMUM_INVESTMENT_ASC', + StosByOfferingAssetIdMinMinimumInvestmentDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_MINIMUM_INVESTMENT_DESC', + StosByOfferingAssetIdMinNameAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_NAME_ASC', + StosByOfferingAssetIdMinNameDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_NAME_DESC', + StosByOfferingAssetIdMinOfferingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_OFFERING_ASSET_ID_ASC', + StosByOfferingAssetIdMinOfferingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_OFFERING_ASSET_ID_DESC', + StosByOfferingAssetIdMinOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdMinOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdMinRaisingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_RAISING_ASSET_ID_ASC', + StosByOfferingAssetIdMinRaisingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_RAISING_ASSET_ID_DESC', + StosByOfferingAssetIdMinRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdMinRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdMinRaisingTickerAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_RAISING_TICKER_ASC', + StosByOfferingAssetIdMinRaisingTickerDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_RAISING_TICKER_DESC', + StosByOfferingAssetIdMinStartAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_START_ASC', + StosByOfferingAssetIdMinStartDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_START_DESC', + StosByOfferingAssetIdMinStatusAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_STATUS_ASC', + StosByOfferingAssetIdMinStatusDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_STATUS_DESC', + StosByOfferingAssetIdMinStoIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_STO_ID_ASC', + StosByOfferingAssetIdMinStoIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_STO_ID_DESC', + StosByOfferingAssetIdMinTiersAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_TIERS_ASC', + StosByOfferingAssetIdMinTiersDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_TIERS_DESC', + StosByOfferingAssetIdMinUpdatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_UPDATED_BLOCK_ID_ASC', + StosByOfferingAssetIdMinUpdatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_UPDATED_BLOCK_ID_DESC', + StosByOfferingAssetIdMinVenueIdAsc = 'STOS_BY_OFFERING_ASSET_ID_MIN_VENUE_ID_ASC', + StosByOfferingAssetIdMinVenueIdDesc = 'STOS_BY_OFFERING_ASSET_ID_MIN_VENUE_ID_DESC', + StosByOfferingAssetIdStddevPopulationBlockRangeAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StosByOfferingAssetIdStddevPopulationBlockRangeDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StosByOfferingAssetIdStddevPopulationCreatedAtAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_CREATED_AT_ASC', + StosByOfferingAssetIdStddevPopulationCreatedAtDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_CREATED_AT_DESC', + StosByOfferingAssetIdStddevPopulationCreatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StosByOfferingAssetIdStddevPopulationCreatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StosByOfferingAssetIdStddevPopulationCreatorIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + StosByOfferingAssetIdStddevPopulationCreatorIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + StosByOfferingAssetIdStddevPopulationEndAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_END_ASC', + StosByOfferingAssetIdStddevPopulationEndDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_END_DESC', + StosByOfferingAssetIdStddevPopulationIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_ID_ASC', + StosByOfferingAssetIdStddevPopulationIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_ID_DESC', + StosByOfferingAssetIdStddevPopulationMinimumInvestmentAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByOfferingAssetIdStddevPopulationMinimumInvestmentDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByOfferingAssetIdStddevPopulationNameAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_NAME_ASC', + StosByOfferingAssetIdStddevPopulationNameDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_NAME_DESC', + StosByOfferingAssetIdStddevPopulationOfferingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_ASC', + StosByOfferingAssetIdStddevPopulationOfferingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_DESC', + StosByOfferingAssetIdStddevPopulationOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdStddevPopulationOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdStddevPopulationRaisingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_RAISING_ASSET_ID_ASC', + StosByOfferingAssetIdStddevPopulationRaisingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_RAISING_ASSET_ID_DESC', + StosByOfferingAssetIdStddevPopulationRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdStddevPopulationRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdStddevPopulationRaisingTickerAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_RAISING_TICKER_ASC', + StosByOfferingAssetIdStddevPopulationRaisingTickerDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_RAISING_TICKER_DESC', + StosByOfferingAssetIdStddevPopulationStartAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_START_ASC', + StosByOfferingAssetIdStddevPopulationStartDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_START_DESC', + StosByOfferingAssetIdStddevPopulationStatusAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_STATUS_ASC', + StosByOfferingAssetIdStddevPopulationStatusDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_STATUS_DESC', + StosByOfferingAssetIdStddevPopulationStoIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_STO_ID_ASC', + StosByOfferingAssetIdStddevPopulationStoIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_STO_ID_DESC', + StosByOfferingAssetIdStddevPopulationTiersAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_TIERS_ASC', + StosByOfferingAssetIdStddevPopulationTiersDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_TIERS_DESC', + StosByOfferingAssetIdStddevPopulationUpdatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByOfferingAssetIdStddevPopulationUpdatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByOfferingAssetIdStddevPopulationVenueIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_VENUE_ID_ASC', + StosByOfferingAssetIdStddevPopulationVenueIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_POPULATION_VENUE_ID_DESC', + StosByOfferingAssetIdStddevSampleBlockRangeAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StosByOfferingAssetIdStddevSampleBlockRangeDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StosByOfferingAssetIdStddevSampleCreatedAtAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + StosByOfferingAssetIdStddevSampleCreatedAtDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + StosByOfferingAssetIdStddevSampleCreatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByOfferingAssetIdStddevSampleCreatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByOfferingAssetIdStddevSampleCreatorIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + StosByOfferingAssetIdStddevSampleCreatorIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + StosByOfferingAssetIdStddevSampleEndAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_END_ASC', + StosByOfferingAssetIdStddevSampleEndDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_END_DESC', + StosByOfferingAssetIdStddevSampleIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_ID_ASC', + StosByOfferingAssetIdStddevSampleIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_ID_DESC', + StosByOfferingAssetIdStddevSampleMinimumInvestmentAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByOfferingAssetIdStddevSampleMinimumInvestmentDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByOfferingAssetIdStddevSampleNameAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_NAME_ASC', + StosByOfferingAssetIdStddevSampleNameDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_NAME_DESC', + StosByOfferingAssetIdStddevSampleOfferingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByOfferingAssetIdStddevSampleOfferingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByOfferingAssetIdStddevSampleOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdStddevSampleOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdStddevSampleRaisingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_ASC', + StosByOfferingAssetIdStddevSampleRaisingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_DESC', + StosByOfferingAssetIdStddevSampleRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdStddevSampleRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdStddevSampleRaisingTickerAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_RAISING_TICKER_ASC', + StosByOfferingAssetIdStddevSampleRaisingTickerDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_RAISING_TICKER_DESC', + StosByOfferingAssetIdStddevSampleStartAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_START_ASC', + StosByOfferingAssetIdStddevSampleStartDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_START_DESC', + StosByOfferingAssetIdStddevSampleStatusAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_STATUS_ASC', + StosByOfferingAssetIdStddevSampleStatusDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_STATUS_DESC', + StosByOfferingAssetIdStddevSampleStoIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_STO_ID_ASC', + StosByOfferingAssetIdStddevSampleStoIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_STO_ID_DESC', + StosByOfferingAssetIdStddevSampleTiersAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_TIERS_ASC', + StosByOfferingAssetIdStddevSampleTiersDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_TIERS_DESC', + StosByOfferingAssetIdStddevSampleUpdatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByOfferingAssetIdStddevSampleUpdatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByOfferingAssetIdStddevSampleVenueIdAsc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + StosByOfferingAssetIdStddevSampleVenueIdDesc = 'STOS_BY_OFFERING_ASSET_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + StosByOfferingAssetIdSumBlockRangeAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_BLOCK_RANGE_ASC', + StosByOfferingAssetIdSumBlockRangeDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_BLOCK_RANGE_DESC', + StosByOfferingAssetIdSumCreatedAtAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_CREATED_AT_ASC', + StosByOfferingAssetIdSumCreatedAtDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_CREATED_AT_DESC', + StosByOfferingAssetIdSumCreatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_CREATED_BLOCK_ID_ASC', + StosByOfferingAssetIdSumCreatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_CREATED_BLOCK_ID_DESC', + StosByOfferingAssetIdSumCreatorIdAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_CREATOR_ID_ASC', + StosByOfferingAssetIdSumCreatorIdDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_CREATOR_ID_DESC', + StosByOfferingAssetIdSumEndAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_END_ASC', + StosByOfferingAssetIdSumEndDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_END_DESC', + StosByOfferingAssetIdSumIdAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_ID_ASC', + StosByOfferingAssetIdSumIdDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_ID_DESC', + StosByOfferingAssetIdSumMinimumInvestmentAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_MINIMUM_INVESTMENT_ASC', + StosByOfferingAssetIdSumMinimumInvestmentDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_MINIMUM_INVESTMENT_DESC', + StosByOfferingAssetIdSumNameAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_NAME_ASC', + StosByOfferingAssetIdSumNameDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_NAME_DESC', + StosByOfferingAssetIdSumOfferingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_OFFERING_ASSET_ID_ASC', + StosByOfferingAssetIdSumOfferingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_OFFERING_ASSET_ID_DESC', + StosByOfferingAssetIdSumOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdSumOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdSumRaisingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_RAISING_ASSET_ID_ASC', + StosByOfferingAssetIdSumRaisingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_RAISING_ASSET_ID_DESC', + StosByOfferingAssetIdSumRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdSumRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdSumRaisingTickerAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_RAISING_TICKER_ASC', + StosByOfferingAssetIdSumRaisingTickerDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_RAISING_TICKER_DESC', + StosByOfferingAssetIdSumStartAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_START_ASC', + StosByOfferingAssetIdSumStartDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_START_DESC', + StosByOfferingAssetIdSumStatusAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_STATUS_ASC', + StosByOfferingAssetIdSumStatusDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_STATUS_DESC', + StosByOfferingAssetIdSumStoIdAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_STO_ID_ASC', + StosByOfferingAssetIdSumStoIdDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_STO_ID_DESC', + StosByOfferingAssetIdSumTiersAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_TIERS_ASC', + StosByOfferingAssetIdSumTiersDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_TIERS_DESC', + StosByOfferingAssetIdSumUpdatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_UPDATED_BLOCK_ID_ASC', + StosByOfferingAssetIdSumUpdatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_UPDATED_BLOCK_ID_DESC', + StosByOfferingAssetIdSumVenueIdAsc = 'STOS_BY_OFFERING_ASSET_ID_SUM_VENUE_ID_ASC', + StosByOfferingAssetIdSumVenueIdDesc = 'STOS_BY_OFFERING_ASSET_ID_SUM_VENUE_ID_DESC', + StosByOfferingAssetIdVariancePopulationBlockRangeAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StosByOfferingAssetIdVariancePopulationBlockRangeDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StosByOfferingAssetIdVariancePopulationCreatedAtAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + StosByOfferingAssetIdVariancePopulationCreatedAtDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + StosByOfferingAssetIdVariancePopulationCreatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StosByOfferingAssetIdVariancePopulationCreatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StosByOfferingAssetIdVariancePopulationCreatorIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + StosByOfferingAssetIdVariancePopulationCreatorIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + StosByOfferingAssetIdVariancePopulationEndAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_END_ASC', + StosByOfferingAssetIdVariancePopulationEndDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_END_DESC', + StosByOfferingAssetIdVariancePopulationIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_ID_ASC', + StosByOfferingAssetIdVariancePopulationIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_ID_DESC', + StosByOfferingAssetIdVariancePopulationMinimumInvestmentAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByOfferingAssetIdVariancePopulationMinimumInvestmentDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByOfferingAssetIdVariancePopulationNameAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_NAME_ASC', + StosByOfferingAssetIdVariancePopulationNameDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_NAME_DESC', + StosByOfferingAssetIdVariancePopulationOfferingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_ASC', + StosByOfferingAssetIdVariancePopulationOfferingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_DESC', + StosByOfferingAssetIdVariancePopulationOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdVariancePopulationOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdVariancePopulationRaisingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_ASC', + StosByOfferingAssetIdVariancePopulationRaisingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_DESC', + StosByOfferingAssetIdVariancePopulationRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdVariancePopulationRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdVariancePopulationRaisingTickerAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_RAISING_TICKER_ASC', + StosByOfferingAssetIdVariancePopulationRaisingTickerDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_RAISING_TICKER_DESC', + StosByOfferingAssetIdVariancePopulationStartAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_START_ASC', + StosByOfferingAssetIdVariancePopulationStartDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_START_DESC', + StosByOfferingAssetIdVariancePopulationStatusAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_STATUS_ASC', + StosByOfferingAssetIdVariancePopulationStatusDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_STATUS_DESC', + StosByOfferingAssetIdVariancePopulationStoIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_STO_ID_ASC', + StosByOfferingAssetIdVariancePopulationStoIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_STO_ID_DESC', + StosByOfferingAssetIdVariancePopulationTiersAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_TIERS_ASC', + StosByOfferingAssetIdVariancePopulationTiersDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_TIERS_DESC', + StosByOfferingAssetIdVariancePopulationUpdatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByOfferingAssetIdVariancePopulationUpdatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByOfferingAssetIdVariancePopulationVenueIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + StosByOfferingAssetIdVariancePopulationVenueIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + StosByOfferingAssetIdVarianceSampleBlockRangeAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StosByOfferingAssetIdVarianceSampleBlockRangeDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StosByOfferingAssetIdVarianceSampleCreatedAtAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + StosByOfferingAssetIdVarianceSampleCreatedAtDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + StosByOfferingAssetIdVarianceSampleCreatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByOfferingAssetIdVarianceSampleCreatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByOfferingAssetIdVarianceSampleCreatorIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + StosByOfferingAssetIdVarianceSampleCreatorIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + StosByOfferingAssetIdVarianceSampleEndAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_END_ASC', + StosByOfferingAssetIdVarianceSampleEndDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_END_DESC', + StosByOfferingAssetIdVarianceSampleIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_ID_ASC', + StosByOfferingAssetIdVarianceSampleIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_ID_DESC', + StosByOfferingAssetIdVarianceSampleMinimumInvestmentAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByOfferingAssetIdVarianceSampleMinimumInvestmentDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByOfferingAssetIdVarianceSampleNameAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_NAME_ASC', + StosByOfferingAssetIdVarianceSampleNameDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_NAME_DESC', + StosByOfferingAssetIdVarianceSampleOfferingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByOfferingAssetIdVarianceSampleOfferingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByOfferingAssetIdVarianceSampleOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdVarianceSampleOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdVarianceSampleRaisingAssetIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_ASC', + StosByOfferingAssetIdVarianceSampleRaisingAssetIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_DESC', + StosByOfferingAssetIdVarianceSampleRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingAssetIdVarianceSampleRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingAssetIdVarianceSampleRaisingTickerAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_RAISING_TICKER_ASC', + StosByOfferingAssetIdVarianceSampleRaisingTickerDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_RAISING_TICKER_DESC', + StosByOfferingAssetIdVarianceSampleStartAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_START_ASC', + StosByOfferingAssetIdVarianceSampleStartDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_START_DESC', + StosByOfferingAssetIdVarianceSampleStatusAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_STATUS_ASC', + StosByOfferingAssetIdVarianceSampleStatusDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_STATUS_DESC', + StosByOfferingAssetIdVarianceSampleStoIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_STO_ID_ASC', + StosByOfferingAssetIdVarianceSampleStoIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_STO_ID_DESC', + StosByOfferingAssetIdVarianceSampleTiersAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_TIERS_ASC', + StosByOfferingAssetIdVarianceSampleTiersDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_TIERS_DESC', + StosByOfferingAssetIdVarianceSampleUpdatedBlockIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByOfferingAssetIdVarianceSampleUpdatedBlockIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByOfferingAssetIdVarianceSampleVenueIdAsc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + StosByOfferingAssetIdVarianceSampleVenueIdDesc = 'STOS_BY_OFFERING_ASSET_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + TickerAsc = 'TICKER_ASC', + TickerDesc = 'TICKER_DESC', + TickerExternalAgentsAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentsAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentsAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentsAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentsAverageCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_CALLER_ID_ASC', + TickerExternalAgentsAverageCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_CALLER_ID_DESC', + TickerExternalAgentsAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentsAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentsAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsAverageDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_DATETIME_ASC', + TickerExternalAgentsAverageDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_DATETIME_DESC', + TickerExternalAgentsAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentsAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentsAverageIdAsc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_ID_ASC', + TickerExternalAgentsAverageIdDesc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_ID_DESC', + TickerExternalAgentsAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsCountAsc = 'TICKER_EXTERNAL_AGENTS_COUNT_ASC', + TickerExternalAgentsCountDesc = 'TICKER_EXTERNAL_AGENTS_COUNT_DESC', + TickerExternalAgentsDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentsDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentsDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentsDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentsDistinctCountCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_CALLER_ID_ASC', + TickerExternalAgentsDistinctCountCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_CALLER_ID_DESC', + TickerExternalAgentsDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentsDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentsDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsDistinctCountDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_DATETIME_ASC', + TickerExternalAgentsDistinctCountDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_DATETIME_DESC', + TickerExternalAgentsDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentsDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentsDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentsDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentsDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_MAX_ASSET_ID_ASC', + TickerExternalAgentsMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_MAX_ASSET_ID_DESC', + TickerExternalAgentsMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentsMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentsMaxCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_MAX_CALLER_ID_ASC', + TickerExternalAgentsMaxCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_MAX_CALLER_ID_DESC', + TickerExternalAgentsMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_MAX_CREATED_AT_ASC', + TickerExternalAgentsMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_MAX_CREATED_AT_DESC', + TickerExternalAgentsMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsMaxDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_MAX_DATETIME_ASC', + TickerExternalAgentsMaxDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_MAX_DATETIME_DESC', + TickerExternalAgentsMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_MAX_EVENT_IDX_ASC', + TickerExternalAgentsMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_MAX_EVENT_IDX_DESC', + TickerExternalAgentsMaxIdAsc = 'TICKER_EXTERNAL_AGENTS_MAX_ID_ASC', + TickerExternalAgentsMaxIdDesc = 'TICKER_EXTERNAL_AGENTS_MAX_ID_DESC', + TickerExternalAgentsMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsMinAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_MIN_ASSET_ID_ASC', + TickerExternalAgentsMinAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_MIN_ASSET_ID_DESC', + TickerExternalAgentsMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentsMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentsMinCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_MIN_CALLER_ID_ASC', + TickerExternalAgentsMinCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_MIN_CALLER_ID_DESC', + TickerExternalAgentsMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_MIN_CREATED_AT_ASC', + TickerExternalAgentsMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_MIN_CREATED_AT_DESC', + TickerExternalAgentsMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsMinDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_MIN_DATETIME_ASC', + TickerExternalAgentsMinDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_MIN_DATETIME_DESC', + TickerExternalAgentsMinEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_MIN_EVENT_IDX_ASC', + TickerExternalAgentsMinEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_MIN_EVENT_IDX_DESC', + TickerExternalAgentsMinIdAsc = 'TICKER_EXTERNAL_AGENTS_MIN_ID_ASC', + TickerExternalAgentsMinIdDesc = 'TICKER_EXTERNAL_AGENTS_MIN_ID_DESC', + TickerExternalAgentsMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentsStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentsStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentsStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentsStddevPopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_CALLER_ID_ASC', + TickerExternalAgentsStddevPopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_CALLER_ID_DESC', + TickerExternalAgentsStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentsStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentsStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsStddevPopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_DATETIME_ASC', + TickerExternalAgentsStddevPopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_DATETIME_DESC', + TickerExternalAgentsStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentsStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentsStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentsStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentsStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentsStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentsStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentsStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentsStddevSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentsStddevSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentsStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentsStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentsStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsStddevSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_DATETIME_ASC', + TickerExternalAgentsStddevSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_DATETIME_DESC', + TickerExternalAgentsStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentsStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentsStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentsStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentsStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsSumAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_SUM_ASSET_ID_ASC', + TickerExternalAgentsSumAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_SUM_ASSET_ID_DESC', + TickerExternalAgentsSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentsSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentsSumCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_SUM_CALLER_ID_ASC', + TickerExternalAgentsSumCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_SUM_CALLER_ID_DESC', + TickerExternalAgentsSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_SUM_CREATED_AT_ASC', + TickerExternalAgentsSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_SUM_CREATED_AT_DESC', + TickerExternalAgentsSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsSumDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_SUM_DATETIME_ASC', + TickerExternalAgentsSumDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_SUM_DATETIME_DESC', + TickerExternalAgentsSumEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_SUM_EVENT_IDX_ASC', + TickerExternalAgentsSumEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_SUM_EVENT_IDX_DESC', + TickerExternalAgentsSumIdAsc = 'TICKER_EXTERNAL_AGENTS_SUM_ID_ASC', + TickerExternalAgentsSumIdDesc = 'TICKER_EXTERNAL_AGENTS_SUM_ID_DESC', + TickerExternalAgentsSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentsVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentsVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentsVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentsVariancePopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_CALLER_ID_ASC', + TickerExternalAgentsVariancePopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_CALLER_ID_DESC', + TickerExternalAgentsVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentsVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentsVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsVariancePopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_DATETIME_ASC', + TickerExternalAgentsVariancePopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_DATETIME_DESC', + TickerExternalAgentsVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentsVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentsVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentsVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentsVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentsVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentsVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentsVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentsVarianceSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentsVarianceSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentsVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentsVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentsVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsVarianceSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_DATETIME_ASC', + TickerExternalAgentsVarianceSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_DATETIME_DESC', + TickerExternalAgentsVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentsVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentsVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentsVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentsVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentActionsAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentActionsAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsAverageCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_CALLER_ID_ASC', + TickerExternalAgentActionsAverageCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_CALLER_ID_DESC', + TickerExternalAgentActionsAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentActionsAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentActionsAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentActionsAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentActionsAverageEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_EVENT_ID_ASC', + TickerExternalAgentActionsAverageEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_EVENT_ID_DESC', + TickerExternalAgentActionsAverageIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_ID_ASC', + TickerExternalAgentActionsAverageIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_ID_DESC', + TickerExternalAgentActionsAveragePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_PALLET_NAME_ASC', + TickerExternalAgentActionsAveragePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_PALLET_NAME_DESC', + TickerExternalAgentActionsAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsCountAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_COUNT_ASC', + TickerExternalAgentActionsCountDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_COUNT_DESC', + TickerExternalAgentActionsDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentActionsDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentActionsDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentActionsDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentActionsDistinctCountCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_CALLER_ID_ASC', + TickerExternalAgentActionsDistinctCountCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_CALLER_ID_DESC', + TickerExternalAgentActionsDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentActionsDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentActionsDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentActionsDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentActionsDistinctCountEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_EVENT_ID_ASC', + TickerExternalAgentActionsDistinctCountEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_EVENT_ID_DESC', + TickerExternalAgentActionsDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentActionsDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentActionsDistinctCountPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_PALLET_NAME_ASC', + TickerExternalAgentActionsDistinctCountPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_PALLET_NAME_DESC', + TickerExternalAgentActionsDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_ASSET_ID_ASC', + TickerExternalAgentActionsMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_ASSET_ID_DESC', + TickerExternalAgentActionsMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentActionsMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentActionsMaxCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_CALLER_ID_ASC', + TickerExternalAgentActionsMaxCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_CALLER_ID_DESC', + TickerExternalAgentActionsMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_CREATED_AT_ASC', + TickerExternalAgentActionsMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_CREATED_AT_DESC', + TickerExternalAgentActionsMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_EVENT_IDX_ASC', + TickerExternalAgentActionsMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_EVENT_IDX_DESC', + TickerExternalAgentActionsMaxEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_EVENT_ID_ASC', + TickerExternalAgentActionsMaxEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_EVENT_ID_DESC', + TickerExternalAgentActionsMaxIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_ID_ASC', + TickerExternalAgentActionsMaxIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_ID_DESC', + TickerExternalAgentActionsMaxPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_PALLET_NAME_ASC', + TickerExternalAgentActionsMaxPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_PALLET_NAME_DESC', + TickerExternalAgentActionsMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsMinAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_ASSET_ID_ASC', + TickerExternalAgentActionsMinAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_ASSET_ID_DESC', + TickerExternalAgentActionsMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentActionsMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentActionsMinCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_CALLER_ID_ASC', + TickerExternalAgentActionsMinCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_CALLER_ID_DESC', + TickerExternalAgentActionsMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_CREATED_AT_ASC', + TickerExternalAgentActionsMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_CREATED_AT_DESC', + TickerExternalAgentActionsMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsMinEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_EVENT_IDX_ASC', + TickerExternalAgentActionsMinEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_EVENT_IDX_DESC', + TickerExternalAgentActionsMinEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_EVENT_ID_ASC', + TickerExternalAgentActionsMinEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_EVENT_ID_DESC', + TickerExternalAgentActionsMinIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_ID_ASC', + TickerExternalAgentActionsMinIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_ID_DESC', + TickerExternalAgentActionsMinPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_PALLET_NAME_ASC', + TickerExternalAgentActionsMinPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_PALLET_NAME_DESC', + TickerExternalAgentActionsMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentActionsStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentActionsStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentActionsStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentActionsStddevPopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_CALLER_ID_ASC', + TickerExternalAgentActionsStddevPopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_CALLER_ID_DESC', + TickerExternalAgentActionsStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentActionsStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentActionsStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentActionsStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentActionsStddevPopulationEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_EVENT_ID_ASC', + TickerExternalAgentActionsStddevPopulationEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_EVENT_ID_DESC', + TickerExternalAgentActionsStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentActionsStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentActionsStddevPopulationPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_PALLET_NAME_ASC', + TickerExternalAgentActionsStddevPopulationPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_PALLET_NAME_DESC', + TickerExternalAgentActionsStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentActionsStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentActionsStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsStddevSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentActionsStddevSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentActionsStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentActionsStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentActionsStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentActionsStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentActionsStddevSampleEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_EVENT_ID_ASC', + TickerExternalAgentActionsStddevSampleEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_EVENT_ID_DESC', + TickerExternalAgentActionsStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentActionsStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentActionsStddevSamplePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_PALLET_NAME_ASC', + TickerExternalAgentActionsStddevSamplePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_PALLET_NAME_DESC', + TickerExternalAgentActionsStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsSumAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_ASSET_ID_ASC', + TickerExternalAgentActionsSumAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_ASSET_ID_DESC', + TickerExternalAgentActionsSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentActionsSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentActionsSumCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_CALLER_ID_ASC', + TickerExternalAgentActionsSumCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_CALLER_ID_DESC', + TickerExternalAgentActionsSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_CREATED_AT_ASC', + TickerExternalAgentActionsSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_CREATED_AT_DESC', + TickerExternalAgentActionsSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsSumEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_EVENT_IDX_ASC', + TickerExternalAgentActionsSumEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_EVENT_IDX_DESC', + TickerExternalAgentActionsSumEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_EVENT_ID_ASC', + TickerExternalAgentActionsSumEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_EVENT_ID_DESC', + TickerExternalAgentActionsSumIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_ID_ASC', + TickerExternalAgentActionsSumIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_ID_DESC', + TickerExternalAgentActionsSumPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_PALLET_NAME_ASC', + TickerExternalAgentActionsSumPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_PALLET_NAME_DESC', + TickerExternalAgentActionsSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentActionsVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentActionsVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentActionsVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentActionsVariancePopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_CALLER_ID_ASC', + TickerExternalAgentActionsVariancePopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_CALLER_ID_DESC', + TickerExternalAgentActionsVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentActionsVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentActionsVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentActionsVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentActionsVariancePopulationEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_EVENT_ID_ASC', + TickerExternalAgentActionsVariancePopulationEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_EVENT_ID_DESC', + TickerExternalAgentActionsVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentActionsVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentActionsVariancePopulationPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_PALLET_NAME_ASC', + TickerExternalAgentActionsVariancePopulationPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_PALLET_NAME_DESC', + TickerExternalAgentActionsVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentActionsVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentActionsVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsVarianceSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentActionsVarianceSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentActionsVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentActionsVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentActionsVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentActionsVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentActionsVarianceSampleEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_EVENT_ID_ASC', + TickerExternalAgentActionsVarianceSampleEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_EVENT_ID_DESC', + TickerExternalAgentActionsVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentActionsVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentActionsVarianceSamplePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_PALLET_NAME_ASC', + TickerExternalAgentActionsVarianceSamplePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_PALLET_NAME_DESC', + TickerExternalAgentActionsVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentHistoriesAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentHistoriesAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentHistoriesAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentHistoriesAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesAverageDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_DATETIME_ASC', + TickerExternalAgentHistoriesAverageDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_DATETIME_DESC', + TickerExternalAgentHistoriesAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesAverageIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesAverageIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesAverageIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_ID_ASC', + TickerExternalAgentHistoriesAverageIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_ID_DESC', + TickerExternalAgentHistoriesAveragePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesAveragePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesAverageTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_TYPE_ASC', + TickerExternalAgentHistoriesAverageTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_TYPE_DESC', + TickerExternalAgentHistoriesAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesCountAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_COUNT_ASC', + TickerExternalAgentHistoriesCountDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_COUNT_DESC', + TickerExternalAgentHistoriesDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentHistoriesDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentHistoriesDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentHistoriesDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentHistoriesDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesDistinctCountDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_DATETIME_ASC', + TickerExternalAgentHistoriesDistinctCountDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_DATETIME_DESC', + TickerExternalAgentHistoriesDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentHistoriesDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentHistoriesDistinctCountIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesDistinctCountIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentHistoriesDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentHistoriesDistinctCountPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_PERMISSIONS_ASC', + TickerExternalAgentHistoriesDistinctCountPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_PERMISSIONS_DESC', + TickerExternalAgentHistoriesDistinctCountTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_TYPE_ASC', + TickerExternalAgentHistoriesDistinctCountTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_TYPE_DESC', + TickerExternalAgentHistoriesDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_ASSET_ID_ASC', + TickerExternalAgentHistoriesMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_ASSET_ID_DESC', + TickerExternalAgentHistoriesMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_CREATED_AT_ASC', + TickerExternalAgentHistoriesMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_CREATED_AT_DESC', + TickerExternalAgentHistoriesMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesMaxDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_DATETIME_ASC', + TickerExternalAgentHistoriesMaxDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_DATETIME_DESC', + TickerExternalAgentHistoriesMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_EVENT_IDX_ASC', + TickerExternalAgentHistoriesMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_EVENT_IDX_DESC', + TickerExternalAgentHistoriesMaxIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesMaxIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesMaxIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_ID_ASC', + TickerExternalAgentHistoriesMaxIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_ID_DESC', + TickerExternalAgentHistoriesMaxPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_PERMISSIONS_ASC', + TickerExternalAgentHistoriesMaxPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_PERMISSIONS_DESC', + TickerExternalAgentHistoriesMaxTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_TYPE_ASC', + TickerExternalAgentHistoriesMaxTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_TYPE_DESC', + TickerExternalAgentHistoriesMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesMinAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_ASSET_ID_ASC', + TickerExternalAgentHistoriesMinAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_ASSET_ID_DESC', + TickerExternalAgentHistoriesMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_CREATED_AT_ASC', + TickerExternalAgentHistoriesMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_CREATED_AT_DESC', + TickerExternalAgentHistoriesMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesMinDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_DATETIME_ASC', + TickerExternalAgentHistoriesMinDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_DATETIME_DESC', + TickerExternalAgentHistoriesMinEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_EVENT_IDX_ASC', + TickerExternalAgentHistoriesMinEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_EVENT_IDX_DESC', + TickerExternalAgentHistoriesMinIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesMinIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesMinIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_ID_ASC', + TickerExternalAgentHistoriesMinIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_ID_DESC', + TickerExternalAgentHistoriesMinPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_PERMISSIONS_ASC', + TickerExternalAgentHistoriesMinPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_PERMISSIONS_DESC', + TickerExternalAgentHistoriesMinTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_TYPE_ASC', + TickerExternalAgentHistoriesMinTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_TYPE_DESC', + TickerExternalAgentHistoriesMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentHistoriesStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentHistoriesStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentHistoriesStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentHistoriesStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesStddevPopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_DATETIME_ASC', + TickerExternalAgentHistoriesStddevPopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_DATETIME_DESC', + TickerExternalAgentHistoriesStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentHistoriesStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentHistoriesStddevPopulationIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesStddevPopulationIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentHistoriesStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentHistoriesStddevPopulationPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_PERMISSIONS_ASC', + TickerExternalAgentHistoriesStddevPopulationPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_PERMISSIONS_DESC', + TickerExternalAgentHistoriesStddevPopulationTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_TYPE_ASC', + TickerExternalAgentHistoriesStddevPopulationTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_TYPE_DESC', + TickerExternalAgentHistoriesStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentHistoriesStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentHistoriesStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentHistoriesStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentHistoriesStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesStddevSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_DATETIME_ASC', + TickerExternalAgentHistoriesStddevSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_DATETIME_DESC', + TickerExternalAgentHistoriesStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesStddevSampleIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesStddevSampleIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentHistoriesStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentHistoriesStddevSamplePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesStddevSamplePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesStddevSampleTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_TYPE_ASC', + TickerExternalAgentHistoriesStddevSampleTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_TYPE_DESC', + TickerExternalAgentHistoriesStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesSumAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_ASSET_ID_ASC', + TickerExternalAgentHistoriesSumAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_ASSET_ID_DESC', + TickerExternalAgentHistoriesSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_CREATED_AT_ASC', + TickerExternalAgentHistoriesSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_CREATED_AT_DESC', + TickerExternalAgentHistoriesSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesSumDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_DATETIME_ASC', + TickerExternalAgentHistoriesSumDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_DATETIME_DESC', + TickerExternalAgentHistoriesSumEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_EVENT_IDX_ASC', + TickerExternalAgentHistoriesSumEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_EVENT_IDX_DESC', + TickerExternalAgentHistoriesSumIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesSumIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesSumIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_ID_ASC', + TickerExternalAgentHistoriesSumIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_ID_DESC', + TickerExternalAgentHistoriesSumPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_PERMISSIONS_ASC', + TickerExternalAgentHistoriesSumPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_PERMISSIONS_DESC', + TickerExternalAgentHistoriesSumTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_TYPE_ASC', + TickerExternalAgentHistoriesSumTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_TYPE_DESC', + TickerExternalAgentHistoriesSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentHistoriesVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentHistoriesVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentHistoriesVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentHistoriesVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesVariancePopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_DATETIME_ASC', + TickerExternalAgentHistoriesVariancePopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_DATETIME_DESC', + TickerExternalAgentHistoriesVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentHistoriesVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentHistoriesVariancePopulationIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesVariancePopulationIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentHistoriesVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentHistoriesVariancePopulationPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_PERMISSIONS_ASC', + TickerExternalAgentHistoriesVariancePopulationPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_PERMISSIONS_DESC', + TickerExternalAgentHistoriesVariancePopulationTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_TYPE_ASC', + TickerExternalAgentHistoriesVariancePopulationTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_TYPE_DESC', + TickerExternalAgentHistoriesVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentHistoriesVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentHistoriesVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentHistoriesVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentHistoriesVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesVarianceSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_DATETIME_ASC', + TickerExternalAgentHistoriesVarianceSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_DATETIME_DESC', + TickerExternalAgentHistoriesVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesVarianceSampleIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesVarianceSampleIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentHistoriesVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentHistoriesVarianceSamplePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesVarianceSamplePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesVarianceSampleTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_TYPE_ASC', + TickerExternalAgentHistoriesVarianceSampleTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_TYPE_DESC', + TickerExternalAgentHistoriesVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TotalSupplyAsc = 'TOTAL_SUPPLY_ASC', + TotalSupplyDesc = 'TOTAL_SUPPLY_DESC', + TotalTransfersAsc = 'TOTAL_TRANSFERS_ASC', + TotalTransfersDesc = 'TOTAL_TRANSFERS_DESC', + TransferCompliancesAverageAssetIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_ASSET_ID_ASC', + TransferCompliancesAverageAssetIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_ASSET_ID_DESC', + TransferCompliancesAverageBlockRangeAsc = 'TRANSFER_COMPLIANCES_AVERAGE_BLOCK_RANGE_ASC', + TransferCompliancesAverageBlockRangeDesc = 'TRANSFER_COMPLIANCES_AVERAGE_BLOCK_RANGE_DESC', + TransferCompliancesAverageClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesAverageClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesAverageClaimTypeAsc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_TYPE_ASC', + TransferCompliancesAverageClaimTypeDesc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_TYPE_DESC', + TransferCompliancesAverageClaimValueAsc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_VALUE_ASC', + TransferCompliancesAverageClaimValueDesc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_VALUE_DESC', + TransferCompliancesAverageCreatedAtAsc = 'TRANSFER_COMPLIANCES_AVERAGE_CREATED_AT_ASC', + TransferCompliancesAverageCreatedAtDesc = 'TRANSFER_COMPLIANCES_AVERAGE_CREATED_AT_DESC', + TransferCompliancesAverageCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_CREATED_BLOCK_ID_ASC', + TransferCompliancesAverageCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_CREATED_BLOCK_ID_DESC', + TransferCompliancesAverageIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_ID_ASC', + TransferCompliancesAverageIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_ID_DESC', + TransferCompliancesAverageMaxAsc = 'TRANSFER_COMPLIANCES_AVERAGE_MAX_ASC', + TransferCompliancesAverageMaxDesc = 'TRANSFER_COMPLIANCES_AVERAGE_MAX_DESC', + TransferCompliancesAverageMinAsc = 'TRANSFER_COMPLIANCES_AVERAGE_MIN_ASC', + TransferCompliancesAverageMinDesc = 'TRANSFER_COMPLIANCES_AVERAGE_MIN_DESC', + TransferCompliancesAverageStatTypeIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_STAT_TYPE_ID_ASC', + TransferCompliancesAverageStatTypeIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_STAT_TYPE_ID_DESC', + TransferCompliancesAverageTypeAsc = 'TRANSFER_COMPLIANCES_AVERAGE_TYPE_ASC', + TransferCompliancesAverageTypeDesc = 'TRANSFER_COMPLIANCES_AVERAGE_TYPE_DESC', + TransferCompliancesAverageUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesAverageUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesAverageValueAsc = 'TRANSFER_COMPLIANCES_AVERAGE_VALUE_ASC', + TransferCompliancesAverageValueDesc = 'TRANSFER_COMPLIANCES_AVERAGE_VALUE_DESC', + TransferCompliancesCountAsc = 'TRANSFER_COMPLIANCES_COUNT_ASC', + TransferCompliancesCountDesc = 'TRANSFER_COMPLIANCES_COUNT_DESC', + TransferCompliancesDistinctCountAssetIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_ASSET_ID_ASC', + TransferCompliancesDistinctCountAssetIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_ASSET_ID_DESC', + TransferCompliancesDistinctCountBlockRangeAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TransferCompliancesDistinctCountBlockRangeDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TransferCompliancesDistinctCountClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_ISSUER_ID_ASC', + TransferCompliancesDistinctCountClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_ISSUER_ID_DESC', + TransferCompliancesDistinctCountClaimTypeAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_TYPE_ASC', + TransferCompliancesDistinctCountClaimTypeDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_TYPE_DESC', + TransferCompliancesDistinctCountClaimValueAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_VALUE_ASC', + TransferCompliancesDistinctCountClaimValueDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_VALUE_DESC', + TransferCompliancesDistinctCountCreatedAtAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CREATED_AT_ASC', + TransferCompliancesDistinctCountCreatedAtDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CREATED_AT_DESC', + TransferCompliancesDistinctCountCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TransferCompliancesDistinctCountCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TransferCompliancesDistinctCountIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_ID_ASC', + TransferCompliancesDistinctCountIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_ID_DESC', + TransferCompliancesDistinctCountMaxAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_MAX_ASC', + TransferCompliancesDistinctCountMaxDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_MAX_DESC', + TransferCompliancesDistinctCountMinAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_MIN_ASC', + TransferCompliancesDistinctCountMinDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_MIN_DESC', + TransferCompliancesDistinctCountStatTypeIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_STAT_TYPE_ID_ASC', + TransferCompliancesDistinctCountStatTypeIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_STAT_TYPE_ID_DESC', + TransferCompliancesDistinctCountTypeAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_TYPE_ASC', + TransferCompliancesDistinctCountTypeDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_TYPE_DESC', + TransferCompliancesDistinctCountUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TransferCompliancesDistinctCountUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TransferCompliancesDistinctCountValueAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_VALUE_ASC', + TransferCompliancesDistinctCountValueDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_VALUE_DESC', + TransferCompliancesMaxAssetIdAsc = 'TRANSFER_COMPLIANCES_MAX_ASSET_ID_ASC', + TransferCompliancesMaxAssetIdDesc = 'TRANSFER_COMPLIANCES_MAX_ASSET_ID_DESC', + TransferCompliancesMaxBlockRangeAsc = 'TRANSFER_COMPLIANCES_MAX_BLOCK_RANGE_ASC', + TransferCompliancesMaxBlockRangeDesc = 'TRANSFER_COMPLIANCES_MAX_BLOCK_RANGE_DESC', + TransferCompliancesMaxClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_ISSUER_ID_ASC', + TransferCompliancesMaxClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_ISSUER_ID_DESC', + TransferCompliancesMaxClaimTypeAsc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_TYPE_ASC', + TransferCompliancesMaxClaimTypeDesc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_TYPE_DESC', + TransferCompliancesMaxClaimValueAsc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_VALUE_ASC', + TransferCompliancesMaxClaimValueDesc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_VALUE_DESC', + TransferCompliancesMaxCreatedAtAsc = 'TRANSFER_COMPLIANCES_MAX_CREATED_AT_ASC', + TransferCompliancesMaxCreatedAtDesc = 'TRANSFER_COMPLIANCES_MAX_CREATED_AT_DESC', + TransferCompliancesMaxCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_MAX_CREATED_BLOCK_ID_ASC', + TransferCompliancesMaxCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_MAX_CREATED_BLOCK_ID_DESC', + TransferCompliancesMaxIdAsc = 'TRANSFER_COMPLIANCES_MAX_ID_ASC', + TransferCompliancesMaxIdDesc = 'TRANSFER_COMPLIANCES_MAX_ID_DESC', + TransferCompliancesMaxMaxAsc = 'TRANSFER_COMPLIANCES_MAX_MAX_ASC', + TransferCompliancesMaxMaxDesc = 'TRANSFER_COMPLIANCES_MAX_MAX_DESC', + TransferCompliancesMaxMinAsc = 'TRANSFER_COMPLIANCES_MAX_MIN_ASC', + TransferCompliancesMaxMinDesc = 'TRANSFER_COMPLIANCES_MAX_MIN_DESC', + TransferCompliancesMaxStatTypeIdAsc = 'TRANSFER_COMPLIANCES_MAX_STAT_TYPE_ID_ASC', + TransferCompliancesMaxStatTypeIdDesc = 'TRANSFER_COMPLIANCES_MAX_STAT_TYPE_ID_DESC', + TransferCompliancesMaxTypeAsc = 'TRANSFER_COMPLIANCES_MAX_TYPE_ASC', + TransferCompliancesMaxTypeDesc = 'TRANSFER_COMPLIANCES_MAX_TYPE_DESC', + TransferCompliancesMaxUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_MAX_UPDATED_BLOCK_ID_ASC', + TransferCompliancesMaxUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_MAX_UPDATED_BLOCK_ID_DESC', + TransferCompliancesMaxValueAsc = 'TRANSFER_COMPLIANCES_MAX_VALUE_ASC', + TransferCompliancesMaxValueDesc = 'TRANSFER_COMPLIANCES_MAX_VALUE_DESC', + TransferCompliancesMinAssetIdAsc = 'TRANSFER_COMPLIANCES_MIN_ASSET_ID_ASC', + TransferCompliancesMinAssetIdDesc = 'TRANSFER_COMPLIANCES_MIN_ASSET_ID_DESC', + TransferCompliancesMinBlockRangeAsc = 'TRANSFER_COMPLIANCES_MIN_BLOCK_RANGE_ASC', + TransferCompliancesMinBlockRangeDesc = 'TRANSFER_COMPLIANCES_MIN_BLOCK_RANGE_DESC', + TransferCompliancesMinClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_ISSUER_ID_ASC', + TransferCompliancesMinClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_ISSUER_ID_DESC', + TransferCompliancesMinClaimTypeAsc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_TYPE_ASC', + TransferCompliancesMinClaimTypeDesc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_TYPE_DESC', + TransferCompliancesMinClaimValueAsc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_VALUE_ASC', + TransferCompliancesMinClaimValueDesc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_VALUE_DESC', + TransferCompliancesMinCreatedAtAsc = 'TRANSFER_COMPLIANCES_MIN_CREATED_AT_ASC', + TransferCompliancesMinCreatedAtDesc = 'TRANSFER_COMPLIANCES_MIN_CREATED_AT_DESC', + TransferCompliancesMinCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_MIN_CREATED_BLOCK_ID_ASC', + TransferCompliancesMinCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_MIN_CREATED_BLOCK_ID_DESC', + TransferCompliancesMinIdAsc = 'TRANSFER_COMPLIANCES_MIN_ID_ASC', + TransferCompliancesMinIdDesc = 'TRANSFER_COMPLIANCES_MIN_ID_DESC', + TransferCompliancesMinMaxAsc = 'TRANSFER_COMPLIANCES_MIN_MAX_ASC', + TransferCompliancesMinMaxDesc = 'TRANSFER_COMPLIANCES_MIN_MAX_DESC', + TransferCompliancesMinMinAsc = 'TRANSFER_COMPLIANCES_MIN_MIN_ASC', + TransferCompliancesMinMinDesc = 'TRANSFER_COMPLIANCES_MIN_MIN_DESC', + TransferCompliancesMinStatTypeIdAsc = 'TRANSFER_COMPLIANCES_MIN_STAT_TYPE_ID_ASC', + TransferCompliancesMinStatTypeIdDesc = 'TRANSFER_COMPLIANCES_MIN_STAT_TYPE_ID_DESC', + TransferCompliancesMinTypeAsc = 'TRANSFER_COMPLIANCES_MIN_TYPE_ASC', + TransferCompliancesMinTypeDesc = 'TRANSFER_COMPLIANCES_MIN_TYPE_DESC', + TransferCompliancesMinUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_MIN_UPDATED_BLOCK_ID_ASC', + TransferCompliancesMinUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_MIN_UPDATED_BLOCK_ID_DESC', + TransferCompliancesMinValueAsc = 'TRANSFER_COMPLIANCES_MIN_VALUE_ASC', + TransferCompliancesMinValueDesc = 'TRANSFER_COMPLIANCES_MIN_VALUE_DESC', + TransferCompliancesStddevPopulationAssetIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_ASSET_ID_ASC', + TransferCompliancesStddevPopulationAssetIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_ASSET_ID_DESC', + TransferCompliancesStddevPopulationBlockRangeAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TransferCompliancesStddevPopulationBlockRangeDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TransferCompliancesStddevPopulationClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_ISSUER_ID_ASC', + TransferCompliancesStddevPopulationClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_ISSUER_ID_DESC', + TransferCompliancesStddevPopulationClaimTypeAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_TYPE_ASC', + TransferCompliancesStddevPopulationClaimTypeDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_TYPE_DESC', + TransferCompliancesStddevPopulationClaimValueAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_VALUE_ASC', + TransferCompliancesStddevPopulationClaimValueDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_VALUE_DESC', + TransferCompliancesStddevPopulationCreatedAtAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CREATED_AT_ASC', + TransferCompliancesStddevPopulationCreatedAtDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CREATED_AT_DESC', + TransferCompliancesStddevPopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TransferCompliancesStddevPopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TransferCompliancesStddevPopulationIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_ID_ASC', + TransferCompliancesStddevPopulationIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_ID_DESC', + TransferCompliancesStddevPopulationMaxAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_MAX_ASC', + TransferCompliancesStddevPopulationMaxDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_MAX_DESC', + TransferCompliancesStddevPopulationMinAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_MIN_ASC', + TransferCompliancesStddevPopulationMinDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_MIN_DESC', + TransferCompliancesStddevPopulationStatTypeIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_STAT_TYPE_ID_ASC', + TransferCompliancesStddevPopulationStatTypeIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_STAT_TYPE_ID_DESC', + TransferCompliancesStddevPopulationTypeAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_TYPE_ASC', + TransferCompliancesStddevPopulationTypeDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_TYPE_DESC', + TransferCompliancesStddevPopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferCompliancesStddevPopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferCompliancesStddevPopulationValueAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_VALUE_ASC', + TransferCompliancesStddevPopulationValueDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_VALUE_DESC', + TransferCompliancesStddevSampleAssetIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_ASSET_ID_ASC', + TransferCompliancesStddevSampleAssetIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_ASSET_ID_DESC', + TransferCompliancesStddevSampleBlockRangeAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TransferCompliancesStddevSampleBlockRangeDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TransferCompliancesStddevSampleClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesStddevSampleClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesStddevSampleClaimTypeAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + TransferCompliancesStddevSampleClaimTypeDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + TransferCompliancesStddevSampleClaimValueAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_VALUE_ASC', + TransferCompliancesStddevSampleClaimValueDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_VALUE_DESC', + TransferCompliancesStddevSampleCreatedAtAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CREATED_AT_ASC', + TransferCompliancesStddevSampleCreatedAtDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CREATED_AT_DESC', + TransferCompliancesStddevSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferCompliancesStddevSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferCompliancesStddevSampleIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_ID_ASC', + TransferCompliancesStddevSampleIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_ID_DESC', + TransferCompliancesStddevSampleMaxAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_MAX_ASC', + TransferCompliancesStddevSampleMaxDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_MAX_DESC', + TransferCompliancesStddevSampleMinAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_MIN_ASC', + TransferCompliancesStddevSampleMinDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_MIN_DESC', + TransferCompliancesStddevSampleStatTypeIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_STAT_TYPE_ID_ASC', + TransferCompliancesStddevSampleStatTypeIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_STAT_TYPE_ID_DESC', + TransferCompliancesStddevSampleTypeAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_TYPE_ASC', + TransferCompliancesStddevSampleTypeDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_TYPE_DESC', + TransferCompliancesStddevSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesStddevSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesStddevSampleValueAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_VALUE_ASC', + TransferCompliancesStddevSampleValueDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_VALUE_DESC', + TransferCompliancesSumAssetIdAsc = 'TRANSFER_COMPLIANCES_SUM_ASSET_ID_ASC', + TransferCompliancesSumAssetIdDesc = 'TRANSFER_COMPLIANCES_SUM_ASSET_ID_DESC', + TransferCompliancesSumBlockRangeAsc = 'TRANSFER_COMPLIANCES_SUM_BLOCK_RANGE_ASC', + TransferCompliancesSumBlockRangeDesc = 'TRANSFER_COMPLIANCES_SUM_BLOCK_RANGE_DESC', + TransferCompliancesSumClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_ISSUER_ID_ASC', + TransferCompliancesSumClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_ISSUER_ID_DESC', + TransferCompliancesSumClaimTypeAsc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_TYPE_ASC', + TransferCompliancesSumClaimTypeDesc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_TYPE_DESC', + TransferCompliancesSumClaimValueAsc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_VALUE_ASC', + TransferCompliancesSumClaimValueDesc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_VALUE_DESC', + TransferCompliancesSumCreatedAtAsc = 'TRANSFER_COMPLIANCES_SUM_CREATED_AT_ASC', + TransferCompliancesSumCreatedAtDesc = 'TRANSFER_COMPLIANCES_SUM_CREATED_AT_DESC', + TransferCompliancesSumCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_SUM_CREATED_BLOCK_ID_ASC', + TransferCompliancesSumCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_SUM_CREATED_BLOCK_ID_DESC', + TransferCompliancesSumIdAsc = 'TRANSFER_COMPLIANCES_SUM_ID_ASC', + TransferCompliancesSumIdDesc = 'TRANSFER_COMPLIANCES_SUM_ID_DESC', + TransferCompliancesSumMaxAsc = 'TRANSFER_COMPLIANCES_SUM_MAX_ASC', + TransferCompliancesSumMaxDesc = 'TRANSFER_COMPLIANCES_SUM_MAX_DESC', + TransferCompliancesSumMinAsc = 'TRANSFER_COMPLIANCES_SUM_MIN_ASC', + TransferCompliancesSumMinDesc = 'TRANSFER_COMPLIANCES_SUM_MIN_DESC', + TransferCompliancesSumStatTypeIdAsc = 'TRANSFER_COMPLIANCES_SUM_STAT_TYPE_ID_ASC', + TransferCompliancesSumStatTypeIdDesc = 'TRANSFER_COMPLIANCES_SUM_STAT_TYPE_ID_DESC', + TransferCompliancesSumTypeAsc = 'TRANSFER_COMPLIANCES_SUM_TYPE_ASC', + TransferCompliancesSumTypeDesc = 'TRANSFER_COMPLIANCES_SUM_TYPE_DESC', + TransferCompliancesSumUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_SUM_UPDATED_BLOCK_ID_ASC', + TransferCompliancesSumUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_SUM_UPDATED_BLOCK_ID_DESC', + TransferCompliancesSumValueAsc = 'TRANSFER_COMPLIANCES_SUM_VALUE_ASC', + TransferCompliancesSumValueDesc = 'TRANSFER_COMPLIANCES_SUM_VALUE_DESC', + TransferCompliancesVariancePopulationAssetIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_ASSET_ID_ASC', + TransferCompliancesVariancePopulationAssetIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_ASSET_ID_DESC', + TransferCompliancesVariancePopulationBlockRangeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TransferCompliancesVariancePopulationBlockRangeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TransferCompliancesVariancePopulationClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_ISSUER_ID_ASC', + TransferCompliancesVariancePopulationClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_ISSUER_ID_DESC', + TransferCompliancesVariancePopulationClaimTypeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + TransferCompliancesVariancePopulationClaimTypeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + TransferCompliancesVariancePopulationClaimValueAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_VALUE_ASC', + TransferCompliancesVariancePopulationClaimValueDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_VALUE_DESC', + TransferCompliancesVariancePopulationCreatedAtAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CREATED_AT_ASC', + TransferCompliancesVariancePopulationCreatedAtDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CREATED_AT_DESC', + TransferCompliancesVariancePopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TransferCompliancesVariancePopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TransferCompliancesVariancePopulationIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_ID_ASC', + TransferCompliancesVariancePopulationIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_ID_DESC', + TransferCompliancesVariancePopulationMaxAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_MAX_ASC', + TransferCompliancesVariancePopulationMaxDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_MAX_DESC', + TransferCompliancesVariancePopulationMinAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_MIN_ASC', + TransferCompliancesVariancePopulationMinDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_MIN_DESC', + TransferCompliancesVariancePopulationStatTypeIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_STAT_TYPE_ID_ASC', + TransferCompliancesVariancePopulationStatTypeIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_STAT_TYPE_ID_DESC', + TransferCompliancesVariancePopulationTypeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_TYPE_ASC', + TransferCompliancesVariancePopulationTypeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_TYPE_DESC', + TransferCompliancesVariancePopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferCompliancesVariancePopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferCompliancesVariancePopulationValueAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_VALUE_ASC', + TransferCompliancesVariancePopulationValueDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_VALUE_DESC', + TransferCompliancesVarianceSampleAssetIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_ASSET_ID_ASC', + TransferCompliancesVarianceSampleAssetIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_ASSET_ID_DESC', + TransferCompliancesVarianceSampleBlockRangeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TransferCompliancesVarianceSampleBlockRangeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TransferCompliancesVarianceSampleClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesVarianceSampleClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesVarianceSampleClaimTypeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + TransferCompliancesVarianceSampleClaimTypeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + TransferCompliancesVarianceSampleClaimValueAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_VALUE_ASC', + TransferCompliancesVarianceSampleClaimValueDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_VALUE_DESC', + TransferCompliancesVarianceSampleCreatedAtAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CREATED_AT_ASC', + TransferCompliancesVarianceSampleCreatedAtDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CREATED_AT_DESC', + TransferCompliancesVarianceSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferCompliancesVarianceSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferCompliancesVarianceSampleIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_ID_ASC', + TransferCompliancesVarianceSampleIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_ID_DESC', + TransferCompliancesVarianceSampleMaxAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_MAX_ASC', + TransferCompliancesVarianceSampleMaxDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_MAX_DESC', + TransferCompliancesVarianceSampleMinAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_MIN_ASC', + TransferCompliancesVarianceSampleMinDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_MIN_DESC', + TransferCompliancesVarianceSampleStatTypeIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_STAT_TYPE_ID_ASC', + TransferCompliancesVarianceSampleStatTypeIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_STAT_TYPE_ID_DESC', + TransferCompliancesVarianceSampleTypeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_TYPE_ASC', + TransferCompliancesVarianceSampleTypeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_TYPE_DESC', + TransferCompliancesVarianceSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesVarianceSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesVarianceSampleValueAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_VALUE_ASC', + TransferCompliancesVarianceSampleValueDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_VALUE_DESC', + TransferComplianceExemptionsAverageAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_ASSET_ID_ASC', + TransferComplianceExemptionsAverageAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_ASSET_ID_DESC', + TransferComplianceExemptionsAverageBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_BLOCK_RANGE_ASC', + TransferComplianceExemptionsAverageBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_BLOCK_RANGE_DESC', + TransferComplianceExemptionsAverageClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_CLAIM_TYPE_ASC', + TransferComplianceExemptionsAverageClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_CLAIM_TYPE_DESC', + TransferComplianceExemptionsAverageCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_CREATED_AT_ASC', + TransferComplianceExemptionsAverageCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_CREATED_AT_DESC', + TransferComplianceExemptionsAverageCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsAverageCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsAverageExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsAverageExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsAverageIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_ID_ASC', + TransferComplianceExemptionsAverageIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_ID_DESC', + TransferComplianceExemptionsAverageOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_OP_TYPE_ASC', + TransferComplianceExemptionsAverageOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_OP_TYPE_DESC', + TransferComplianceExemptionsAverageUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsAverageUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsCountAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_COUNT_ASC', + TransferComplianceExemptionsCountDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_COUNT_DESC', + TransferComplianceExemptionsDistinctCountAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_ASSET_ID_ASC', + TransferComplianceExemptionsDistinctCountAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_ASSET_ID_DESC', + TransferComplianceExemptionsDistinctCountBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TransferComplianceExemptionsDistinctCountBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TransferComplianceExemptionsDistinctCountClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_CLAIM_TYPE_ASC', + TransferComplianceExemptionsDistinctCountClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_CLAIM_TYPE_DESC', + TransferComplianceExemptionsDistinctCountCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_CREATED_AT_ASC', + TransferComplianceExemptionsDistinctCountCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_CREATED_AT_DESC', + TransferComplianceExemptionsDistinctCountCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsDistinctCountCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsDistinctCountExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsDistinctCountExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsDistinctCountIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_ID_ASC', + TransferComplianceExemptionsDistinctCountIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_ID_DESC', + TransferComplianceExemptionsDistinctCountOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_OP_TYPE_ASC', + TransferComplianceExemptionsDistinctCountOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_OP_TYPE_DESC', + TransferComplianceExemptionsDistinctCountUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsDistinctCountUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsMaxAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_ASSET_ID_ASC', + TransferComplianceExemptionsMaxAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_ASSET_ID_DESC', + TransferComplianceExemptionsMaxBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_BLOCK_RANGE_ASC', + TransferComplianceExemptionsMaxBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_BLOCK_RANGE_DESC', + TransferComplianceExemptionsMaxClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_CLAIM_TYPE_ASC', + TransferComplianceExemptionsMaxClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_CLAIM_TYPE_DESC', + TransferComplianceExemptionsMaxCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_CREATED_AT_ASC', + TransferComplianceExemptionsMaxCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_CREATED_AT_DESC', + TransferComplianceExemptionsMaxCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsMaxCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsMaxExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsMaxExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsMaxIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_ID_ASC', + TransferComplianceExemptionsMaxIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_ID_DESC', + TransferComplianceExemptionsMaxOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_OP_TYPE_ASC', + TransferComplianceExemptionsMaxOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_OP_TYPE_DESC', + TransferComplianceExemptionsMaxUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsMaxUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MAX_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsMinAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_ASSET_ID_ASC', + TransferComplianceExemptionsMinAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_ASSET_ID_DESC', + TransferComplianceExemptionsMinBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_BLOCK_RANGE_ASC', + TransferComplianceExemptionsMinBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_BLOCK_RANGE_DESC', + TransferComplianceExemptionsMinClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_CLAIM_TYPE_ASC', + TransferComplianceExemptionsMinClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_CLAIM_TYPE_DESC', + TransferComplianceExemptionsMinCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_CREATED_AT_ASC', + TransferComplianceExemptionsMinCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_CREATED_AT_DESC', + TransferComplianceExemptionsMinCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsMinCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsMinExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsMinExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsMinIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_ID_ASC', + TransferComplianceExemptionsMinIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_ID_DESC', + TransferComplianceExemptionsMinOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_OP_TYPE_ASC', + TransferComplianceExemptionsMinOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_OP_TYPE_DESC', + TransferComplianceExemptionsMinUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsMinUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_MIN_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsStddevPopulationAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_ASSET_ID_ASC', + TransferComplianceExemptionsStddevPopulationAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_ASSET_ID_DESC', + TransferComplianceExemptionsStddevPopulationBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TransferComplianceExemptionsStddevPopulationBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TransferComplianceExemptionsStddevPopulationClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_CLAIM_TYPE_ASC', + TransferComplianceExemptionsStddevPopulationClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_CLAIM_TYPE_DESC', + TransferComplianceExemptionsStddevPopulationCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_CREATED_AT_ASC', + TransferComplianceExemptionsStddevPopulationCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_CREATED_AT_DESC', + TransferComplianceExemptionsStddevPopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsStddevPopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsStddevPopulationExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsStddevPopulationExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsStddevPopulationIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_ID_ASC', + TransferComplianceExemptionsStddevPopulationIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_ID_DESC', + TransferComplianceExemptionsStddevPopulationOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_OP_TYPE_ASC', + TransferComplianceExemptionsStddevPopulationOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_OP_TYPE_DESC', + TransferComplianceExemptionsStddevPopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsStddevPopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsStddevSampleAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_ASSET_ID_ASC', + TransferComplianceExemptionsStddevSampleAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_ASSET_ID_DESC', + TransferComplianceExemptionsStddevSampleBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TransferComplianceExemptionsStddevSampleBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TransferComplianceExemptionsStddevSampleClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + TransferComplianceExemptionsStddevSampleClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + TransferComplianceExemptionsStddevSampleCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + TransferComplianceExemptionsStddevSampleCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + TransferComplianceExemptionsStddevSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsStddevSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsStddevSampleExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsStddevSampleExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsStddevSampleIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_ID_ASC', + TransferComplianceExemptionsStddevSampleIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_ID_DESC', + TransferComplianceExemptionsStddevSampleOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_OP_TYPE_ASC', + TransferComplianceExemptionsStddevSampleOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_OP_TYPE_DESC', + TransferComplianceExemptionsStddevSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsStddevSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsSumAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_ASSET_ID_ASC', + TransferComplianceExemptionsSumAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_ASSET_ID_DESC', + TransferComplianceExemptionsSumBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_BLOCK_RANGE_ASC', + TransferComplianceExemptionsSumBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_BLOCK_RANGE_DESC', + TransferComplianceExemptionsSumClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_CLAIM_TYPE_ASC', + TransferComplianceExemptionsSumClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_CLAIM_TYPE_DESC', + TransferComplianceExemptionsSumCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_CREATED_AT_ASC', + TransferComplianceExemptionsSumCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_CREATED_AT_DESC', + TransferComplianceExemptionsSumCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsSumCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsSumExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsSumExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsSumIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_ID_ASC', + TransferComplianceExemptionsSumIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_ID_DESC', + TransferComplianceExemptionsSumOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_OP_TYPE_ASC', + TransferComplianceExemptionsSumOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_OP_TYPE_DESC', + TransferComplianceExemptionsSumUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsSumUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_SUM_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsVariancePopulationAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_ASSET_ID_ASC', + TransferComplianceExemptionsVariancePopulationAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_ASSET_ID_DESC', + TransferComplianceExemptionsVariancePopulationBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TransferComplianceExemptionsVariancePopulationBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TransferComplianceExemptionsVariancePopulationClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + TransferComplianceExemptionsVariancePopulationClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + TransferComplianceExemptionsVariancePopulationCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + TransferComplianceExemptionsVariancePopulationCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + TransferComplianceExemptionsVariancePopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsVariancePopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsVariancePopulationExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsVariancePopulationExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsVariancePopulationIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_ID_ASC', + TransferComplianceExemptionsVariancePopulationIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_ID_DESC', + TransferComplianceExemptionsVariancePopulationOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_OP_TYPE_ASC', + TransferComplianceExemptionsVariancePopulationOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_OP_TYPE_DESC', + TransferComplianceExemptionsVariancePopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsVariancePopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsVarianceSampleAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_ASSET_ID_ASC', + TransferComplianceExemptionsVarianceSampleAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_ASSET_ID_DESC', + TransferComplianceExemptionsVarianceSampleBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TransferComplianceExemptionsVarianceSampleBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TransferComplianceExemptionsVarianceSampleClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + TransferComplianceExemptionsVarianceSampleClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + TransferComplianceExemptionsVarianceSampleCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + TransferComplianceExemptionsVarianceSampleCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + TransferComplianceExemptionsVarianceSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsVarianceSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsVarianceSampleExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsVarianceSampleExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsVarianceSampleIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_ID_ASC', + TransferComplianceExemptionsVarianceSampleIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_ID_DESC', + TransferComplianceExemptionsVarianceSampleOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_OP_TYPE_ASC', + TransferComplianceExemptionsVarianceSampleOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_OP_TYPE_DESC', + TransferComplianceExemptionsVarianceSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsVarianceSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferManagersAverageAssetIdAsc = 'TRANSFER_MANAGERS_AVERAGE_ASSET_ID_ASC', + TransferManagersAverageAssetIdDesc = 'TRANSFER_MANAGERS_AVERAGE_ASSET_ID_DESC', + TransferManagersAverageBlockRangeAsc = 'TRANSFER_MANAGERS_AVERAGE_BLOCK_RANGE_ASC', + TransferManagersAverageBlockRangeDesc = 'TRANSFER_MANAGERS_AVERAGE_BLOCK_RANGE_DESC', + TransferManagersAverageCreatedAtAsc = 'TRANSFER_MANAGERS_AVERAGE_CREATED_AT_ASC', + TransferManagersAverageCreatedAtDesc = 'TRANSFER_MANAGERS_AVERAGE_CREATED_AT_DESC', + TransferManagersAverageCreatedBlockIdAsc = 'TRANSFER_MANAGERS_AVERAGE_CREATED_BLOCK_ID_ASC', + TransferManagersAverageCreatedBlockIdDesc = 'TRANSFER_MANAGERS_AVERAGE_CREATED_BLOCK_ID_DESC', + TransferManagersAverageExemptedEntitiesAsc = 'TRANSFER_MANAGERS_AVERAGE_EXEMPTED_ENTITIES_ASC', + TransferManagersAverageExemptedEntitiesDesc = 'TRANSFER_MANAGERS_AVERAGE_EXEMPTED_ENTITIES_DESC', + TransferManagersAverageIdAsc = 'TRANSFER_MANAGERS_AVERAGE_ID_ASC', + TransferManagersAverageIdDesc = 'TRANSFER_MANAGERS_AVERAGE_ID_DESC', + TransferManagersAverageTypeAsc = 'TRANSFER_MANAGERS_AVERAGE_TYPE_ASC', + TransferManagersAverageTypeDesc = 'TRANSFER_MANAGERS_AVERAGE_TYPE_DESC', + TransferManagersAverageUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_AVERAGE_UPDATED_BLOCK_ID_ASC', + TransferManagersAverageUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_AVERAGE_UPDATED_BLOCK_ID_DESC', + TransferManagersAverageValueAsc = 'TRANSFER_MANAGERS_AVERAGE_VALUE_ASC', + TransferManagersAverageValueDesc = 'TRANSFER_MANAGERS_AVERAGE_VALUE_DESC', + TransferManagersCountAsc = 'TRANSFER_MANAGERS_COUNT_ASC', + TransferManagersCountDesc = 'TRANSFER_MANAGERS_COUNT_DESC', + TransferManagersDistinctCountAssetIdAsc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_ASSET_ID_ASC', + TransferManagersDistinctCountAssetIdDesc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_ASSET_ID_DESC', + TransferManagersDistinctCountBlockRangeAsc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TransferManagersDistinctCountBlockRangeDesc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TransferManagersDistinctCountCreatedAtAsc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_CREATED_AT_ASC', + TransferManagersDistinctCountCreatedAtDesc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_CREATED_AT_DESC', + TransferManagersDistinctCountCreatedBlockIdAsc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TransferManagersDistinctCountCreatedBlockIdDesc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TransferManagersDistinctCountExemptedEntitiesAsc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_EXEMPTED_ENTITIES_ASC', + TransferManagersDistinctCountExemptedEntitiesDesc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_EXEMPTED_ENTITIES_DESC', + TransferManagersDistinctCountIdAsc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_ID_ASC', + TransferManagersDistinctCountIdDesc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_ID_DESC', + TransferManagersDistinctCountTypeAsc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_TYPE_ASC', + TransferManagersDistinctCountTypeDesc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_TYPE_DESC', + TransferManagersDistinctCountUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TransferManagersDistinctCountUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TransferManagersDistinctCountValueAsc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_VALUE_ASC', + TransferManagersDistinctCountValueDesc = 'TRANSFER_MANAGERS_DISTINCT_COUNT_VALUE_DESC', + TransferManagersMaxAssetIdAsc = 'TRANSFER_MANAGERS_MAX_ASSET_ID_ASC', + TransferManagersMaxAssetIdDesc = 'TRANSFER_MANAGERS_MAX_ASSET_ID_DESC', + TransferManagersMaxBlockRangeAsc = 'TRANSFER_MANAGERS_MAX_BLOCK_RANGE_ASC', + TransferManagersMaxBlockRangeDesc = 'TRANSFER_MANAGERS_MAX_BLOCK_RANGE_DESC', + TransferManagersMaxCreatedAtAsc = 'TRANSFER_MANAGERS_MAX_CREATED_AT_ASC', + TransferManagersMaxCreatedAtDesc = 'TRANSFER_MANAGERS_MAX_CREATED_AT_DESC', + TransferManagersMaxCreatedBlockIdAsc = 'TRANSFER_MANAGERS_MAX_CREATED_BLOCK_ID_ASC', + TransferManagersMaxCreatedBlockIdDesc = 'TRANSFER_MANAGERS_MAX_CREATED_BLOCK_ID_DESC', + TransferManagersMaxExemptedEntitiesAsc = 'TRANSFER_MANAGERS_MAX_EXEMPTED_ENTITIES_ASC', + TransferManagersMaxExemptedEntitiesDesc = 'TRANSFER_MANAGERS_MAX_EXEMPTED_ENTITIES_DESC', + TransferManagersMaxIdAsc = 'TRANSFER_MANAGERS_MAX_ID_ASC', + TransferManagersMaxIdDesc = 'TRANSFER_MANAGERS_MAX_ID_DESC', + TransferManagersMaxTypeAsc = 'TRANSFER_MANAGERS_MAX_TYPE_ASC', + TransferManagersMaxTypeDesc = 'TRANSFER_MANAGERS_MAX_TYPE_DESC', + TransferManagersMaxUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_MAX_UPDATED_BLOCK_ID_ASC', + TransferManagersMaxUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_MAX_UPDATED_BLOCK_ID_DESC', + TransferManagersMaxValueAsc = 'TRANSFER_MANAGERS_MAX_VALUE_ASC', + TransferManagersMaxValueDesc = 'TRANSFER_MANAGERS_MAX_VALUE_DESC', + TransferManagersMinAssetIdAsc = 'TRANSFER_MANAGERS_MIN_ASSET_ID_ASC', + TransferManagersMinAssetIdDesc = 'TRANSFER_MANAGERS_MIN_ASSET_ID_DESC', + TransferManagersMinBlockRangeAsc = 'TRANSFER_MANAGERS_MIN_BLOCK_RANGE_ASC', + TransferManagersMinBlockRangeDesc = 'TRANSFER_MANAGERS_MIN_BLOCK_RANGE_DESC', + TransferManagersMinCreatedAtAsc = 'TRANSFER_MANAGERS_MIN_CREATED_AT_ASC', + TransferManagersMinCreatedAtDesc = 'TRANSFER_MANAGERS_MIN_CREATED_AT_DESC', + TransferManagersMinCreatedBlockIdAsc = 'TRANSFER_MANAGERS_MIN_CREATED_BLOCK_ID_ASC', + TransferManagersMinCreatedBlockIdDesc = 'TRANSFER_MANAGERS_MIN_CREATED_BLOCK_ID_DESC', + TransferManagersMinExemptedEntitiesAsc = 'TRANSFER_MANAGERS_MIN_EXEMPTED_ENTITIES_ASC', + TransferManagersMinExemptedEntitiesDesc = 'TRANSFER_MANAGERS_MIN_EXEMPTED_ENTITIES_DESC', + TransferManagersMinIdAsc = 'TRANSFER_MANAGERS_MIN_ID_ASC', + TransferManagersMinIdDesc = 'TRANSFER_MANAGERS_MIN_ID_DESC', + TransferManagersMinTypeAsc = 'TRANSFER_MANAGERS_MIN_TYPE_ASC', + TransferManagersMinTypeDesc = 'TRANSFER_MANAGERS_MIN_TYPE_DESC', + TransferManagersMinUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_MIN_UPDATED_BLOCK_ID_ASC', + TransferManagersMinUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_MIN_UPDATED_BLOCK_ID_DESC', + TransferManagersMinValueAsc = 'TRANSFER_MANAGERS_MIN_VALUE_ASC', + TransferManagersMinValueDesc = 'TRANSFER_MANAGERS_MIN_VALUE_DESC', + TransferManagersStddevPopulationAssetIdAsc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_ASSET_ID_ASC', + TransferManagersStddevPopulationAssetIdDesc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_ASSET_ID_DESC', + TransferManagersStddevPopulationBlockRangeAsc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TransferManagersStddevPopulationBlockRangeDesc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TransferManagersStddevPopulationCreatedAtAsc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_CREATED_AT_ASC', + TransferManagersStddevPopulationCreatedAtDesc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_CREATED_AT_DESC', + TransferManagersStddevPopulationCreatedBlockIdAsc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TransferManagersStddevPopulationCreatedBlockIdDesc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TransferManagersStddevPopulationExemptedEntitiesAsc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_EXEMPTED_ENTITIES_ASC', + TransferManagersStddevPopulationExemptedEntitiesDesc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_EXEMPTED_ENTITIES_DESC', + TransferManagersStddevPopulationIdAsc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_ID_ASC', + TransferManagersStddevPopulationIdDesc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_ID_DESC', + TransferManagersStddevPopulationTypeAsc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_TYPE_ASC', + TransferManagersStddevPopulationTypeDesc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_TYPE_DESC', + TransferManagersStddevPopulationUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferManagersStddevPopulationUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferManagersStddevPopulationValueAsc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_VALUE_ASC', + TransferManagersStddevPopulationValueDesc = 'TRANSFER_MANAGERS_STDDEV_POPULATION_VALUE_DESC', + TransferManagersStddevSampleAssetIdAsc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_ASSET_ID_ASC', + TransferManagersStddevSampleAssetIdDesc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_ASSET_ID_DESC', + TransferManagersStddevSampleBlockRangeAsc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TransferManagersStddevSampleBlockRangeDesc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TransferManagersStddevSampleCreatedAtAsc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_CREATED_AT_ASC', + TransferManagersStddevSampleCreatedAtDesc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_CREATED_AT_DESC', + TransferManagersStddevSampleCreatedBlockIdAsc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferManagersStddevSampleCreatedBlockIdDesc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferManagersStddevSampleExemptedEntitiesAsc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_EXEMPTED_ENTITIES_ASC', + TransferManagersStddevSampleExemptedEntitiesDesc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_EXEMPTED_ENTITIES_DESC', + TransferManagersStddevSampleIdAsc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_ID_ASC', + TransferManagersStddevSampleIdDesc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_ID_DESC', + TransferManagersStddevSampleTypeAsc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_TYPE_ASC', + TransferManagersStddevSampleTypeDesc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_TYPE_DESC', + TransferManagersStddevSampleUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferManagersStddevSampleUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferManagersStddevSampleValueAsc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_VALUE_ASC', + TransferManagersStddevSampleValueDesc = 'TRANSFER_MANAGERS_STDDEV_SAMPLE_VALUE_DESC', + TransferManagersSumAssetIdAsc = 'TRANSFER_MANAGERS_SUM_ASSET_ID_ASC', + TransferManagersSumAssetIdDesc = 'TRANSFER_MANAGERS_SUM_ASSET_ID_DESC', + TransferManagersSumBlockRangeAsc = 'TRANSFER_MANAGERS_SUM_BLOCK_RANGE_ASC', + TransferManagersSumBlockRangeDesc = 'TRANSFER_MANAGERS_SUM_BLOCK_RANGE_DESC', + TransferManagersSumCreatedAtAsc = 'TRANSFER_MANAGERS_SUM_CREATED_AT_ASC', + TransferManagersSumCreatedAtDesc = 'TRANSFER_MANAGERS_SUM_CREATED_AT_DESC', + TransferManagersSumCreatedBlockIdAsc = 'TRANSFER_MANAGERS_SUM_CREATED_BLOCK_ID_ASC', + TransferManagersSumCreatedBlockIdDesc = 'TRANSFER_MANAGERS_SUM_CREATED_BLOCK_ID_DESC', + TransferManagersSumExemptedEntitiesAsc = 'TRANSFER_MANAGERS_SUM_EXEMPTED_ENTITIES_ASC', + TransferManagersSumExemptedEntitiesDesc = 'TRANSFER_MANAGERS_SUM_EXEMPTED_ENTITIES_DESC', + TransferManagersSumIdAsc = 'TRANSFER_MANAGERS_SUM_ID_ASC', + TransferManagersSumIdDesc = 'TRANSFER_MANAGERS_SUM_ID_DESC', + TransferManagersSumTypeAsc = 'TRANSFER_MANAGERS_SUM_TYPE_ASC', + TransferManagersSumTypeDesc = 'TRANSFER_MANAGERS_SUM_TYPE_DESC', + TransferManagersSumUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_SUM_UPDATED_BLOCK_ID_ASC', + TransferManagersSumUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_SUM_UPDATED_BLOCK_ID_DESC', + TransferManagersSumValueAsc = 'TRANSFER_MANAGERS_SUM_VALUE_ASC', + TransferManagersSumValueDesc = 'TRANSFER_MANAGERS_SUM_VALUE_DESC', + TransferManagersVariancePopulationAssetIdAsc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_ASSET_ID_ASC', + TransferManagersVariancePopulationAssetIdDesc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_ASSET_ID_DESC', + TransferManagersVariancePopulationBlockRangeAsc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TransferManagersVariancePopulationBlockRangeDesc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TransferManagersVariancePopulationCreatedAtAsc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_CREATED_AT_ASC', + TransferManagersVariancePopulationCreatedAtDesc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_CREATED_AT_DESC', + TransferManagersVariancePopulationCreatedBlockIdAsc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TransferManagersVariancePopulationCreatedBlockIdDesc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TransferManagersVariancePopulationExemptedEntitiesAsc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_EXEMPTED_ENTITIES_ASC', + TransferManagersVariancePopulationExemptedEntitiesDesc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_EXEMPTED_ENTITIES_DESC', + TransferManagersVariancePopulationIdAsc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_ID_ASC', + TransferManagersVariancePopulationIdDesc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_ID_DESC', + TransferManagersVariancePopulationTypeAsc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_TYPE_ASC', + TransferManagersVariancePopulationTypeDesc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_TYPE_DESC', + TransferManagersVariancePopulationUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferManagersVariancePopulationUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferManagersVariancePopulationValueAsc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_VALUE_ASC', + TransferManagersVariancePopulationValueDesc = 'TRANSFER_MANAGERS_VARIANCE_POPULATION_VALUE_DESC', + TransferManagersVarianceSampleAssetIdAsc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_ASSET_ID_ASC', + TransferManagersVarianceSampleAssetIdDesc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_ASSET_ID_DESC', + TransferManagersVarianceSampleBlockRangeAsc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TransferManagersVarianceSampleBlockRangeDesc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TransferManagersVarianceSampleCreatedAtAsc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_CREATED_AT_ASC', + TransferManagersVarianceSampleCreatedAtDesc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_CREATED_AT_DESC', + TransferManagersVarianceSampleCreatedBlockIdAsc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferManagersVarianceSampleCreatedBlockIdDesc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferManagersVarianceSampleExemptedEntitiesAsc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_EXEMPTED_ENTITIES_ASC', + TransferManagersVarianceSampleExemptedEntitiesDesc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_EXEMPTED_ENTITIES_DESC', + TransferManagersVarianceSampleIdAsc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_ID_ASC', + TransferManagersVarianceSampleIdDesc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_ID_DESC', + TransferManagersVarianceSampleTypeAsc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_TYPE_ASC', + TransferManagersVarianceSampleTypeDesc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_TYPE_DESC', + TransferManagersVarianceSampleUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferManagersVarianceSampleUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferManagersVarianceSampleValueAsc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_VALUE_ASC', + TransferManagersVarianceSampleValueDesc = 'TRANSFER_MANAGERS_VARIANCE_SAMPLE_VALUE_DESC', + TrustedClaimIssuersAverageAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_ASSET_ID_ASC', + TrustedClaimIssuersAverageAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_ASSET_ID_DESC', + TrustedClaimIssuersAverageBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_BLOCK_RANGE_ASC', + TrustedClaimIssuersAverageBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_BLOCK_RANGE_DESC', + TrustedClaimIssuersAverageCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_CREATED_AT_ASC', + TrustedClaimIssuersAverageCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_CREATED_AT_DESC', + TrustedClaimIssuersAverageCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersAverageCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersAverageEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_EVENT_IDX_ASC', + TrustedClaimIssuersAverageEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_EVENT_IDX_DESC', + TrustedClaimIssuersAverageIdAsc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_ID_ASC', + TrustedClaimIssuersAverageIdDesc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_ID_DESC', + TrustedClaimIssuersAverageIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_ISSUER_ASC', + TrustedClaimIssuersAverageIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_ISSUER_DESC', + TrustedClaimIssuersAverageUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersAverageUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_AVERAGE_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersCountAsc = 'TRUSTED_CLAIM_ISSUERS_COUNT_ASC', + TrustedClaimIssuersCountDesc = 'TRUSTED_CLAIM_ISSUERS_COUNT_DESC', + TrustedClaimIssuersDistinctCountAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_ASSET_ID_ASC', + TrustedClaimIssuersDistinctCountAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_ASSET_ID_DESC', + TrustedClaimIssuersDistinctCountBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TrustedClaimIssuersDistinctCountBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TrustedClaimIssuersDistinctCountCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_CREATED_AT_ASC', + TrustedClaimIssuersDistinctCountCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_CREATED_AT_DESC', + TrustedClaimIssuersDistinctCountCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersDistinctCountCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersDistinctCountEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_EVENT_IDX_ASC', + TrustedClaimIssuersDistinctCountEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_EVENT_IDX_DESC', + TrustedClaimIssuersDistinctCountIdAsc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_ID_ASC', + TrustedClaimIssuersDistinctCountIdDesc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_ID_DESC', + TrustedClaimIssuersDistinctCountIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_ISSUER_ASC', + TrustedClaimIssuersDistinctCountIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_ISSUER_DESC', + TrustedClaimIssuersDistinctCountUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersDistinctCountUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersMaxAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_MAX_ASSET_ID_ASC', + TrustedClaimIssuersMaxAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_MAX_ASSET_ID_DESC', + TrustedClaimIssuersMaxBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_MAX_BLOCK_RANGE_ASC', + TrustedClaimIssuersMaxBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_MAX_BLOCK_RANGE_DESC', + TrustedClaimIssuersMaxCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_MAX_CREATED_AT_ASC', + TrustedClaimIssuersMaxCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_MAX_CREATED_AT_DESC', + TrustedClaimIssuersMaxCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_MAX_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersMaxCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_MAX_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersMaxEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_MAX_EVENT_IDX_ASC', + TrustedClaimIssuersMaxEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_MAX_EVENT_IDX_DESC', + TrustedClaimIssuersMaxIdAsc = 'TRUSTED_CLAIM_ISSUERS_MAX_ID_ASC', + TrustedClaimIssuersMaxIdDesc = 'TRUSTED_CLAIM_ISSUERS_MAX_ID_DESC', + TrustedClaimIssuersMaxIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_MAX_ISSUER_ASC', + TrustedClaimIssuersMaxIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_MAX_ISSUER_DESC', + TrustedClaimIssuersMaxUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_MAX_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersMaxUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_MAX_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersMinAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_MIN_ASSET_ID_ASC', + TrustedClaimIssuersMinAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_MIN_ASSET_ID_DESC', + TrustedClaimIssuersMinBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_MIN_BLOCK_RANGE_ASC', + TrustedClaimIssuersMinBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_MIN_BLOCK_RANGE_DESC', + TrustedClaimIssuersMinCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_MIN_CREATED_AT_ASC', + TrustedClaimIssuersMinCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_MIN_CREATED_AT_DESC', + TrustedClaimIssuersMinCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_MIN_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersMinCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_MIN_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersMinEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_MIN_EVENT_IDX_ASC', + TrustedClaimIssuersMinEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_MIN_EVENT_IDX_DESC', + TrustedClaimIssuersMinIdAsc = 'TRUSTED_CLAIM_ISSUERS_MIN_ID_ASC', + TrustedClaimIssuersMinIdDesc = 'TRUSTED_CLAIM_ISSUERS_MIN_ID_DESC', + TrustedClaimIssuersMinIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_MIN_ISSUER_ASC', + TrustedClaimIssuersMinIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_MIN_ISSUER_DESC', + TrustedClaimIssuersMinUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_MIN_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersMinUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_MIN_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersStddevPopulationAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_ASSET_ID_ASC', + TrustedClaimIssuersStddevPopulationAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_ASSET_ID_DESC', + TrustedClaimIssuersStddevPopulationBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TrustedClaimIssuersStddevPopulationBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TrustedClaimIssuersStddevPopulationCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_CREATED_AT_ASC', + TrustedClaimIssuersStddevPopulationCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_CREATED_AT_DESC', + TrustedClaimIssuersStddevPopulationCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersStddevPopulationCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersStddevPopulationEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_EVENT_IDX_ASC', + TrustedClaimIssuersStddevPopulationEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_EVENT_IDX_DESC', + TrustedClaimIssuersStddevPopulationIdAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_ID_ASC', + TrustedClaimIssuersStddevPopulationIdDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_ID_DESC', + TrustedClaimIssuersStddevPopulationIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_ISSUER_ASC', + TrustedClaimIssuersStddevPopulationIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_ISSUER_DESC', + TrustedClaimIssuersStddevPopulationUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersStddevPopulationUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersStddevSampleAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_ASSET_ID_ASC', + TrustedClaimIssuersStddevSampleAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_ASSET_ID_DESC', + TrustedClaimIssuersStddevSampleBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TrustedClaimIssuersStddevSampleBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TrustedClaimIssuersStddevSampleCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_CREATED_AT_ASC', + TrustedClaimIssuersStddevSampleCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_CREATED_AT_DESC', + TrustedClaimIssuersStddevSampleCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersStddevSampleCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersStddevSampleEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_EVENT_IDX_ASC', + TrustedClaimIssuersStddevSampleEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_EVENT_IDX_DESC', + TrustedClaimIssuersStddevSampleIdAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_ID_ASC', + TrustedClaimIssuersStddevSampleIdDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_ID_DESC', + TrustedClaimIssuersStddevSampleIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_ISSUER_ASC', + TrustedClaimIssuersStddevSampleIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_ISSUER_DESC', + TrustedClaimIssuersStddevSampleUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersStddevSampleUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersSumAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_SUM_ASSET_ID_ASC', + TrustedClaimIssuersSumAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_SUM_ASSET_ID_DESC', + TrustedClaimIssuersSumBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_SUM_BLOCK_RANGE_ASC', + TrustedClaimIssuersSumBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_SUM_BLOCK_RANGE_DESC', + TrustedClaimIssuersSumCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_SUM_CREATED_AT_ASC', + TrustedClaimIssuersSumCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_SUM_CREATED_AT_DESC', + TrustedClaimIssuersSumCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_SUM_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersSumCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_SUM_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersSumEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_SUM_EVENT_IDX_ASC', + TrustedClaimIssuersSumEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_SUM_EVENT_IDX_DESC', + TrustedClaimIssuersSumIdAsc = 'TRUSTED_CLAIM_ISSUERS_SUM_ID_ASC', + TrustedClaimIssuersSumIdDesc = 'TRUSTED_CLAIM_ISSUERS_SUM_ID_DESC', + TrustedClaimIssuersSumIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_SUM_ISSUER_ASC', + TrustedClaimIssuersSumIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_SUM_ISSUER_DESC', + TrustedClaimIssuersSumUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_SUM_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersSumUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_SUM_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersVariancePopulationAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_ASSET_ID_ASC', + TrustedClaimIssuersVariancePopulationAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_ASSET_ID_DESC', + TrustedClaimIssuersVariancePopulationBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TrustedClaimIssuersVariancePopulationBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TrustedClaimIssuersVariancePopulationCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_CREATED_AT_ASC', + TrustedClaimIssuersVariancePopulationCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_CREATED_AT_DESC', + TrustedClaimIssuersVariancePopulationCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersVariancePopulationCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersVariancePopulationEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_EVENT_IDX_ASC', + TrustedClaimIssuersVariancePopulationEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_EVENT_IDX_DESC', + TrustedClaimIssuersVariancePopulationIdAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_ID_ASC', + TrustedClaimIssuersVariancePopulationIdDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_ID_DESC', + TrustedClaimIssuersVariancePopulationIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_ISSUER_ASC', + TrustedClaimIssuersVariancePopulationIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_ISSUER_DESC', + TrustedClaimIssuersVariancePopulationUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersVariancePopulationUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersVarianceSampleAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_ASSET_ID_ASC', + TrustedClaimIssuersVarianceSampleAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_ASSET_ID_DESC', + TrustedClaimIssuersVarianceSampleBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TrustedClaimIssuersVarianceSampleBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TrustedClaimIssuersVarianceSampleCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_CREATED_AT_ASC', + TrustedClaimIssuersVarianceSampleCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_CREATED_AT_DESC', + TrustedClaimIssuersVarianceSampleCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersVarianceSampleCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersVarianceSampleEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TrustedClaimIssuersVarianceSampleEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TrustedClaimIssuersVarianceSampleIdAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_ID_ASC', + TrustedClaimIssuersVarianceSampleIdDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_ID_DESC', + TrustedClaimIssuersVarianceSampleIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_ISSUER_ASC', + TrustedClaimIssuersVarianceSampleIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_ISSUER_DESC', + TrustedClaimIssuersVarianceSampleUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersVarianceSampleUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TypeAsc = 'TYPE_ASC', + TypeDesc = 'TYPE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** Represents all possible authorization types */ +export enum AuthTypeEnum { + AddMultiSigSigner = 'AddMultiSigSigner', + AddRelayerPayingKey = 'AddRelayerPayingKey', + AttestPrimaryKeyRotation = 'AttestPrimaryKeyRotation', + BecomeAgent = 'BecomeAgent', + Custom = 'Custom', + JoinIdentity = 'JoinIdentity', + NoData = 'NoData', + PortfolioCustody = 'PortfolioCustody', + RotatePrimaryKey = 'RotatePrimaryKey', + RotatePrimaryKeyToSecondary = 'RotatePrimaryKeyToSecondary', + TransferAssetOwnership = 'TransferAssetOwnership', + TransferPrimaryIssuanceAgent = 'TransferPrimaryIssuanceAgent', + TransferTicker = 'TransferTicker', +} + +/** A filter to be used against AuthTypeEnum fields. All fields are combined with a logical ‘and.’ */ +export type AuthTypeEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type Authorization = Node & { + __typename?: 'Authorization'; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Authorization`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + data?: Maybe; + expiry?: Maybe; + /** Reads a single `Identity` that is related to this `Authorization`. */ + from?: Maybe; + fromId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + status: AuthorizationStatusEnum; + toId?: Maybe; + toKey?: Maybe; + type: AuthTypeEnum; + /** Reads a single `Block` that is related to this `Authorization`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type AuthorizationAggregates = { + __typename?: 'AuthorizationAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `Authorization` object types. */ +export type AuthorizationAggregatesFilter = { + /** Distinct count aggregate over matching `Authorization` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Authorization` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type AuthorizationDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + data?: InputMaybe; + expiry?: InputMaybe; + fromId?: InputMaybe; + id?: InputMaybe; + status?: InputMaybe; + toId?: InputMaybe; + toKey?: InputMaybe; + type?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type AuthorizationDistinctCountAggregates = { + __typename?: 'AuthorizationDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of data across the matching connection */ + data?: Maybe; + /** Distinct count of expiry across the matching connection */ + expiry?: Maybe; + /** Distinct count of fromId across the matching connection */ + fromId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of status across the matching connection */ + status?: Maybe; + /** Distinct count of toId across the matching connection */ + toId?: Maybe; + /** Distinct count of toKey across the matching connection */ + toKey?: Maybe; + /** Distinct count of type across the matching connection */ + type?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `Authorization` object types. All fields are combined with a logical ‘and.’ */ +export type AuthorizationFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `data` field. */ + data?: InputMaybe; + /** Filter by the object’s `expiry` field. */ + expiry?: InputMaybe; + /** Filter by the object’s `from` relation. */ + from?: InputMaybe; + /** Filter by the object’s `fromId` field. */ + fromId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `status` field. */ + status?: InputMaybe; + /** Filter by the object’s `toId` field. */ + toId?: InputMaybe; + /** Filter by the object’s `toKey` field. */ + toKey?: InputMaybe; + /** Filter by the object’s `type` field. */ + type?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** Represents all possible authorization statuses */ +export enum AuthorizationStatusEnum { + Consumed = 'Consumed', + Pending = 'Pending', + Rejected = 'Rejected', + Revoked = 'Revoked', +} + +/** A filter to be used against AuthorizationStatusEnum fields. All fields are combined with a logical ‘and.’ */ +export type AuthorizationStatusEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +/** A connection to a list of `Authorization` values. */ +export type AuthorizationsConnection = { + __typename?: 'AuthorizationsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Authorization` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Authorization` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Authorization` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Authorization` values. */ +export type AuthorizationsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Authorization` edge in the connection. */ +export type AuthorizationsEdge = { + __typename?: 'AuthorizationsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Authorization` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Authorization` for usage during aggregation. */ +export enum AuthorizationsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Data = 'DATA', + Expiry = 'EXPIRY', + ExpiryTruncatedToDay = 'EXPIRY_TRUNCATED_TO_DAY', + ExpiryTruncatedToHour = 'EXPIRY_TRUNCATED_TO_HOUR', + FromId = 'FROM_ID', + Id = 'ID', + Status = 'STATUS', + ToId = 'TO_ID', + ToKey = 'TO_KEY', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type AuthorizationsHavingAverageInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type AuthorizationsHavingDistinctCountInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +/** Conditions for `Authorization` aggregates. */ +export type AuthorizationsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type AuthorizationsHavingMaxInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type AuthorizationsHavingMinInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type AuthorizationsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type AuthorizationsHavingStddevSampleInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type AuthorizationsHavingSumInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type AuthorizationsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type AuthorizationsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +/** Methods to use when ordering `Authorization`. */ +export enum AuthorizationsOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DataAsc = 'DATA_ASC', + DataDesc = 'DATA_DESC', + ExpiryAsc = 'EXPIRY_ASC', + ExpiryDesc = 'EXPIRY_DESC', + FromIdAsc = 'FROM_ID_ASC', + FromIdDesc = 'FROM_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + StatusAsc = 'STATUS_ASC', + StatusDesc = 'STATUS_DESC', + ToIdAsc = 'TO_ID_ASC', + ToIdDesc = 'TO_ID_DESC', + ToKeyAsc = 'TO_KEY_ASC', + ToKeyDesc = 'TO_KEY_DESC', + TypeAsc = 'TYPE_ASC', + TypeDesc = 'TYPE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** Represents possible all possible balance types */ +export enum BalanceTypeEnum { + Bonded = 'Bonded', + Free = 'Free', + Locked = 'Locked', + Reserved = 'Reserved', + Unbonded = 'Unbonded', +} + +/** A filter to be used against BalanceTypeEnum fields. All fields are combined with a logical ‘and.’ */ +export type BalanceTypeEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +/** A filter to be used against BigFloat fields. All fields are combined with a logical ‘and.’ */ +export type BigFloatFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +/** A filter to be used against BigInt fields. All fields are combined with a logical ‘and.’ */ +export type BigIntFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type Block = Node & { + __typename?: 'Block'; + /** Reads and enables pagination through a set of `AccountHistory`. */ + accountHistoriesByCreatedBlockId: AccountHistoriesConnection; + /** Reads and enables pagination through a set of `AccountHistory`. */ + accountHistoriesByUpdatedBlockId: AccountHistoriesConnection; + /** Reads and enables pagination through a set of `Account`. */ + accountsByCreatedBlockId: AccountsConnection; + /** Reads and enables pagination through a set of `Account`. */ + accountsByMultiSigCreatedBlockIdAndCreatorAccountId: BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyConnection; + /** Reads and enables pagination through a set of `Account`. */ + accountsByMultiSigUpdatedBlockIdAndCreatorAccountId: BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyConnection; + /** Reads and enables pagination through a set of `Account`. */ + accountsByUpdatedBlockId: AccountsConnection; + /** Reads and enables pagination through a set of `AgentGroupMembership`. */ + agentGroupMembershipsByCreatedBlockId: AgentGroupMembershipsConnection; + /** Reads and enables pagination through a set of `AgentGroupMembership`. */ + agentGroupMembershipsByUpdatedBlockId: AgentGroupMembershipsConnection; + /** Reads and enables pagination through a set of `AgentGroup`. */ + agentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupId: BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyConnection; + /** Reads and enables pagination through a set of `AgentGroup`. */ + agentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupId: BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyConnection; + /** Reads and enables pagination through a set of `AgentGroup`. */ + agentGroupsByCreatedBlockId: AgentGroupsConnection; + /** Reads and enables pagination through a set of `AgentGroup`. */ + agentGroupsByUpdatedBlockId: AgentGroupsConnection; + /** Reads and enables pagination through a set of `AssetDocument`. */ + assetDocumentsByCreatedBlockId: AssetDocumentsConnection; + /** Reads and enables pagination through a set of `AssetDocument`. */ + assetDocumentsByUpdatedBlockId: AssetDocumentsConnection; + /** Reads and enables pagination through a set of `AssetHolder`. */ + assetHoldersByCreatedBlockId: AssetHoldersConnection; + /** Reads and enables pagination through a set of `AssetHolder`. */ + assetHoldersByUpdatedBlockId: AssetHoldersConnection; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByCreatedBlockId: AssetMandatoryMediatorsConnection; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByUpdatedBlockId: AssetMandatoryMediatorsConnection; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovalsByCreatedBlockId: AssetPreApprovalsConnection; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovalsByUpdatedBlockId: AssetPreApprovalsConnection; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByCreatedBlockId: AssetTransactionsConnection; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByUpdatedBlockId: AssetTransactionsConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetDocumentCreatedBlockIdAndAssetId: BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetDocumentUpdatedBlockIdAndAssetId: BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetHolderCreatedBlockIdAndAssetId: BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetHolderUpdatedBlockIdAndAssetId: BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetMandatoryMediatorCreatedBlockIdAndAssetId: BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetId: BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetPreApprovalCreatedBlockIdAndAssetId: BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetPreApprovalUpdatedBlockIdAndAssetId: BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetTransactionCreatedBlockIdAndAssetId: BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetTransactionUpdatedBlockIdAndAssetId: BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByClaimScopeCreatedBlockIdAndAssetId: BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByClaimScopeUpdatedBlockIdAndAssetId: BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByComplianceCreatedBlockIdAndAssetId: BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByComplianceUpdatedBlockIdAndAssetId: BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByCreatedBlockId: AssetsConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByDistributionCreatedBlockIdAndAssetId: BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByDistributionUpdatedBlockIdAndAssetId: BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByFundingCreatedBlockIdAndAssetId: BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByFundingUpdatedBlockIdAndAssetId: BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByNftHolderCreatedBlockIdAndAssetId: BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByNftHolderUpdatedBlockIdAndAssetId: BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByPortfolioMovementCreatedBlockIdAndAssetId: BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByPortfolioMovementUpdatedBlockIdAndAssetId: BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByStatTypeCreatedBlockIdAndAssetId: BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByStatTypeUpdatedBlockIdAndAssetId: BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByStoCreatedBlockIdAndOfferingAssetId: BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByStoUpdatedBlockIdAndOfferingAssetId: BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTickerExternalAgentActionCreatedBlockIdAndAssetId: BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTickerExternalAgentActionUpdatedBlockIdAndAssetId: BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTickerExternalAgentCreatedBlockIdAndAssetId: BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetId: BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetId: BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTickerExternalAgentUpdatedBlockIdAndAssetId: BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTransferComplianceCreatedBlockIdAndAssetId: BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTransferComplianceExemptionCreatedBlockIdAndAssetId: BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTransferComplianceExemptionUpdatedBlockIdAndAssetId: BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTransferComplianceUpdatedBlockIdAndAssetId: BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTransferManagerCreatedBlockIdAndAssetId: BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTransferManagerUpdatedBlockIdAndAssetId: BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTrustedClaimIssuerCreatedBlockIdAndAssetId: BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTrustedClaimIssuerUpdatedBlockIdAndAssetId: BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByUpdatedBlockId: AssetsConnection; + /** Reads and enables pagination through a set of `Authorization`. */ + authorizationsByCreatedBlockId: AuthorizationsConnection; + /** Reads and enables pagination through a set of `Authorization`. */ + authorizationsByUpdatedBlockId: AuthorizationsConnection; + blockId: Scalars['Int']['output']; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAccountCreatedBlockIdAndUpdatedBlockId: BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAccountHistoryCreatedBlockIdAndUpdatedBlockId: BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAccountHistoryUpdatedBlockIdAndCreatedBlockId: BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAccountUpdatedBlockIdAndCreatedBlockId: BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAgentGroupCreatedBlockIdAndUpdatedBlockId: BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockId: BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockId: BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAgentGroupUpdatedBlockIdAndCreatedBlockId: BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetCreatedBlockIdAndUpdatedBlockId: BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetDocumentCreatedBlockIdAndUpdatedBlockId: BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetDocumentUpdatedBlockIdAndCreatedBlockId: BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetHolderCreatedBlockIdAndUpdatedBlockId: BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetHolderUpdatedBlockIdAndCreatedBlockId: BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockId: BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockId: BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockId: BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockId: BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetTransactionCreatedBlockIdAndUpdatedBlockId: BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetTransactionUpdatedBlockIdAndCreatedBlockId: BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetUpdatedBlockIdAndCreatedBlockId: BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAuthorizationCreatedBlockIdAndUpdatedBlockId: BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAuthorizationUpdatedBlockIdAndCreatedBlockId: BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByBridgeEventCreatedBlockIdAndUpdatedBlockId: BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByBridgeEventUpdatedBlockIdAndCreatedBlockId: BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByChildIdentityCreatedBlockIdAndUpdatedBlockId: BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByChildIdentityUpdatedBlockIdAndCreatedBlockId: BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimCreatedBlockIdAndUpdatedBlockId: BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimScopeCreatedBlockIdAndUpdatedBlockId: BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimScopeUpdatedBlockIdAndCreatedBlockId: BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimUpdatedBlockIdAndCreatedBlockId: BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByComplianceCreatedBlockIdAndUpdatedBlockId: BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByComplianceUpdatedBlockIdAndCreatedBlockId: BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockId: BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockId: BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockId: BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockId: BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockId: BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockId: BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockId: BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockId: BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockId: BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockId: BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialLegCreatedBlockIdAndUpdatedBlockId: BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialLegUpdatedBlockIdAndCreatedBlockId: BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockId: BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockId: BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockId: BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockId: BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockId: BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockId: BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockId: BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockId: BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionCreatedBlockIdAndUpdatedBlockId: BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockId: BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockId: BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionUpdatedBlockIdAndCreatedBlockId: BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByFundingCreatedBlockIdAndUpdatedBlockId: BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByFundingUpdatedBlockIdAndCreatedBlockId: BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByIdentityCreatedBlockIdAndUpdatedBlockId: BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByIdentityUpdatedBlockIdAndCreatedBlockId: BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockId: BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockId: BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionCreatedBlockIdAndUpdatedBlockId: BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionEventCreatedBlockIdAndUpdatedBlockId: BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionEventUpdatedBlockIdAndCreatedBlockId: BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionPartyCreatedBlockIdAndUpdatedBlockId: BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionPartyUpdatedBlockIdAndCreatedBlockId: BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionUpdatedBlockIdAndCreatedBlockId: BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInvestmentCreatedBlockIdAndUpdatedBlockId: BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInvestmentUpdatedBlockIdAndCreatedBlockId: BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByLegCreatedBlockIdAndUpdatedBlockId: BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByLegUpdatedBlockIdAndCreatedBlockId: BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigCreatedBlockIdAndUpdatedBlockId: BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockId: BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockId: BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockId: BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockId: BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockId: BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockId: BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigUpdatedBlockIdAndCreatedBlockId: BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByNftHolderCreatedBlockIdAndUpdatedBlockId: BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByNftHolderUpdatedBlockIdAndCreatedBlockId: BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockId: BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockId: BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPermissionCreatedBlockIdAndUpdatedBlockId: BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPermissionUpdatedBlockIdAndCreatedBlockId: BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockId: BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockId: BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioCreatedBlockIdAndUpdatedBlockId: BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockId: BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockId: BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioUpdatedBlockIdAndCreatedBlockId: BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByProposalCreatedBlockIdAndUpdatedBlockId: BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByProposalUpdatedBlockIdAndCreatedBlockId: BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByProposalVoteCreatedBlockIdAndUpdatedBlockId: BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByProposalVoteUpdatedBlockIdAndCreatedBlockId: BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStakingEventCreatedBlockIdAndUpdatedBlockId: BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStakingEventUpdatedBlockIdAndCreatedBlockId: BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStatTypeCreatedBlockIdAndUpdatedBlockId: BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStatTypeUpdatedBlockIdAndCreatedBlockId: BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoCreatedBlockIdAndUpdatedBlockId: BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoUpdatedBlockIdAndCreatedBlockId: BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockId: BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockId: BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockId: BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockId: BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockId: BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockId: BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceCreatedBlockIdAndUpdatedBlockId: BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockId: BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockId: BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceUpdatedBlockIdAndCreatedBlockId: BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferManagerCreatedBlockIdAndUpdatedBlockId: BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferManagerUpdatedBlockIdAndCreatedBlockId: BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockId: BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockId: BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByVenueCreatedBlockIdAndUpdatedBlockId: BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByVenueUpdatedBlockIdAndCreatedBlockId: BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `BridgeEvent`. */ + bridgeEventsByCreatedBlockId: BridgeEventsConnection; + /** Reads and enables pagination through a set of `BridgeEvent`. */ + bridgeEventsByUpdatedBlockId: BridgeEventsConnection; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + childIdentitiesByCreatedBlockId: ChildIdentitiesConnection; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + childIdentitiesByUpdatedBlockId: ChildIdentitiesConnection; + /** Reads and enables pagination through a set of `ClaimScope`. */ + claimScopesByCreatedBlockId: ClaimScopesConnection; + /** Reads and enables pagination through a set of `ClaimScope`. */ + claimScopesByUpdatedBlockId: ClaimScopesConnection; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByCreatedBlockId: ClaimsConnection; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByUpdatedBlockId: ClaimsConnection; + /** Reads and enables pagination through a set of `Compliance`. */ + compliancesByCreatedBlockId: CompliancesConnection; + /** Reads and enables pagination through a set of `Compliance`. */ + compliancesByUpdatedBlockId: CompliancesConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromId: BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToId: BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromId: BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToId: BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountId: BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountId: BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromId: BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToId: BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromId: BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToId: BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverId: BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialLegCreatedBlockIdAndSenderId: BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverId: BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderId: BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountId: BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountId: BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByCreatedBlockId: ConfidentialAccountsConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByUpdatedBlockId: ConfidentialAccountsConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByCreatedBlockId: ConfidentialAssetHoldersConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByUpdatedBlockId: ConfidentialAssetHoldersConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByCreatedBlockId: ConfidentialAssetMovementsConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByUpdatedBlockId: ConfidentialAssetMovementsConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetId: BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetId: BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetId: BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetId: BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetId: BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetId: BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByCreatedBlockId: ConfidentialAssetsConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByUpdatedBlockId: ConfidentialAssetsConnection; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByCreatedBlockId: ConfidentialLegsConnection; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByUpdatedBlockId: ConfidentialLegsConnection; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionId: BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionId: BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionId: BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionId: BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionId: BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionId: BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByCreatedBlockId: ConfidentialTransactionsConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByUpdatedBlockId: ConfidentialTransactionsConnection; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueId: BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueId: BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenuesByCreatedBlockId: ConfidentialVenuesConnection; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenuesByUpdatedBlockId: ConfidentialVenuesConnection; + countEvents: Scalars['Int']['output']; + countExtrinsics: Scalars['Int']['output']; + countExtrinsicsError: Scalars['Int']['output']; + countExtrinsicsSigned: Scalars['Int']['output']; + countExtrinsicsSuccess: Scalars['Int']['output']; + countExtrinsicsUnsigned: Scalars['Int']['output']; + createdAt?: Maybe; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeId: BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeId: BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByCreatedBlockId: CustomClaimTypesConnection; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeId: BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeId: BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByUpdatedBlockId: CustomClaimTypesConnection; + datetime: Scalars['Datetime']['output']; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByCreatedBlockId: DistributionPaymentsConnection; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByUpdatedBlockId: DistributionPaymentsConnection; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByCreatedBlockId: DistributionsConnection; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByDistributionPaymentCreatedBlockIdAndDistributionId: BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByDistributionPaymentUpdatedBlockIdAndDistributionId: BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByUpdatedBlockId: DistributionsConnection; + /** Reads and enables pagination through a set of `Event`. */ + events: EventsConnection; + /** Reads and enables pagination through a set of `Extrinsic`. */ + extrinsics: ExtrinsicsConnection; + /** Reads and enables pagination through a set of `Extrinsic`. */ + extrinsicsByEventBlockIdAndExtrinsicId: BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection; + /** Reads and enables pagination through a set of `Extrinsic`. */ + extrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicId: BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyConnection; + /** Reads and enables pagination through a set of `Extrinsic`. */ + extrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicId: BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyConnection; + extrinsicsRoot: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Funding`. */ + fundingsByCreatedBlockId: FundingsConnection; + /** Reads and enables pagination through a set of `Funding`. */ + fundingsByUpdatedBlockId: FundingsConnection; + hash: Scalars['String']['output']; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAccountCreatedBlockIdAndIdentityId: BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAccountUpdatedBlockIdAndIdentityId: BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAssetCreatedBlockIdAndOwnerId: BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAssetHolderCreatedBlockIdAndIdentityId: BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAssetHolderUpdatedBlockIdAndIdentityId: BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedById: BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedById: BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAssetPreApprovalCreatedBlockIdAndIdentityId: BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAssetPreApprovalUpdatedBlockIdAndIdentityId: BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAssetUpdatedBlockIdAndOwnerId: BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAuthorizationCreatedBlockIdAndFromId: BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAuthorizationUpdatedBlockIdAndFromId: BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByBridgeEventCreatedBlockIdAndIdentityId: BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByBridgeEventUpdatedBlockIdAndIdentityId: BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByChildIdentityCreatedBlockIdAndChildId: BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByChildIdentityCreatedBlockIdAndParentId: BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByChildIdentityUpdatedBlockIdAndChildId: BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByChildIdentityUpdatedBlockIdAndParentId: BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByClaimCreatedBlockIdAndIssuerId: BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByClaimCreatedBlockIdAndTargetId: BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByClaimUpdatedBlockIdAndIssuerId: BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByClaimUpdatedBlockIdAndTargetId: BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByConfidentialAccountCreatedBlockIdAndCreatorId: BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByConfidentialAccountUpdatedBlockIdAndCreatorId: BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByConfidentialAssetCreatedBlockIdAndCreatorId: BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByConfidentialAssetUpdatedBlockIdAndCreatorId: BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityId: BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityId: BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByConfidentialVenueCreatedBlockIdAndCreatorId: BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByConfidentialVenueUpdatedBlockIdAndCreatorId: BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByCreatedBlockId: IdentitiesConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByCustomClaimTypeCreatedBlockIdAndIdentityId: BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByCustomClaimTypeUpdatedBlockIdAndIdentityId: BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByDistributionCreatedBlockIdAndIdentityId: BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByDistributionPaymentCreatedBlockIdAndTargetId: BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByDistributionPaymentUpdatedBlockIdAndTargetId: BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByDistributionUpdatedBlockIdAndIdentityId: BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByInvestmentCreatedBlockIdAndInvestorId: BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByInvestmentUpdatedBlockIdAndInvestorId: BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByMultiSigCreatedBlockIdAndCreatorId: BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByMultiSigProposalCreatedBlockIdAndCreatorId: BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByMultiSigProposalUpdatedBlockIdAndCreatorId: BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByMultiSigUpdatedBlockIdAndCreatorId: BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByNftHolderCreatedBlockIdAndIdentityId: BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByNftHolderUpdatedBlockIdAndIdentityId: BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByPortfolioCreatedBlockIdAndCustodianId: BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByPortfolioCreatedBlockIdAndIdentityId: BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByPortfolioUpdatedBlockIdAndCustodianId: BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByPortfolioUpdatedBlockIdAndIdentityId: BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByProposalCreatedBlockIdAndOwnerId: BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByProposalUpdatedBlockIdAndOwnerId: BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStakingEventCreatedBlockIdAndIdentityId: BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStakingEventUpdatedBlockIdAndIdentityId: BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStatTypeCreatedBlockIdAndClaimIssuerId: BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStatTypeUpdatedBlockIdAndClaimIssuerId: BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStoCreatedBlockIdAndCreatorId: BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStoUpdatedBlockIdAndCreatorId: BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTickerExternalAgentActionCreatedBlockIdAndCallerId: BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerId: BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTickerExternalAgentCreatedBlockIdAndCallerId: BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityId: BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityId: BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTickerExternalAgentUpdatedBlockIdAndCallerId: BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTransferComplianceCreatedBlockIdAndClaimIssuerId: BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerId: BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByUpdatedBlockId: IdentitiesConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByVenueCreatedBlockIdAndOwnerId: BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByVenueUpdatedBlockIdAndOwnerId: BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyConnection; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByCreatedBlockId: InstructionAffirmationsConnection; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByUpdatedBlockId: InstructionAffirmationsConnection; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEventsByCreatedBlockId: InstructionEventsConnection; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEventsByUpdatedBlockId: InstructionEventsConnection; + /** Reads and enables pagination through a set of `InstructionParty`. */ + instructionPartiesByCreatedBlockId: InstructionPartiesConnection; + /** Reads and enables pagination through a set of `InstructionParty`. */ + instructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyId: BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyConnection; + /** Reads and enables pagination through a set of `InstructionParty`. */ + instructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyId: BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyConnection; + /** Reads and enables pagination through a set of `InstructionParty`. */ + instructionPartiesByUpdatedBlockId: InstructionPartiesConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByAssetTransactionCreatedBlockIdAndInstructionId: BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByAssetTransactionUpdatedBlockIdAndInstructionId: BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByCreatedBlockId: InstructionsConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByInstructionAffirmationCreatedBlockIdAndInstructionId: BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByInstructionAffirmationUpdatedBlockIdAndInstructionId: BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByInstructionEventCreatedBlockIdAndInstructionId: BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByInstructionEventUpdatedBlockIdAndInstructionId: BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByInstructionPartyCreatedBlockIdAndInstructionId: BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByInstructionPartyUpdatedBlockIdAndInstructionId: BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByLegCreatedBlockIdAndInstructionId: BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByLegUpdatedBlockIdAndInstructionId: BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByUpdatedBlockId: InstructionsConnection; + /** Reads and enables pagination through a set of `Investment`. */ + investmentsByCreatedBlockId: InvestmentsConnection; + /** Reads and enables pagination through a set of `Investment`. */ + investmentsByUpdatedBlockId: InvestmentsConnection; + /** Reads and enables pagination through a set of `Leg`. */ + legsByCreatedBlockId: LegsConnection; + /** Reads and enables pagination through a set of `Leg`. */ + legsByOffChainReceiptCreatedBlockIdAndLegId: BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyConnection; + /** Reads and enables pagination through a set of `Leg`. */ + legsByOffChainReceiptUpdatedBlockIdAndLegId: BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyConnection; + /** Reads and enables pagination through a set of `Leg`. */ + legsByUpdatedBlockId: LegsConnection; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + multiSigProposalVotesByCreatedBlockId: MultiSigProposalVotesConnection; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + multiSigProposalVotesByUpdatedBlockId: MultiSigProposalVotesConnection; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByCreatedBlockId: MultiSigProposalsConnection; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalId: BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyConnection; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalId: BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnection; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByUpdatedBlockId: MultiSigProposalsConnection; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + multiSigSignersByCreatedBlockId: MultiSigSignersConnection; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + multiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerId: BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyConnection; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + multiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerId: BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyConnection; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + multiSigSignersByUpdatedBlockId: MultiSigSignersConnection; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatedBlockId: MultiSigsConnection; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByMultiSigProposalCreatedBlockIdAndMultisigId: BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyConnection; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByMultiSigProposalUpdatedBlockIdAndMultisigId: BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyConnection; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByMultiSigSignerCreatedBlockIdAndMultisigId: BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyConnection; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByMultiSigSignerUpdatedBlockIdAndMultisigId: BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyConnection; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByUpdatedBlockId: MultiSigsConnection; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHoldersByCreatedBlockId: NftHoldersConnection; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHoldersByUpdatedBlockId: NftHoldersConnection; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByCreatedBlockId: OffChainReceiptsConnection; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptId: BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyConnection; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptId: BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptId: BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyConnection; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptId: BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByUpdatedBlockId: OffChainReceiptsConnection; + parentHash: Scalars['String']['output']; + parentId: Scalars['Int']['output']; + /** Reads and enables pagination through a set of `Permission`. */ + permissionsByAccountCreatedBlockIdAndPermissionsId: BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyConnection; + /** Reads and enables pagination through a set of `Permission`. */ + permissionsByAccountUpdatedBlockIdAndPermissionsId: BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyConnection; + /** Reads and enables pagination through a set of `Permission`. */ + permissionsByCreatedBlockId: PermissionsConnection; + /** Reads and enables pagination through a set of `Permission`. */ + permissionsByUpdatedBlockId: PermissionsConnection; + /** Reads and enables pagination through a set of `PolyxTransaction`. */ + polyxTransactionsByCreatedBlockId: PolyxTransactionsConnection; + /** Reads and enables pagination through a set of `PolyxTransaction`. */ + polyxTransactionsByUpdatedBlockId: PolyxTransactionsConnection; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByCreatedBlockId: PortfolioMovementsConnection; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByUpdatedBlockId: PortfolioMovementsConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioId: BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByAssetTransactionCreatedBlockIdAndToPortfolioId: BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioId: BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioId: BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByCreatedBlockId: PortfoliosConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByDistributionCreatedBlockIdAndPortfolioId: BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByDistributionUpdatedBlockIdAndPortfolioId: BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByPortfolioMovementCreatedBlockIdAndFromId: BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByPortfolioMovementCreatedBlockIdAndToId: BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByPortfolioMovementUpdatedBlockIdAndFromId: BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByPortfolioMovementUpdatedBlockIdAndToId: BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoCreatedBlockIdAndOfferingPortfolioId: BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoCreatedBlockIdAndRaisingPortfolioId: BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoUpdatedBlockIdAndOfferingPortfolioId: BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoUpdatedBlockIdAndRaisingPortfolioId: BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByUpdatedBlockId: PortfoliosConnection; + /** Reads and enables pagination through a set of `ProposalVote`. */ + proposalVotesByCreatedBlockId: ProposalVotesConnection; + /** Reads and enables pagination through a set of `ProposalVote`. */ + proposalVotesByUpdatedBlockId: ProposalVotesConnection; + /** Reads and enables pagination through a set of `Proposal`. */ + proposalsByCreatedBlockId: ProposalsConnection; + /** Reads and enables pagination through a set of `Proposal`. */ + proposalsByProposalVoteCreatedBlockIdAndProposalId: BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyConnection; + /** Reads and enables pagination through a set of `Proposal`. */ + proposalsByProposalVoteUpdatedBlockIdAndProposalId: BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnection; + /** Reads and enables pagination through a set of `Proposal`. */ + proposalsByUpdatedBlockId: ProposalsConnection; + specVersionId: Scalars['Int']['output']; + /** Reads and enables pagination through a set of `StakingEvent`. */ + stakingEventsByCreatedBlockId: StakingEventsConnection; + /** Reads and enables pagination through a set of `StakingEvent`. */ + stakingEventsByUpdatedBlockId: StakingEventsConnection; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByCreatedBlockId: StatTypesConnection; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByTransferComplianceCreatedBlockIdAndStatTypeId: BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyConnection; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByTransferComplianceUpdatedBlockIdAndStatTypeId: BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyConnection; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByUpdatedBlockId: StatTypesConnection; + stateRoot: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatedBlockId: StosConnection; + /** Reads and enables pagination through a set of `Sto`. */ + stosByUpdatedBlockId: StosConnection; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByCreatedBlockId: TickerExternalAgentActionsConnection; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByUpdatedBlockId: TickerExternalAgentActionsConnection; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistoriesByCreatedBlockId: TickerExternalAgentHistoriesConnection; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistoriesByUpdatedBlockId: TickerExternalAgentHistoriesConnection; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByCreatedBlockId: TickerExternalAgentsConnection; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByUpdatedBlockId: TickerExternalAgentsConnection; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptionsByCreatedBlockId: TransferComplianceExemptionsConnection; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptionsByUpdatedBlockId: TransferComplianceExemptionsConnection; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByCreatedBlockId: TransferCompliancesConnection; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByUpdatedBlockId: TransferCompliancesConnection; + /** Reads and enables pagination through a set of `TransferManager`. */ + transferManagersByCreatedBlockId: TransferManagersConnection; + /** Reads and enables pagination through a set of `TransferManager`. */ + transferManagersByUpdatedBlockId: TransferManagersConnection; + /** Reads and enables pagination through a set of `TrustedClaimIssuer`. */ + trustedClaimIssuersByCreatedBlockId: TrustedClaimIssuersConnection; + /** Reads and enables pagination through a set of `TrustedClaimIssuer`. */ + trustedClaimIssuersByUpdatedBlockId: TrustedClaimIssuersConnection; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByCreatedBlockId: VenuesConnection; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByInstructionCreatedBlockIdAndVenueId: BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyConnection; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByInstructionUpdatedBlockIdAndVenueId: BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyConnection; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByStoCreatedBlockIdAndVenueId: BlockVenuesByStoCreatedBlockIdAndVenueIdManyToManyConnection; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByStoUpdatedBlockIdAndVenueId: BlockVenuesByStoUpdatedBlockIdAndVenueIdManyToManyConnection; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByUpdatedBlockId: VenuesConnection; +}; + +export type BlockAccountHistoriesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAccountHistoriesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAccountsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAccountsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAgentGroupMembershipsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAgentGroupMembershipsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAgentGroupsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAgentGroupsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetDocumentsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetDocumentsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetHoldersByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetHoldersByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetMandatoryMediatorsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetMandatoryMediatorsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetPreApprovalsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetPreApprovalsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetTransactionsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetTransactionsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByFundingCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAssetsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAuthorizationsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockAuthorizationsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBridgeEventsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockBridgeEventsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockChildIdentitiesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockChildIdentitiesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockClaimScopesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockClaimScopesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockClaimsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockClaimsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockCompliancesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockCompliancesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockConfidentialAccountsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAccountsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetHistoriesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetHistoriesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetHoldersByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetHoldersByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetMovementsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetMovementsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialAssetsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialLegsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialLegsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialTransactionAffirmationsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockConfidentialTransactionsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialTransactionsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialVenuesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockConfidentialVenuesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockCustomClaimTypesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockCustomClaimTypesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockDistributionPaymentsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockDistributionPaymentsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockDistributionsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockDistributionsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockExtrinsicsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockFundingsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockFundingsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionAffirmationsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionAffirmationsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionEventsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionEventsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionPartiesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionPartiesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInstructionsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInvestmentsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockInvestmentsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockLegsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockLegsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigProposalVotesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigProposalVotesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigProposalsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigProposalsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigSignersByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigSignersByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMultiSigsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockNftHoldersByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockNftHoldersByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockOffChainReceiptsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockOffChainReceiptsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPermissionsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPermissionsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPolyxTransactionsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPolyxTransactionsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfolioMovementsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfolioMovementsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockPortfoliosByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockProposalVotesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockProposalVotesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockProposalsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockProposalsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockStakingEventsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockStakingEventsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockStatTypesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockStatTypesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockStosByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockStosByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTickerExternalAgentActionsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTickerExternalAgentActionsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTickerExternalAgentHistoriesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTickerExternalAgentHistoriesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTickerExternalAgentsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTickerExternalAgentsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTransferComplianceExemptionsByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTransferComplianceExemptionsByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTransferCompliancesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTransferCompliancesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTransferManagersByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTransferManagersByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTrustedClaimIssuersByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockTrustedClaimIssuersByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockVenuesByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockVenuesByStoCreatedBlockIdAndVenueIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockVenuesByStoUpdatedBlockIdAndVenueIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockVenuesByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Account` values, with data from `MultiSig`. */ +export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyConnection = { + __typename?: 'BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Account`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Account` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Account` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Account` values, with data from `MultiSig`. */ +export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Account` edge in the connection, with data from `MultiSig`. */ +export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyEdge = { + __typename?: 'BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatorAccountId: MultiSigsConnection; + /** The `Account` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Account` edge in the connection, with data from `MultiSig`. */ +export type BlockAccountsByMultiSigCreatedBlockIdAndCreatorAccountIdManyToManyEdgeMultiSigsByCreatorAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Account` values, with data from `MultiSig`. */ +export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyConnection = { + __typename?: 'BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Account`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Account` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Account` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Account` values, with data from `MultiSig`. */ +export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Account` edge in the connection, with data from `MultiSig`. */ +export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyEdge = { + __typename?: 'BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatorAccountId: MultiSigsConnection; + /** The `Account` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Account` edge in the connection, with data from `MultiSig`. */ +export type BlockAccountsByMultiSigUpdatedBlockIdAndCreatorAccountIdManyToManyEdgeMultiSigsByCreatorAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `AgentGroup` values, with data from `AgentGroupMembership`. */ +export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyConnection = { + __typename?: 'BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `AgentGroup`, info from the `AgentGroupMembership`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `AgentGroup` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `AgentGroup` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `AgentGroup` values, with data from `AgentGroupMembership`. */ +export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `AgentGroup` edge in the connection, with data from `AgentGroupMembership`. */ +export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyEdge = { + __typename?: 'BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AgentGroupMembership`. */ + members: AgentGroupMembershipsConnection; + /** The `AgentGroup` at the end of the edge. */ + node?: Maybe; +}; + +/** A `AgentGroup` edge in the connection, with data from `AgentGroupMembership`. */ +export type BlockAgentGroupsByAgentGroupMembershipCreatedBlockIdAndGroupIdManyToManyEdgeMembersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `AgentGroup` values, with data from `AgentGroupMembership`. */ +export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyConnection = { + __typename?: 'BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `AgentGroup`, info from the `AgentGroupMembership`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `AgentGroup` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `AgentGroup` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `AgentGroup` values, with data from `AgentGroupMembership`. */ +export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `AgentGroup` edge in the connection, with data from `AgentGroupMembership`. */ +export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyEdge = { + __typename?: 'BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AgentGroupMembership`. */ + members: AgentGroupMembershipsConnection; + /** The `AgentGroup` at the end of the edge. */ + node?: Maybe; +}; + +/** A `AgentGroup` edge in the connection, with data from `AgentGroupMembership`. */ +export type BlockAgentGroupsByAgentGroupMembershipUpdatedBlockIdAndGroupIdManyToManyEdgeMembersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockAggregates = { + __typename?: 'BlockAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A connection to a list of `Asset` values, with data from `AssetDocument`. */ +export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetDocument`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetDocument`. */ +export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetDocument`. */ +export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AssetDocument`. */ + documents: AssetDocumentsConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetDocument`. */ +export type BlockAssetsByAssetDocumentCreatedBlockIdAndAssetIdManyToManyEdgeDocumentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `AssetDocument`. */ +export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetDocument`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetDocument`. */ +export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetDocument`. */ +export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AssetDocument`. */ + documents: AssetDocumentsConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetDocument`. */ +export type BlockAssetsByAssetDocumentUpdatedBlockIdAndAssetIdManyToManyEdgeDocumentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `AssetHolder`. */ +export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetHolder`. */ +export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetHolder`. */ +export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AssetHolder`. */ + holders: AssetHoldersConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetHolder`. */ +export type BlockAssetsByAssetHolderCreatedBlockIdAndAssetIdManyToManyEdgeHoldersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `AssetHolder`. */ +export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetHolder`. */ +export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetHolder`. */ +export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AssetHolder`. */ + holders: AssetHoldersConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetHolder`. */ +export type BlockAssetsByAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdgeHoldersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `AssetMandatoryMediator`. */ +export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetMandatoryMediator`. */ +export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + mandatoryMediators: AssetMandatoryMediatorsConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockAssetsByAssetMandatoryMediatorCreatedBlockIdAndAssetIdManyToManyEdgeMandatoryMediatorsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `AssetMandatoryMediator`. */ +export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetMandatoryMediator`. */ +export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + mandatoryMediators: AssetMandatoryMediatorsConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockAssetsByAssetMandatoryMediatorUpdatedBlockIdAndAssetIdManyToManyEdgeMandatoryMediatorsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ +export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ +export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovals: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockAssetsByAssetPreApprovalCreatedBlockIdAndAssetIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ +export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ +export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovals: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockAssetsByAssetPreApprovalUpdatedBlockIdAndAssetIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ +export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ +export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetTransaction`. */ +export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetTransaction`. */ +export type BlockAssetsByAssetTransactionCreatedBlockIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ +export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ +export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetTransaction`. */ +export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetTransaction`. */ +export type BlockAssetsByAssetTransactionUpdatedBlockIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `ClaimScope`. */ +export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `ClaimScope`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `ClaimScope`. */ +export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `ClaimScope`. */ +export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ClaimScope`. */ + claimScopes: ClaimScopesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `ClaimScope`. */ +export type BlockAssetsByClaimScopeCreatedBlockIdAndAssetIdManyToManyEdgeClaimScopesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `ClaimScope`. */ +export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `ClaimScope`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `ClaimScope`. */ +export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `ClaimScope`. */ +export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ClaimScope`. */ + claimScopes: ClaimScopesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `ClaimScope`. */ +export type BlockAssetsByClaimScopeUpdatedBlockIdAndAssetIdManyToManyEdgeClaimScopesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `Compliance`. */ +export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Compliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Compliance`. */ +export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Compliance`. */ +export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Compliance`. */ + compliance: CompliancesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `Compliance`. */ +export type BlockAssetsByComplianceCreatedBlockIdAndAssetIdManyToManyEdgeComplianceArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `Compliance`. */ +export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Compliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Compliance`. */ +export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Compliance`. */ +export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Compliance`. */ + compliance: CompliancesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `Compliance`. */ +export type BlockAssetsByComplianceUpdatedBlockIdAndAssetIdManyToManyEdgeComplianceArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `Distribution`. */ +export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Distribution`. */ +export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Distribution`. */ +export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `Distribution`. */ +export type BlockAssetsByDistributionCreatedBlockIdAndAssetIdManyToManyEdgeDistributionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `Distribution`. */ +export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Distribution`. */ +export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Distribution`. */ +export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `Distribution`. */ +export type BlockAssetsByDistributionUpdatedBlockIdAndAssetIdManyToManyEdgeDistributionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `Funding`. */ +export type BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Funding`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Funding`. */ +export type BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Funding`. */ +export type BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Funding`. */ + fundings: FundingsConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `Funding`. */ +export type BlockAssetsByFundingCreatedBlockIdAndAssetIdManyToManyEdgeFundingsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `Funding`. */ +export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Funding`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Funding`. */ +export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Funding`. */ +export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Funding`. */ + fundings: FundingsConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `Funding`. */ +export type BlockAssetsByFundingUpdatedBlockIdAndAssetIdManyToManyEdgeFundingsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `NftHolder`. */ +export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `NftHolder`. */ +export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `NftHolder`. */ +export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHolders: NftHoldersConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `NftHolder`. */ +export type BlockAssetsByNftHolderCreatedBlockIdAndAssetIdManyToManyEdgeNftHoldersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `NftHolder`. */ +export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `NftHolder`. */ +export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `NftHolder`. */ +export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHolders: NftHoldersConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `NftHolder`. */ +export type BlockAssetsByNftHolderUpdatedBlockIdAndAssetIdManyToManyEdgeNftHoldersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ +export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ +export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovements: PortfolioMovementsConnection; +}; + +/** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockAssetsByPortfolioMovementCreatedBlockIdAndAssetIdManyToManyEdgePortfolioMovementsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ +export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ +export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovements: PortfolioMovementsConnection; +}; + +/** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockAssetsByPortfolioMovementUpdatedBlockIdAndAssetIdManyToManyEdgePortfolioMovementsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `StatType`. */ +export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `StatType`. */ +export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `StatType`. */ +export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypes: StatTypesConnection; +}; + +/** A `Asset` edge in the connection, with data from `StatType`. */ +export type BlockAssetsByStatTypeCreatedBlockIdAndAssetIdManyToManyEdgeStatTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `StatType`. */ +export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `StatType`. */ +export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `StatType`. */ +export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypes: StatTypesConnection; +}; + +/** A `Asset` edge in the connection, with data from `StatType`. */ +export type BlockAssetsByStatTypeUpdatedBlockIdAndAssetIdManyToManyEdgeStatTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingAssetId: StosConnection; +}; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type BlockAssetsByStoCreatedBlockIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingAssetId: StosConnection; +}; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type BlockAssetsByStoUpdatedBlockIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ +export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ +export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActions: TickerExternalAgentActionsConnection; +}; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockAssetsByTickerExternalAgentActionCreatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentActionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ +export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ +export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActions: TickerExternalAgentActionsConnection; +}; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockAssetsByTickerExternalAgentActionUpdatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentActionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ +export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ +export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgents: TickerExternalAgentsConnection; +}; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockAssetsByTickerExternalAgentCreatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ +export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ +export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; +}; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockAssetsByTickerExternalAgentHistoryCreatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ +export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ +export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; +}; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockAssetsByTickerExternalAgentHistoryUpdatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ +export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ +export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgents: TickerExternalAgentsConnection; +}; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockAssetsByTickerExternalAgentUpdatedBlockIdAndAssetIdManyToManyEdgeTickerExternalAgentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ +export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ +export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TransferCompliance`. */ +export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliances: TransferCompliancesConnection; +}; + +/** A `Asset` edge in the connection, with data from `TransferCompliance`. */ +export type BlockAssetsByTransferComplianceCreatedBlockIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TransferComplianceExemption`. */ +export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TransferComplianceExemption`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TransferComplianceExemption`. */ +export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TransferComplianceExemption`. */ +export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptions: TransferComplianceExemptionsConnection; +}; + +/** A `Asset` edge in the connection, with data from `TransferComplianceExemption`. */ +export type BlockAssetsByTransferComplianceExemptionCreatedBlockIdAndAssetIdManyToManyEdgeTransferComplianceExemptionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TransferComplianceExemption`. */ +export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TransferComplianceExemption`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TransferComplianceExemption`. */ +export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TransferComplianceExemption`. */ +export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptions: TransferComplianceExemptionsConnection; +}; + +/** A `Asset` edge in the connection, with data from `TransferComplianceExemption`. */ +export type BlockAssetsByTransferComplianceExemptionUpdatedBlockIdAndAssetIdManyToManyEdgeTransferComplianceExemptionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ +export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ +export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TransferCompliance`. */ +export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliances: TransferCompliancesConnection; +}; + +/** A `Asset` edge in the connection, with data from `TransferCompliance`. */ +export type BlockAssetsByTransferComplianceUpdatedBlockIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TransferManager`. */ +export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TransferManager`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TransferManager`. */ +export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TransferManager`. */ +export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferManager`. */ + transferManagers: TransferManagersConnection; +}; + +/** A `Asset` edge in the connection, with data from `TransferManager`. */ +export type BlockAssetsByTransferManagerCreatedBlockIdAndAssetIdManyToManyEdgeTransferManagersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TransferManager`. */ +export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TransferManager`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TransferManager`. */ +export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TransferManager`. */ +export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferManager`. */ + transferManagers: TransferManagersConnection; +}; + +/** A `Asset` edge in the connection, with data from `TransferManager`. */ +export type BlockAssetsByTransferManagerUpdatedBlockIdAndAssetIdManyToManyEdgeTransferManagersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TrustedClaimIssuer`. */ +export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TrustedClaimIssuer`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TrustedClaimIssuer`. */ +export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TrustedClaimIssuer`. */ + trustedClaimIssuers: TrustedClaimIssuersConnection; +}; + +/** A `Asset` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type BlockAssetsByTrustedClaimIssuerCreatedBlockIdAndAssetIdManyToManyEdgeTrustedClaimIssuersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TrustedClaimIssuer`. */ +export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyConnection = { + __typename?: 'BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TrustedClaimIssuer`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TrustedClaimIssuer`. */ +export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyEdge = { + __typename?: 'BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TrustedClaimIssuer`. */ + trustedClaimIssuers: TrustedClaimIssuersConnection; +}; + +/** A `Asset` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type BlockAssetsByTrustedClaimIssuerUpdatedBlockIdAndAssetIdManyToManyEdgeTrustedClaimIssuersArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockAverageAggregates = { + __typename?: 'BlockAverageAggregates'; + /** Mean average of blockId across the matching connection */ + blockId?: Maybe; + /** Mean average of countEvents across the matching connection */ + countEvents?: Maybe; + /** Mean average of countExtrinsics across the matching connection */ + countExtrinsics?: Maybe; + /** Mean average of countExtrinsicsError across the matching connection */ + countExtrinsicsError?: Maybe; + /** Mean average of countExtrinsicsSigned across the matching connection */ + countExtrinsicsSigned?: Maybe; + /** Mean average of countExtrinsicsSuccess across the matching connection */ + countExtrinsicsSuccess?: Maybe; + /** Mean average of countExtrinsicsUnsigned across the matching connection */ + countExtrinsicsUnsigned?: Maybe; + /** Mean average of parentId across the matching connection */ + parentId?: Maybe; + /** Mean average of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Account`. */ + accountsByUpdatedBlockId: AccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type BlockBlocksByAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAccountsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AccountHistory`. */ +export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AccountHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AccountHistory`. */ +export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AccountHistory`. */ +export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AccountHistory`. */ + accountHistoriesByUpdatedBlockId: AccountHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AccountHistory`. */ +export type BlockBlocksByAccountHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAccountHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AccountHistory`. */ +export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AccountHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AccountHistory`. */ +export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AccountHistory`. */ +export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AccountHistory`. */ + accountHistoriesByCreatedBlockId: AccountHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AccountHistory`. */ +export type BlockBlocksByAccountHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAccountHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Account`. */ + accountsByCreatedBlockId: AccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type BlockBlocksByAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAccountsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AgentGroup`. */ +export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AgentGroup`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AgentGroup`. */ +export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AgentGroup`. */ +export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AgentGroup`. */ + agentGroupsByUpdatedBlockId: AgentGroupsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AgentGroup`. */ +export type BlockBlocksByAgentGroupCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAgentGroupsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ +export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AgentGroupMembership`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ +export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ +export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AgentGroupMembership`. */ + agentGroupMembershipsByUpdatedBlockId: AgentGroupMembershipsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ +export type BlockBlocksByAgentGroupMembershipCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAgentGroupMembershipsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ +export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AgentGroupMembership`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AgentGroupMembership`. */ +export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ +export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AgentGroupMembership`. */ + agentGroupMembershipsByCreatedBlockId: AgentGroupMembershipsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AgentGroupMembership`. */ +export type BlockBlocksByAgentGroupMembershipUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAgentGroupMembershipsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AgentGroup`. */ +export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AgentGroup`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AgentGroup`. */ +export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AgentGroup`. */ +export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AgentGroup`. */ + agentGroupsByCreatedBlockId: AgentGroupsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AgentGroup`. */ +export type BlockBlocksByAgentGroupUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAgentGroupsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Asset`. */ +export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Asset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Asset`. */ +export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Asset`. */ +export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByUpdatedBlockId: AssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Asset`. */ +export type BlockBlocksByAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetDocument`. */ +export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetDocument`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetDocument`. */ +export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetDocument`. */ +export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetDocument`. */ + assetDocumentsByUpdatedBlockId: AssetDocumentsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetDocument`. */ +export type BlockBlocksByAssetDocumentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetDocumentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetDocument`. */ +export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetDocument`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetDocument`. */ +export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetDocument`. */ +export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetDocument`. */ + assetDocumentsByCreatedBlockId: AssetDocumentsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetDocument`. */ +export type BlockBlocksByAssetDocumentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetDocumentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetHolder`. */ + assetHoldersByUpdatedBlockId: AssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type BlockBlocksByAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetHolder`. */ + assetHoldersByCreatedBlockId: AssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type BlockBlocksByAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByUpdatedBlockId: AssetMandatoryMediatorsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockBlocksByAssetMandatoryMediatorCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByCreatedBlockId: AssetMandatoryMediatorsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockBlocksByAssetMandatoryMediatorUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovalsByUpdatedBlockId: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockBlocksByAssetPreApprovalCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetPreApprovalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovalsByCreatedBlockId: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockBlocksByAssetPreApprovalUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetPreApprovalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByUpdatedBlockId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type BlockBlocksByAssetTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByCreatedBlockId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type BlockBlocksByAssetTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Asset`. */ +export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Asset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Asset`. */ +export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Asset`. */ +export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByCreatedBlockId: AssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Asset`. */ +export type BlockBlocksByAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAssetsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Authorization`. */ +export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Authorization`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Authorization`. */ +export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Authorization`. */ +export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Authorization`. */ + authorizationsByUpdatedBlockId: AuthorizationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Authorization`. */ +export type BlockBlocksByAuthorizationCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeAuthorizationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Authorization`. */ +export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Authorization`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Authorization`. */ +export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Authorization`. */ +export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Authorization`. */ + authorizationsByCreatedBlockId: AuthorizationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Authorization`. */ +export type BlockBlocksByAuthorizationUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeAuthorizationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `BridgeEvent`. */ +export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `BridgeEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `BridgeEvent`. */ +export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `BridgeEvent`. */ +export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `BridgeEvent`. */ + bridgeEventsByUpdatedBlockId: BridgeEventsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `BridgeEvent`. */ +export type BlockBlocksByBridgeEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeBridgeEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `BridgeEvent`. */ +export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `BridgeEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `BridgeEvent`. */ +export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `BridgeEvent`. */ +export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `BridgeEvent`. */ + bridgeEventsByCreatedBlockId: BridgeEventsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `BridgeEvent`. */ +export type BlockBlocksByBridgeEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeBridgeEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + childIdentitiesByUpdatedBlockId: ChildIdentitiesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type BlockBlocksByChildIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeChildIdentitiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + childIdentitiesByCreatedBlockId: ChildIdentitiesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type BlockBlocksByChildIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeChildIdentitiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByUpdatedBlockId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type BlockBlocksByClaimCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ClaimScope`. */ +export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ClaimScope`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ClaimScope`. */ +export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ClaimScope`. */ +export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ClaimScope`. */ + claimScopesByUpdatedBlockId: ClaimScopesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ClaimScope`. */ +export type BlockBlocksByClaimScopeCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeClaimScopesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ClaimScope`. */ +export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ClaimScope`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ClaimScope`. */ +export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ClaimScope`. */ +export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ClaimScope`. */ + claimScopesByCreatedBlockId: ClaimScopesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ClaimScope`. */ +export type BlockBlocksByClaimScopeUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeClaimScopesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByCreatedBlockId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type BlockBlocksByClaimUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Compliance`. */ +export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Compliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Compliance`. */ +export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Compliance`. */ +export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Compliance`. */ + compliancesByUpdatedBlockId: CompliancesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Compliance`. */ +export type BlockBlocksByComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Compliance`. */ +export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Compliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Compliance`. */ +export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Compliance`. */ +export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Compliance`. */ + compliancesByCreatedBlockId: CompliancesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Compliance`. */ +export type BlockBlocksByComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ +export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAccount`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ +export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ +export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByUpdatedBlockId: ConfidentialAccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ +export type BlockBlocksByConfidentialAccountCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAccountsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ +export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAccount`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ +export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ +export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByCreatedBlockId: ConfidentialAccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ +export type BlockBlocksByConfidentialAccountUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAccountsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ +export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAsset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ +export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ +export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByUpdatedBlockId: ConfidentialAssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ +export type BlockBlocksByConfidentialAssetCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockBlocksByConfidentialAssetHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockBlocksByConfidentialAssetHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByUpdatedBlockId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockBlocksByConfidentialAssetHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByCreatedBlockId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockBlocksByConfidentialAssetHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByUpdatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockBlocksByConfidentialAssetMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByCreatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockBlocksByConfidentialAssetMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ +export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAsset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ +export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ +export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByCreatedBlockId: ConfidentialAssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ +export type BlockBlocksByConfidentialAssetUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByUpdatedBlockId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockBlocksByConfidentialLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByCreatedBlockId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockBlocksByConfidentialLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockBlocksByConfidentialTransactionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockBlocksByConfidentialTransactionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ +export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ +export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ +export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByUpdatedBlockId: ConfidentialTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ +export type BlockBlocksByConfidentialTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ +export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ +export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ +export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByCreatedBlockId: ConfidentialTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ +export type BlockBlocksByConfidentialTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ +export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialVenue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ +export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ +export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenuesByUpdatedBlockId: ConfidentialVenuesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ +export type BlockBlocksByConfidentialVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeConfidentialVenuesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ +export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialVenue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ +export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ +export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenuesByCreatedBlockId: ConfidentialVenuesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ +export type BlockBlocksByConfidentialVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeConfidentialVenuesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `CustomClaimType`. */ +export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `CustomClaimType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `CustomClaimType`. */ +export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `CustomClaimType`. */ +export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByUpdatedBlockId: CustomClaimTypesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `CustomClaimType`. */ +export type BlockBlocksByCustomClaimTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeCustomClaimTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `CustomClaimType`. */ +export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `CustomClaimType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `CustomClaimType`. */ +export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `CustomClaimType`. */ +export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByCreatedBlockId: CustomClaimTypesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `CustomClaimType`. */ +export type BlockBlocksByCustomClaimTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeCustomClaimTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByUpdatedBlockId: DistributionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type BlockBlocksByDistributionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByUpdatedBlockId: DistributionPaymentsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type BlockBlocksByDistributionPaymentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeDistributionPaymentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByCreatedBlockId: DistributionPaymentsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type BlockBlocksByDistributionPaymentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeDistributionPaymentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByCreatedBlockId: DistributionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type BlockBlocksByDistributionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Funding`. */ +export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Funding`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Funding`. */ +export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Funding`. */ +export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Funding`. */ + fundingsByUpdatedBlockId: FundingsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Funding`. */ +export type BlockBlocksByFundingCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeFundingsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Funding`. */ +export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Funding`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Funding`. */ +export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Funding`. */ +export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Funding`. */ + fundingsByCreatedBlockId: FundingsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Funding`. */ +export type BlockBlocksByFundingUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeFundingsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Identity`. */ +export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Identity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Identity`. */ +export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Identity`. */ +export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByUpdatedBlockId: IdentitiesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Identity`. */ +export type BlockBlocksByIdentityCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeIdentitiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Identity`. */ +export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Identity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Identity`. */ +export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Identity`. */ +export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByCreatedBlockId: IdentitiesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Identity`. */ +export type BlockBlocksByIdentityUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeIdentitiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByUpdatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockBlocksByInstructionAffirmationCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByCreatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockBlocksByInstructionAffirmationUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Instruction`. */ +export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Instruction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Instruction`. */ +export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Instruction`. */ +export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByUpdatedBlockId: InstructionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Instruction`. */ +export type BlockBlocksByInstructionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEventsByUpdatedBlockId: InstructionEventsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type BlockBlocksByInstructionEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEventsByCreatedBlockId: InstructionEventsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type BlockBlocksByInstructionEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionParty`. */ +export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionParty`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `InstructionParty`. */ +export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionParty`. */ +export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionParty`. */ + instructionPartiesByUpdatedBlockId: InstructionPartiesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionParty`. */ +export type BlockBlocksByInstructionPartyCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInstructionPartiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionParty`. */ +export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionParty`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `InstructionParty`. */ +export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionParty`. */ +export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionParty`. */ + instructionPartiesByCreatedBlockId: InstructionPartiesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionParty`. */ +export type BlockBlocksByInstructionPartyUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionPartiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Instruction`. */ +export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Instruction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Instruction`. */ +export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Instruction`. */ +export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByCreatedBlockId: InstructionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Instruction`. */ +export type BlockBlocksByInstructionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInstructionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Investment`. */ +export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Investment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Investment`. */ +export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Investment`. */ +export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Investment`. */ + investmentsByUpdatedBlockId: InvestmentsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Investment`. */ +export type BlockBlocksByInvestmentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeInvestmentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Investment`. */ +export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Investment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Investment`. */ +export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Investment`. */ +export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Investment`. */ + investmentsByCreatedBlockId: InvestmentsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Investment`. */ +export type BlockBlocksByInvestmentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeInvestmentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Leg`. */ +export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Leg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Leg`. */ +export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Leg`. */ +export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Leg`. */ + legsByUpdatedBlockId: LegsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Leg`. */ +export type BlockBlocksByLegCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Leg`. */ +export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Leg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Leg`. */ +export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Leg`. */ +export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Leg`. */ + legsByCreatedBlockId: LegsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Leg`. */ +export type BlockBlocksByLegUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByUpdatedBlockId: MultiSigsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type BlockBlocksByMultiSigCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByUpdatedBlockId: MultiSigProposalsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockBlocksByMultiSigProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByCreatedBlockId: MultiSigProposalsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockBlocksByMultiSigProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + multiSigProposalVotesByUpdatedBlockId: MultiSigProposalVotesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockBlocksByMultiSigProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalVotesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + multiSigProposalVotesByCreatedBlockId: MultiSigProposalVotesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockBlocksByMultiSigProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalVotesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ +export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigSigner`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ +export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigSigner`. */ +export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + multiSigSignersByUpdatedBlockId: MultiSigSignersConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigSigner`. */ +export type BlockBlocksByMultiSigSignerCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeMultiSigSignersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ +export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigSigner`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ +export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigSigner`. */ +export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + multiSigSignersByCreatedBlockId: MultiSigSignersConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigSigner`. */ +export type BlockBlocksByMultiSigSignerUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigSignersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatedBlockId: MultiSigsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type BlockBlocksByMultiSigUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeMultiSigsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHoldersByUpdatedBlockId: NftHoldersConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type BlockBlocksByNftHolderCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeNftHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHoldersByCreatedBlockId: NftHoldersConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type BlockBlocksByNftHolderUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeNftHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ +export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `OffChainReceipt`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ +export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `OffChainReceipt`. */ +export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByUpdatedBlockId: OffChainReceiptsConnection; +}; + +/** A `Block` edge in the connection, with data from `OffChainReceipt`. */ +export type BlockBlocksByOffChainReceiptCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeOffChainReceiptsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ +export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `OffChainReceipt`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ +export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `OffChainReceipt`. */ +export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByCreatedBlockId: OffChainReceiptsConnection; +}; + +/** A `Block` edge in the connection, with data from `OffChainReceipt`. */ +export type BlockBlocksByOffChainReceiptUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeOffChainReceiptsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Permission`. */ +export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Permission`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Permission`. */ +export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Permission`. */ +export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Permission`. */ + permissionsByUpdatedBlockId: PermissionsConnection; +}; + +/** A `Block` edge in the connection, with data from `Permission`. */ +export type BlockBlocksByPermissionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePermissionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Permission`. */ +export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Permission`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Permission`. */ +export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Permission`. */ +export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Permission`. */ + permissionsByCreatedBlockId: PermissionsConnection; +}; + +/** A `Block` edge in the connection, with data from `Permission`. */ +export type BlockBlocksByPermissionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePermissionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ +export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PolyxTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ +export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PolyxTransaction`. */ +export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PolyxTransaction`. */ + polyxTransactionsByUpdatedBlockId: PolyxTransactionsConnection; +}; + +/** A `Block` edge in the connection, with data from `PolyxTransaction`. */ +export type BlockBlocksByPolyxTransactionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePolyxTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ +export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PolyxTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ +export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PolyxTransaction`. */ +export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PolyxTransaction`. */ + polyxTransactionsByCreatedBlockId: PolyxTransactionsConnection; +}; + +/** A `Block` edge in the connection, with data from `PolyxTransaction`. */ +export type BlockBlocksByPolyxTransactionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePolyxTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByUpdatedBlockId: PortfoliosConnection; +}; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type BlockBlocksByPortfolioCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePortfoliosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByUpdatedBlockId: PortfolioMovementsConnection; +}; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockBlocksByPortfolioMovementCreatedBlockIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByCreatedBlockId: PortfolioMovementsConnection; +}; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockBlocksByPortfolioMovementUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByCreatedBlockId: PortfoliosConnection; +}; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type BlockBlocksByPortfolioUpdatedBlockIdAndCreatedBlockIdManyToManyEdgePortfoliosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Proposal`. */ +export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Proposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Proposal`. */ +export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Proposal`. */ +export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Proposal`. */ + proposalsByUpdatedBlockId: ProposalsConnection; +}; + +/** A `Block` edge in the connection, with data from `Proposal`. */ +export type BlockBlocksByProposalCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeProposalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Proposal`. */ +export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Proposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Proposal`. */ +export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Proposal`. */ +export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Proposal`. */ + proposalsByCreatedBlockId: ProposalsConnection; +}; + +/** A `Block` edge in the connection, with data from `Proposal`. */ +export type BlockBlocksByProposalUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeProposalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ProposalVote`. */ +export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ProposalVote`. */ +export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ProposalVote`. */ +export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `ProposalVote`. */ + proposalVotesByUpdatedBlockId: ProposalVotesConnection; +}; + +/** A `Block` edge in the connection, with data from `ProposalVote`. */ +export type BlockBlocksByProposalVoteCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeProposalVotesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ProposalVote`. */ +export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ProposalVote`. */ +export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ProposalVote`. */ +export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `ProposalVote`. */ + proposalVotesByCreatedBlockId: ProposalVotesConnection; +}; + +/** A `Block` edge in the connection, with data from `ProposalVote`. */ +export type BlockBlocksByProposalVoteUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeProposalVotesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StakingEvent`. */ +export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StakingEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `StakingEvent`. */ +export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StakingEvent`. */ +export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StakingEvent`. */ + stakingEventsByUpdatedBlockId: StakingEventsConnection; +}; + +/** A `Block` edge in the connection, with data from `StakingEvent`. */ +export type BlockBlocksByStakingEventCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeStakingEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StakingEvent`. */ +export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StakingEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `StakingEvent`. */ +export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StakingEvent`. */ +export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StakingEvent`. */ + stakingEventsByCreatedBlockId: StakingEventsConnection; +}; + +/** A `Block` edge in the connection, with data from `StakingEvent`. */ +export type BlockBlocksByStakingEventUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeStakingEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByUpdatedBlockId: StatTypesConnection; +}; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type BlockBlocksByStatTypeCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByCreatedBlockId: StatTypesConnection; +}; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type BlockBlocksByStatTypeUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByUpdatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type BlockBlocksByStoCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type BlockBlocksByStoUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByUpdatedBlockId: TickerExternalAgentActionsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockBlocksByTickerExternalAgentActionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentActionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByCreatedBlockId: TickerExternalAgentActionsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockBlocksByTickerExternalAgentActionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentActionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByUpdatedBlockId: TickerExternalAgentsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockBlocksByTickerExternalAgentCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistoriesByUpdatedBlockId: TickerExternalAgentHistoriesConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockBlocksByTickerExternalAgentHistoryCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistoriesByCreatedBlockId: TickerExternalAgentHistoriesConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockBlocksByTickerExternalAgentHistoryUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByCreatedBlockId: TickerExternalAgentsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockBlocksByTickerExternalAgentUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByUpdatedBlockId: TransferCompliancesConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type BlockBlocksByTransferComplianceCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ +export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferComplianceExemption`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ +export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ +export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptionsByUpdatedBlockId: TransferComplianceExemptionsConnection; + }; + +/** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ +export type BlockBlocksByTransferComplianceExemptionCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTransferComplianceExemptionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ +export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferComplianceExemption`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `TransferComplianceExemption`. */ +export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ +export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptionsByCreatedBlockId: TransferComplianceExemptionsConnection; + }; + +/** A `Block` edge in the connection, with data from `TransferComplianceExemption`. */ +export type BlockBlocksByTransferComplianceExemptionUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTransferComplianceExemptionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByCreatedBlockId: TransferCompliancesConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type BlockBlocksByTransferComplianceUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferManager`. */ +export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferManager`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferManager`. */ +export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferManager`. */ +export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferManager`. */ + transferManagersByUpdatedBlockId: TransferManagersConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferManager`. */ +export type BlockBlocksByTransferManagerCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTransferManagersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferManager`. */ +export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferManager`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferManager`. */ +export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferManager`. */ +export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferManager`. */ + transferManagersByCreatedBlockId: TransferManagersConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferManager`. */ +export type BlockBlocksByTransferManagerUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTransferManagersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ +export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TrustedClaimIssuer`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ +export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TrustedClaimIssuer`. */ + trustedClaimIssuersByUpdatedBlockId: TrustedClaimIssuersConnection; +}; + +/** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type BlockBlocksByTrustedClaimIssuerCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeTrustedClaimIssuersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ +export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TrustedClaimIssuer`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TrustedClaimIssuer`. */ +export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TrustedClaimIssuer`. */ + trustedClaimIssuersByCreatedBlockId: TrustedClaimIssuersConnection; +}; + +/** A `Block` edge in the connection, with data from `TrustedClaimIssuer`. */ +export type BlockBlocksByTrustedClaimIssuerUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeTrustedClaimIssuersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Venue`. */ +export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Venue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Venue`. */ +export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Venue`. */ +export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByUpdatedBlockId: VenuesConnection; +}; + +/** A `Block` edge in the connection, with data from `Venue`. */ +export type BlockBlocksByVenueCreatedBlockIdAndUpdatedBlockIdManyToManyEdgeVenuesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Venue`. */ +export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Venue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Venue`. */ +export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Venue`. */ +export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByCreatedBlockId: VenuesConnection; +}; + +/** A `Block` edge in the connection, with data from `Venue`. */ +export type BlockBlocksByVenueUpdatedBlockIdAndCreatedBlockIdManyToManyEdgeVenuesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryCreatedBlockIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAccountsByConfidentialAssetHistoryUpdatedBlockIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAccountId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAccountsByConfidentialAssetHolderCreatedBlockIdAndAccountIdManyToManyEdgeConfidentialAssetHoldersByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAccountId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAccountsByConfidentialAssetHolderUpdatedBlockIdAndAccountIdManyToManyEdgeConfidentialAssetHoldersByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementCreatedBlockIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAccountsByConfidentialAssetMovementUpdatedBlockIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyEdge = { + __typename?: 'BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByReceiverId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; +}; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyEdge = { + __typename?: 'BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsBySenderId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; +}; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegCreatedBlockIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyEdge = { + __typename?: 'BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByReceiverId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; +}; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyEdge = { + __typename?: 'BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsBySenderId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; +}; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialAccountsByConfidentialLegUpdatedBlockIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationCreatedBlockIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialAccountsByConfidentialTransactionAffirmationUpdatedBlockIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAssetsByConfidentialAssetHistoryCreatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialAssetsByConfidentialAssetHistoryUpdatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAssetId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAssetsByConfidentialAssetHolderCreatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHoldersByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAssetId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type BlockConfidentialAssetsByConfidentialAssetHolderUpdatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetHoldersByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAssetsByConfidentialAssetMovementCreatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyConnection = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyEdge = + { + __typename?: 'BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type BlockConfidentialAssetsByConfidentialAssetMovementUpdatedBlockIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialTransactionsByConfidentialAssetHistoryCreatedBlockIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type BlockConfidentialTransactionsByConfidentialAssetHistoryUpdatedBlockIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + legs: ConfidentialLegsConnection; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialTransactionsByConfidentialLegCreatedBlockIdAndTransactionIdManyToManyEdgeLegsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ +export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + legs: ConfidentialLegsConnection; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ +export type BlockConfidentialTransactionsByConfidentialLegUpdatedBlockIdAndTransactionIdManyToManyEdgeLegsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + affirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationCreatedBlockIdAndTransactionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyConnection = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyEdge = + { + __typename?: 'BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + affirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockConfidentialTransactionsByConfidentialTransactionAffirmationUpdatedBlockIdAndTransactionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialVenue` values, with data from `ConfidentialTransaction`. */ +export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyConnection = + { + __typename?: 'BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialVenue`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialVenue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialVenue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialVenue` values, with data from `ConfidentialTransaction`. */ +export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialVenue` edge in the connection, with data from `ConfidentialTransaction`. */ +export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyEdge = + { + __typename?: 'BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByVenueId: ConfidentialTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialVenue` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialVenue` edge in the connection, with data from `ConfidentialTransaction`. */ +export type BlockConfidentialVenuesByConfidentialTransactionCreatedBlockIdAndVenueIdManyToManyEdgeConfidentialTransactionsByVenueIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialVenue` values, with data from `ConfidentialTransaction`. */ +export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyConnection = + { + __typename?: 'BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialVenue`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialVenue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialVenue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialVenue` values, with data from `ConfidentialTransaction`. */ +export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialVenue` edge in the connection, with data from `ConfidentialTransaction`. */ +export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyEdge = + { + __typename?: 'BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByVenueId: ConfidentialTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialVenue` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialVenue` edge in the connection, with data from `ConfidentialTransaction`. */ +export type BlockConfidentialVenuesByConfidentialTransactionUpdatedBlockIdAndVenueIdManyToManyEdgeConfidentialTransactionsByVenueIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ +export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection = { + __typename?: 'BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ +export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `CustomClaimType` edge in the connection, with data from `Claim`. */ +export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyEdge = { + __typename?: 'BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claims: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `CustomClaimType` at the end of the edge. */ + node?: Maybe; +}; + +/** A `CustomClaimType` edge in the connection, with data from `Claim`. */ +export type BlockCustomClaimTypesByClaimCreatedBlockIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ +export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection = { + __typename?: 'BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ +export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `CustomClaimType` edge in the connection, with data from `Claim`. */ +export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdge = { + __typename?: 'BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claims: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `CustomClaimType` at the end of the edge. */ + node?: Maybe; +}; + +/** A `CustomClaimType` edge in the connection, with data from `Claim`. */ +export type BlockCustomClaimTypesByClaimUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ +export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection = + { + __typename?: 'BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ +export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `CustomClaimType` edge in the connection, with data from `StatType`. */ +export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyEdge = { + __typename?: 'BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `CustomClaimType` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypes: StatTypesConnection; +}; + +/** A `CustomClaimType` edge in the connection, with data from `StatType`. */ +export type BlockCustomClaimTypesByStatTypeCreatedBlockIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ +export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection = + { + __typename?: 'BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ +export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `CustomClaimType` edge in the connection, with data from `StatType`. */ +export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdge = { + __typename?: 'BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `CustomClaimType` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypes: StatTypesConnection; +}; + +/** A `CustomClaimType` edge in the connection, with data from `StatType`. */ +export type BlockCustomClaimTypesByStatTypeUpdatedBlockIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockDistinctCountAggregates = { + __typename?: 'BlockDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of blockId across the matching connection */ + blockId?: Maybe; + /** Distinct count of countEvents across the matching connection */ + countEvents?: Maybe; + /** Distinct count of countExtrinsics across the matching connection */ + countExtrinsics?: Maybe; + /** Distinct count of countExtrinsicsError across the matching connection */ + countExtrinsicsError?: Maybe; + /** Distinct count of countExtrinsicsSigned across the matching connection */ + countExtrinsicsSigned?: Maybe; + /** Distinct count of countExtrinsicsSuccess across the matching connection */ + countExtrinsicsSuccess?: Maybe; + /** Distinct count of countExtrinsicsUnsigned across the matching connection */ + countExtrinsicsUnsigned?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of extrinsicsRoot across the matching connection */ + extrinsicsRoot?: Maybe; + /** Distinct count of hash across the matching connection */ + hash?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of parentHash across the matching connection */ + parentHash?: Maybe; + /** Distinct count of parentId across the matching connection */ + parentId?: Maybe; + /** Distinct count of specVersionId across the matching connection */ + specVersionId?: Maybe; + /** Distinct count of stateRoot across the matching connection */ + stateRoot?: Maybe; +}; + +/** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ +export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyConnection = + { + __typename?: 'BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Distribution`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Distribution` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Distribution` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ +export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ +export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyEdge = { + __typename?: 'BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPayments: DistributionPaymentsConnection; + /** The `Distribution` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ +export type BlockDistributionsByDistributionPaymentCreatedBlockIdAndDistributionIdManyToManyEdgeDistributionPaymentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ +export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyConnection = + { + __typename?: 'BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Distribution`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Distribution` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Distribution` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ +export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ +export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyEdge = { + __typename?: 'BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPayments: DistributionPaymentsConnection; + /** The `Distribution` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ +export type BlockDistributionsByDistributionPaymentUpdatedBlockIdAndDistributionIdManyToManyEdgeDistributionPaymentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Extrinsic` values, with data from `Event`. */ +export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection = { + __typename?: 'BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Extrinsic`, info from the `Event`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Extrinsic` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Extrinsic` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Extrinsic` values, with data from `Event`. */ +export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Extrinsic` edge in the connection, with data from `Event`. */ +export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdge = { + __typename?: 'BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Event`. */ + events: EventsConnection; + /** The `Extrinsic` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Extrinsic` edge in the connection, with data from `Event`. */ +export type BlockExtrinsicsByEventBlockIdAndExtrinsicIdManyToManyEdgeEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Extrinsic` values, with data from `PolyxTransaction`. */ +export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyConnection = { + __typename?: 'BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Extrinsic`, info from the `PolyxTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Extrinsic` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Extrinsic` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Extrinsic` values, with data from `PolyxTransaction`. */ +export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Extrinsic` edge in the connection, with data from `PolyxTransaction`. */ +export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyEdge = { + __typename?: 'BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Extrinsic` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PolyxTransaction`. */ + polyxTransactions: PolyxTransactionsConnection; +}; + +/** A `Extrinsic` edge in the connection, with data from `PolyxTransaction`. */ +export type BlockExtrinsicsByPolyxTransactionCreatedBlockIdAndExtrinsicIdManyToManyEdgePolyxTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Extrinsic` values, with data from `PolyxTransaction`. */ +export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyConnection = { + __typename?: 'BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Extrinsic`, info from the `PolyxTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Extrinsic` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Extrinsic` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Extrinsic` values, with data from `PolyxTransaction`. */ +export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Extrinsic` edge in the connection, with data from `PolyxTransaction`. */ +export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyEdge = { + __typename?: 'BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Extrinsic` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PolyxTransaction`. */ + polyxTransactions: PolyxTransactionsConnection; +}; + +/** A `Extrinsic` edge in the connection, with data from `PolyxTransaction`. */ +export type BlockExtrinsicsByPolyxTransactionUpdatedBlockIdAndExtrinsicIdManyToManyEdgePolyxTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A filter to be used against `Block` object types. All fields are combined with a logical ‘and.’ */ +export type BlockFilter = { + /** Filter by the object’s `accountHistoriesByCreatedBlockId` relation. */ + accountHistoriesByCreatedBlockId?: InputMaybe; + /** Some related `accountHistoriesByCreatedBlockId` exist. */ + accountHistoriesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `accountHistoriesByUpdatedBlockId` relation. */ + accountHistoriesByUpdatedBlockId?: InputMaybe; + /** Some related `accountHistoriesByUpdatedBlockId` exist. */ + accountHistoriesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `accountsByCreatedBlockId` relation. */ + accountsByCreatedBlockId?: InputMaybe; + /** Some related `accountsByCreatedBlockId` exist. */ + accountsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `accountsByUpdatedBlockId` relation. */ + accountsByUpdatedBlockId?: InputMaybe; + /** Some related `accountsByUpdatedBlockId` exist. */ + accountsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `agentGroupMembershipsByCreatedBlockId` relation. */ + agentGroupMembershipsByCreatedBlockId?: InputMaybe; + /** Some related `agentGroupMembershipsByCreatedBlockId` exist. */ + agentGroupMembershipsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `agentGroupMembershipsByUpdatedBlockId` relation. */ + agentGroupMembershipsByUpdatedBlockId?: InputMaybe; + /** Some related `agentGroupMembershipsByUpdatedBlockId` exist. */ + agentGroupMembershipsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `agentGroupsByCreatedBlockId` relation. */ + agentGroupsByCreatedBlockId?: InputMaybe; + /** Some related `agentGroupsByCreatedBlockId` exist. */ + agentGroupsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `agentGroupsByUpdatedBlockId` relation. */ + agentGroupsByUpdatedBlockId?: InputMaybe; + /** Some related `agentGroupsByUpdatedBlockId` exist. */ + agentGroupsByUpdatedBlockIdExist?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `assetDocumentsByCreatedBlockId` relation. */ + assetDocumentsByCreatedBlockId?: InputMaybe; + /** Some related `assetDocumentsByCreatedBlockId` exist. */ + assetDocumentsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `assetDocumentsByUpdatedBlockId` relation. */ + assetDocumentsByUpdatedBlockId?: InputMaybe; + /** Some related `assetDocumentsByUpdatedBlockId` exist. */ + assetDocumentsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `assetHoldersByCreatedBlockId` relation. */ + assetHoldersByCreatedBlockId?: InputMaybe; + /** Some related `assetHoldersByCreatedBlockId` exist. */ + assetHoldersByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `assetHoldersByUpdatedBlockId` relation. */ + assetHoldersByUpdatedBlockId?: InputMaybe; + /** Some related `assetHoldersByUpdatedBlockId` exist. */ + assetHoldersByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `assetMandatoryMediatorsByCreatedBlockId` relation. */ + assetMandatoryMediatorsByCreatedBlockId?: InputMaybe; + /** Some related `assetMandatoryMediatorsByCreatedBlockId` exist. */ + assetMandatoryMediatorsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `assetMandatoryMediatorsByUpdatedBlockId` relation. */ + assetMandatoryMediatorsByUpdatedBlockId?: InputMaybe; + /** Some related `assetMandatoryMediatorsByUpdatedBlockId` exist. */ + assetMandatoryMediatorsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `assetPreApprovalsByCreatedBlockId` relation. */ + assetPreApprovalsByCreatedBlockId?: InputMaybe; + /** Some related `assetPreApprovalsByCreatedBlockId` exist. */ + assetPreApprovalsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `assetPreApprovalsByUpdatedBlockId` relation. */ + assetPreApprovalsByUpdatedBlockId?: InputMaybe; + /** Some related `assetPreApprovalsByUpdatedBlockId` exist. */ + assetPreApprovalsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `assetTransactionsByCreatedBlockId` relation. */ + assetTransactionsByCreatedBlockId?: InputMaybe; + /** Some related `assetTransactionsByCreatedBlockId` exist. */ + assetTransactionsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `assetTransactionsByUpdatedBlockId` relation. */ + assetTransactionsByUpdatedBlockId?: InputMaybe; + /** Some related `assetTransactionsByUpdatedBlockId` exist. */ + assetTransactionsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `assetsByCreatedBlockId` relation. */ + assetsByCreatedBlockId?: InputMaybe; + /** Some related `assetsByCreatedBlockId` exist. */ + assetsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `assetsByUpdatedBlockId` relation. */ + assetsByUpdatedBlockId?: InputMaybe; + /** Some related `assetsByUpdatedBlockId` exist. */ + assetsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `authorizationsByCreatedBlockId` relation. */ + authorizationsByCreatedBlockId?: InputMaybe; + /** Some related `authorizationsByCreatedBlockId` exist. */ + authorizationsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `authorizationsByUpdatedBlockId` relation. */ + authorizationsByUpdatedBlockId?: InputMaybe; + /** Some related `authorizationsByUpdatedBlockId` exist. */ + authorizationsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `blockId` field. */ + blockId?: InputMaybe; + /** Filter by the object’s `bridgeEventsByCreatedBlockId` relation. */ + bridgeEventsByCreatedBlockId?: InputMaybe; + /** Some related `bridgeEventsByCreatedBlockId` exist. */ + bridgeEventsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `bridgeEventsByUpdatedBlockId` relation. */ + bridgeEventsByUpdatedBlockId?: InputMaybe; + /** Some related `bridgeEventsByUpdatedBlockId` exist. */ + bridgeEventsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `childIdentitiesByCreatedBlockId` relation. */ + childIdentitiesByCreatedBlockId?: InputMaybe; + /** Some related `childIdentitiesByCreatedBlockId` exist. */ + childIdentitiesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `childIdentitiesByUpdatedBlockId` relation. */ + childIdentitiesByUpdatedBlockId?: InputMaybe; + /** Some related `childIdentitiesByUpdatedBlockId` exist. */ + childIdentitiesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `claimScopesByCreatedBlockId` relation. */ + claimScopesByCreatedBlockId?: InputMaybe; + /** Some related `claimScopesByCreatedBlockId` exist. */ + claimScopesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `claimScopesByUpdatedBlockId` relation. */ + claimScopesByUpdatedBlockId?: InputMaybe; + /** Some related `claimScopesByUpdatedBlockId` exist. */ + claimScopesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `claimsByCreatedBlockId` relation. */ + claimsByCreatedBlockId?: InputMaybe; + /** Some related `claimsByCreatedBlockId` exist. */ + claimsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `claimsByUpdatedBlockId` relation. */ + claimsByUpdatedBlockId?: InputMaybe; + /** Some related `claimsByUpdatedBlockId` exist. */ + claimsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `compliancesByCreatedBlockId` relation. */ + compliancesByCreatedBlockId?: InputMaybe; + /** Some related `compliancesByCreatedBlockId` exist. */ + compliancesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `compliancesByUpdatedBlockId` relation. */ + compliancesByUpdatedBlockId?: InputMaybe; + /** Some related `compliancesByUpdatedBlockId` exist. */ + compliancesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAccountsByCreatedBlockId` relation. */ + confidentialAccountsByCreatedBlockId?: InputMaybe; + /** Some related `confidentialAccountsByCreatedBlockId` exist. */ + confidentialAccountsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAccountsByUpdatedBlockId` relation. */ + confidentialAccountsByUpdatedBlockId?: InputMaybe; + /** Some related `confidentialAccountsByUpdatedBlockId` exist. */ + confidentialAccountsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetHistoriesByCreatedBlockId` relation. */ + confidentialAssetHistoriesByCreatedBlockId?: InputMaybe; + /** Some related `confidentialAssetHistoriesByCreatedBlockId` exist. */ + confidentialAssetHistoriesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetHistoriesByUpdatedBlockId` relation. */ + confidentialAssetHistoriesByUpdatedBlockId?: InputMaybe; + /** Some related `confidentialAssetHistoriesByUpdatedBlockId` exist. */ + confidentialAssetHistoriesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetHoldersByCreatedBlockId` relation. */ + confidentialAssetHoldersByCreatedBlockId?: InputMaybe; + /** Some related `confidentialAssetHoldersByCreatedBlockId` exist. */ + confidentialAssetHoldersByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetHoldersByUpdatedBlockId` relation. */ + confidentialAssetHoldersByUpdatedBlockId?: InputMaybe; + /** Some related `confidentialAssetHoldersByUpdatedBlockId` exist. */ + confidentialAssetHoldersByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetMovementsByCreatedBlockId` relation. */ + confidentialAssetMovementsByCreatedBlockId?: InputMaybe; + /** Some related `confidentialAssetMovementsByCreatedBlockId` exist. */ + confidentialAssetMovementsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetMovementsByUpdatedBlockId` relation. */ + confidentialAssetMovementsByUpdatedBlockId?: InputMaybe; + /** Some related `confidentialAssetMovementsByUpdatedBlockId` exist. */ + confidentialAssetMovementsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetsByCreatedBlockId` relation. */ + confidentialAssetsByCreatedBlockId?: InputMaybe; + /** Some related `confidentialAssetsByCreatedBlockId` exist. */ + confidentialAssetsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetsByUpdatedBlockId` relation. */ + confidentialAssetsByUpdatedBlockId?: InputMaybe; + /** Some related `confidentialAssetsByUpdatedBlockId` exist. */ + confidentialAssetsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialLegsByCreatedBlockId` relation. */ + confidentialLegsByCreatedBlockId?: InputMaybe; + /** Some related `confidentialLegsByCreatedBlockId` exist. */ + confidentialLegsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialLegsByUpdatedBlockId` relation. */ + confidentialLegsByUpdatedBlockId?: InputMaybe; + /** Some related `confidentialLegsByUpdatedBlockId` exist. */ + confidentialLegsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialTransactionAffirmationsByCreatedBlockId` relation. */ + confidentialTransactionAffirmationsByCreatedBlockId?: InputMaybe; + /** Some related `confidentialTransactionAffirmationsByCreatedBlockId` exist. */ + confidentialTransactionAffirmationsByCreatedBlockIdExist?: InputMaybe< + Scalars['Boolean']['input'] + >; + /** Filter by the object’s `confidentialTransactionAffirmationsByUpdatedBlockId` relation. */ + confidentialTransactionAffirmationsByUpdatedBlockId?: InputMaybe; + /** Some related `confidentialTransactionAffirmationsByUpdatedBlockId` exist. */ + confidentialTransactionAffirmationsByUpdatedBlockIdExist?: InputMaybe< + Scalars['Boolean']['input'] + >; + /** Filter by the object’s `confidentialTransactionsByCreatedBlockId` relation. */ + confidentialTransactionsByCreatedBlockId?: InputMaybe; + /** Some related `confidentialTransactionsByCreatedBlockId` exist. */ + confidentialTransactionsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialTransactionsByUpdatedBlockId` relation. */ + confidentialTransactionsByUpdatedBlockId?: InputMaybe; + /** Some related `confidentialTransactionsByUpdatedBlockId` exist. */ + confidentialTransactionsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialVenuesByCreatedBlockId` relation. */ + confidentialVenuesByCreatedBlockId?: InputMaybe; + /** Some related `confidentialVenuesByCreatedBlockId` exist. */ + confidentialVenuesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `confidentialVenuesByUpdatedBlockId` relation. */ + confidentialVenuesByUpdatedBlockId?: InputMaybe; + /** Some related `confidentialVenuesByUpdatedBlockId` exist. */ + confidentialVenuesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `countEvents` field. */ + countEvents?: InputMaybe; + /** Filter by the object’s `countExtrinsics` field. */ + countExtrinsics?: InputMaybe; + /** Filter by the object’s `countExtrinsicsError` field. */ + countExtrinsicsError?: InputMaybe; + /** Filter by the object’s `countExtrinsicsSigned` field. */ + countExtrinsicsSigned?: InputMaybe; + /** Filter by the object’s `countExtrinsicsSuccess` field. */ + countExtrinsicsSuccess?: InputMaybe; + /** Filter by the object’s `countExtrinsicsUnsigned` field. */ + countExtrinsicsUnsigned?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `customClaimTypesByCreatedBlockId` relation. */ + customClaimTypesByCreatedBlockId?: InputMaybe; + /** Some related `customClaimTypesByCreatedBlockId` exist. */ + customClaimTypesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `customClaimTypesByUpdatedBlockId` relation. */ + customClaimTypesByUpdatedBlockId?: InputMaybe; + /** Some related `customClaimTypesByUpdatedBlockId` exist. */ + customClaimTypesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `distributionPaymentsByCreatedBlockId` relation. */ + distributionPaymentsByCreatedBlockId?: InputMaybe; + /** Some related `distributionPaymentsByCreatedBlockId` exist. */ + distributionPaymentsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `distributionPaymentsByUpdatedBlockId` relation. */ + distributionPaymentsByUpdatedBlockId?: InputMaybe; + /** Some related `distributionPaymentsByUpdatedBlockId` exist. */ + distributionPaymentsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `distributionsByCreatedBlockId` relation. */ + distributionsByCreatedBlockId?: InputMaybe; + /** Some related `distributionsByCreatedBlockId` exist. */ + distributionsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `distributionsByUpdatedBlockId` relation. */ + distributionsByUpdatedBlockId?: InputMaybe; + /** Some related `distributionsByUpdatedBlockId` exist. */ + distributionsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `events` relation. */ + events?: InputMaybe; + /** Some related `events` exist. */ + eventsExist?: InputMaybe; + /** Filter by the object’s `extrinsics` relation. */ + extrinsics?: InputMaybe; + /** Some related `extrinsics` exist. */ + extrinsicsExist?: InputMaybe; + /** Filter by the object’s `extrinsicsRoot` field. */ + extrinsicsRoot?: InputMaybe; + /** Filter by the object’s `fundingsByCreatedBlockId` relation. */ + fundingsByCreatedBlockId?: InputMaybe; + /** Some related `fundingsByCreatedBlockId` exist. */ + fundingsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `fundingsByUpdatedBlockId` relation. */ + fundingsByUpdatedBlockId?: InputMaybe; + /** Some related `fundingsByUpdatedBlockId` exist. */ + fundingsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `hash` field. */ + hash?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identitiesByCreatedBlockId` relation. */ + identitiesByCreatedBlockId?: InputMaybe; + /** Some related `identitiesByCreatedBlockId` exist. */ + identitiesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `identitiesByUpdatedBlockId` relation. */ + identitiesByUpdatedBlockId?: InputMaybe; + /** Some related `identitiesByUpdatedBlockId` exist. */ + identitiesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `instructionAffirmationsByCreatedBlockId` relation. */ + instructionAffirmationsByCreatedBlockId?: InputMaybe; + /** Some related `instructionAffirmationsByCreatedBlockId` exist. */ + instructionAffirmationsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `instructionAffirmationsByUpdatedBlockId` relation. */ + instructionAffirmationsByUpdatedBlockId?: InputMaybe; + /** Some related `instructionAffirmationsByUpdatedBlockId` exist. */ + instructionAffirmationsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `instructionEventsByCreatedBlockId` relation. */ + instructionEventsByCreatedBlockId?: InputMaybe; + /** Some related `instructionEventsByCreatedBlockId` exist. */ + instructionEventsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `instructionEventsByUpdatedBlockId` relation. */ + instructionEventsByUpdatedBlockId?: InputMaybe; + /** Some related `instructionEventsByUpdatedBlockId` exist. */ + instructionEventsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `instructionPartiesByCreatedBlockId` relation. */ + instructionPartiesByCreatedBlockId?: InputMaybe; + /** Some related `instructionPartiesByCreatedBlockId` exist. */ + instructionPartiesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `instructionPartiesByUpdatedBlockId` relation. */ + instructionPartiesByUpdatedBlockId?: InputMaybe; + /** Some related `instructionPartiesByUpdatedBlockId` exist. */ + instructionPartiesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `instructionsByCreatedBlockId` relation. */ + instructionsByCreatedBlockId?: InputMaybe; + /** Some related `instructionsByCreatedBlockId` exist. */ + instructionsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `instructionsByUpdatedBlockId` relation. */ + instructionsByUpdatedBlockId?: InputMaybe; + /** Some related `instructionsByUpdatedBlockId` exist. */ + instructionsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `investmentsByCreatedBlockId` relation. */ + investmentsByCreatedBlockId?: InputMaybe; + /** Some related `investmentsByCreatedBlockId` exist. */ + investmentsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `investmentsByUpdatedBlockId` relation. */ + investmentsByUpdatedBlockId?: InputMaybe; + /** Some related `investmentsByUpdatedBlockId` exist. */ + investmentsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `legsByCreatedBlockId` relation. */ + legsByCreatedBlockId?: InputMaybe; + /** Some related `legsByCreatedBlockId` exist. */ + legsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `legsByUpdatedBlockId` relation. */ + legsByUpdatedBlockId?: InputMaybe; + /** Some related `legsByUpdatedBlockId` exist. */ + legsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `multiSigProposalVotesByCreatedBlockId` relation. */ + multiSigProposalVotesByCreatedBlockId?: InputMaybe; + /** Some related `multiSigProposalVotesByCreatedBlockId` exist. */ + multiSigProposalVotesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `multiSigProposalVotesByUpdatedBlockId` relation. */ + multiSigProposalVotesByUpdatedBlockId?: InputMaybe; + /** Some related `multiSigProposalVotesByUpdatedBlockId` exist. */ + multiSigProposalVotesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `multiSigProposalsByCreatedBlockId` relation. */ + multiSigProposalsByCreatedBlockId?: InputMaybe; + /** Some related `multiSigProposalsByCreatedBlockId` exist. */ + multiSigProposalsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `multiSigProposalsByUpdatedBlockId` relation. */ + multiSigProposalsByUpdatedBlockId?: InputMaybe; + /** Some related `multiSigProposalsByUpdatedBlockId` exist. */ + multiSigProposalsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `multiSigSignersByCreatedBlockId` relation. */ + multiSigSignersByCreatedBlockId?: InputMaybe; + /** Some related `multiSigSignersByCreatedBlockId` exist. */ + multiSigSignersByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `multiSigSignersByUpdatedBlockId` relation. */ + multiSigSignersByUpdatedBlockId?: InputMaybe; + /** Some related `multiSigSignersByUpdatedBlockId` exist. */ + multiSigSignersByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `multiSigsByCreatedBlockId` relation. */ + multiSigsByCreatedBlockId?: InputMaybe; + /** Some related `multiSigsByCreatedBlockId` exist. */ + multiSigsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `multiSigsByUpdatedBlockId` relation. */ + multiSigsByUpdatedBlockId?: InputMaybe; + /** Some related `multiSigsByUpdatedBlockId` exist. */ + multiSigsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `nftHoldersByCreatedBlockId` relation. */ + nftHoldersByCreatedBlockId?: InputMaybe; + /** Some related `nftHoldersByCreatedBlockId` exist. */ + nftHoldersByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `nftHoldersByUpdatedBlockId` relation. */ + nftHoldersByUpdatedBlockId?: InputMaybe; + /** Some related `nftHoldersByUpdatedBlockId` exist. */ + nftHoldersByUpdatedBlockIdExist?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Filter by the object’s `offChainReceiptsByCreatedBlockId` relation. */ + offChainReceiptsByCreatedBlockId?: InputMaybe; + /** Some related `offChainReceiptsByCreatedBlockId` exist. */ + offChainReceiptsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `offChainReceiptsByUpdatedBlockId` relation. */ + offChainReceiptsByUpdatedBlockId?: InputMaybe; + /** Some related `offChainReceiptsByUpdatedBlockId` exist. */ + offChainReceiptsByUpdatedBlockIdExist?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `parentHash` field. */ + parentHash?: InputMaybe; + /** Filter by the object’s `parentId` field. */ + parentId?: InputMaybe; + /** Filter by the object’s `permissionsByCreatedBlockId` relation. */ + permissionsByCreatedBlockId?: InputMaybe; + /** Some related `permissionsByCreatedBlockId` exist. */ + permissionsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `permissionsByUpdatedBlockId` relation. */ + permissionsByUpdatedBlockId?: InputMaybe; + /** Some related `permissionsByUpdatedBlockId` exist. */ + permissionsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `polyxTransactionsByCreatedBlockId` relation. */ + polyxTransactionsByCreatedBlockId?: InputMaybe; + /** Some related `polyxTransactionsByCreatedBlockId` exist. */ + polyxTransactionsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `polyxTransactionsByUpdatedBlockId` relation. */ + polyxTransactionsByUpdatedBlockId?: InputMaybe; + /** Some related `polyxTransactionsByUpdatedBlockId` exist. */ + polyxTransactionsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `portfolioMovementsByCreatedBlockId` relation. */ + portfolioMovementsByCreatedBlockId?: InputMaybe; + /** Some related `portfolioMovementsByCreatedBlockId` exist. */ + portfolioMovementsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `portfolioMovementsByUpdatedBlockId` relation. */ + portfolioMovementsByUpdatedBlockId?: InputMaybe; + /** Some related `portfolioMovementsByUpdatedBlockId` exist. */ + portfolioMovementsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `portfoliosByCreatedBlockId` relation. */ + portfoliosByCreatedBlockId?: InputMaybe; + /** Some related `portfoliosByCreatedBlockId` exist. */ + portfoliosByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `portfoliosByUpdatedBlockId` relation. */ + portfoliosByUpdatedBlockId?: InputMaybe; + /** Some related `portfoliosByUpdatedBlockId` exist. */ + portfoliosByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `proposalVotesByCreatedBlockId` relation. */ + proposalVotesByCreatedBlockId?: InputMaybe; + /** Some related `proposalVotesByCreatedBlockId` exist. */ + proposalVotesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `proposalVotesByUpdatedBlockId` relation. */ + proposalVotesByUpdatedBlockId?: InputMaybe; + /** Some related `proposalVotesByUpdatedBlockId` exist. */ + proposalVotesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `proposalsByCreatedBlockId` relation. */ + proposalsByCreatedBlockId?: InputMaybe; + /** Some related `proposalsByCreatedBlockId` exist. */ + proposalsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `proposalsByUpdatedBlockId` relation. */ + proposalsByUpdatedBlockId?: InputMaybe; + /** Some related `proposalsByUpdatedBlockId` exist. */ + proposalsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `specVersionId` field. */ + specVersionId?: InputMaybe; + /** Filter by the object’s `stakingEventsByCreatedBlockId` relation. */ + stakingEventsByCreatedBlockId?: InputMaybe; + /** Some related `stakingEventsByCreatedBlockId` exist. */ + stakingEventsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `stakingEventsByUpdatedBlockId` relation. */ + stakingEventsByUpdatedBlockId?: InputMaybe; + /** Some related `stakingEventsByUpdatedBlockId` exist. */ + stakingEventsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `statTypesByCreatedBlockId` relation. */ + statTypesByCreatedBlockId?: InputMaybe; + /** Some related `statTypesByCreatedBlockId` exist. */ + statTypesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `statTypesByUpdatedBlockId` relation. */ + statTypesByUpdatedBlockId?: InputMaybe; + /** Some related `statTypesByUpdatedBlockId` exist. */ + statTypesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `stateRoot` field. */ + stateRoot?: InputMaybe; + /** Filter by the object’s `stosByCreatedBlockId` relation. */ + stosByCreatedBlockId?: InputMaybe; + /** Some related `stosByCreatedBlockId` exist. */ + stosByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `stosByUpdatedBlockId` relation. */ + stosByUpdatedBlockId?: InputMaybe; + /** Some related `stosByUpdatedBlockId` exist. */ + stosByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `tickerExternalAgentActionsByCreatedBlockId` relation. */ + tickerExternalAgentActionsByCreatedBlockId?: InputMaybe; + /** Some related `tickerExternalAgentActionsByCreatedBlockId` exist. */ + tickerExternalAgentActionsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `tickerExternalAgentActionsByUpdatedBlockId` relation. */ + tickerExternalAgentActionsByUpdatedBlockId?: InputMaybe; + /** Some related `tickerExternalAgentActionsByUpdatedBlockId` exist. */ + tickerExternalAgentActionsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `tickerExternalAgentHistoriesByCreatedBlockId` relation. */ + tickerExternalAgentHistoriesByCreatedBlockId?: InputMaybe; + /** Some related `tickerExternalAgentHistoriesByCreatedBlockId` exist. */ + tickerExternalAgentHistoriesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `tickerExternalAgentHistoriesByUpdatedBlockId` relation. */ + tickerExternalAgentHistoriesByUpdatedBlockId?: InputMaybe; + /** Some related `tickerExternalAgentHistoriesByUpdatedBlockId` exist. */ + tickerExternalAgentHistoriesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `tickerExternalAgentsByCreatedBlockId` relation. */ + tickerExternalAgentsByCreatedBlockId?: InputMaybe; + /** Some related `tickerExternalAgentsByCreatedBlockId` exist. */ + tickerExternalAgentsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `tickerExternalAgentsByUpdatedBlockId` relation. */ + tickerExternalAgentsByUpdatedBlockId?: InputMaybe; + /** Some related `tickerExternalAgentsByUpdatedBlockId` exist. */ + tickerExternalAgentsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `transferComplianceExemptionsByCreatedBlockId` relation. */ + transferComplianceExemptionsByCreatedBlockId?: InputMaybe; + /** Some related `transferComplianceExemptionsByCreatedBlockId` exist. */ + transferComplianceExemptionsByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `transferComplianceExemptionsByUpdatedBlockId` relation. */ + transferComplianceExemptionsByUpdatedBlockId?: InputMaybe; + /** Some related `transferComplianceExemptionsByUpdatedBlockId` exist. */ + transferComplianceExemptionsByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `transferCompliancesByCreatedBlockId` relation. */ + transferCompliancesByCreatedBlockId?: InputMaybe; + /** Some related `transferCompliancesByCreatedBlockId` exist. */ + transferCompliancesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `transferCompliancesByUpdatedBlockId` relation. */ + transferCompliancesByUpdatedBlockId?: InputMaybe; + /** Some related `transferCompliancesByUpdatedBlockId` exist. */ + transferCompliancesByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `transferManagersByCreatedBlockId` relation. */ + transferManagersByCreatedBlockId?: InputMaybe; + /** Some related `transferManagersByCreatedBlockId` exist. */ + transferManagersByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `transferManagersByUpdatedBlockId` relation. */ + transferManagersByUpdatedBlockId?: InputMaybe; + /** Some related `transferManagersByUpdatedBlockId` exist. */ + transferManagersByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `trustedClaimIssuersByCreatedBlockId` relation. */ + trustedClaimIssuersByCreatedBlockId?: InputMaybe; + /** Some related `trustedClaimIssuersByCreatedBlockId` exist. */ + trustedClaimIssuersByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `trustedClaimIssuersByUpdatedBlockId` relation. */ + trustedClaimIssuersByUpdatedBlockId?: InputMaybe; + /** Some related `trustedClaimIssuersByUpdatedBlockId` exist. */ + trustedClaimIssuersByUpdatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `venuesByCreatedBlockId` relation. */ + venuesByCreatedBlockId?: InputMaybe; + /** Some related `venuesByCreatedBlockId` exist. */ + venuesByCreatedBlockIdExist?: InputMaybe; + /** Filter by the object’s `venuesByUpdatedBlockId` relation. */ + venuesByUpdatedBlockId?: InputMaybe; + /** Some related `venuesByUpdatedBlockId` exist. */ + venuesByUpdatedBlockIdExist?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `Account`. */ +export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Account`. */ +export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Account`. */ +export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Account`. */ + secondaryAccounts: AccountsConnection; +}; + +/** A `Identity` edge in the connection, with data from `Account`. */ +export type BlockIdentitiesByAccountCreatedBlockIdAndIdentityIdManyToManyEdgeSecondaryAccountsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Account`. */ +export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Account`. */ +export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Account`. */ +export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Account`. */ + secondaryAccounts: AccountsConnection; +}; + +/** A `Identity` edge in the connection, with data from `Account`. */ +export type BlockIdentitiesByAccountUpdatedBlockIdAndIdentityIdManyToManyEdgeSecondaryAccountsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Asset`. */ +export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Asset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Asset`. */ +export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Asset`. */ +export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByOwnerId: AssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Asset`. */ +export type BlockIdentitiesByAssetCreatedBlockIdAndOwnerIdManyToManyEdgeAssetsByOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `AssetHolder`. */ +export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `AssetHolder`. */ +export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `AssetHolder`. */ +export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AssetHolder`. */ + heldAssets: AssetHoldersConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `AssetHolder`. */ +export type BlockIdentitiesByAssetHolderCreatedBlockIdAndIdentityIdManyToManyEdgeHeldAssetsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `AssetHolder`. */ +export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `AssetHolder`. */ +export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `AssetHolder`. */ +export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AssetHolder`. */ + heldAssets: AssetHoldersConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `AssetHolder`. */ +export type BlockIdentitiesByAssetHolderUpdatedBlockIdAndIdentityIdManyToManyEdgeHeldAssetsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `AssetMandatoryMediator`. */ +export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `AssetMandatoryMediator`. */ +export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByAddedById: AssetMandatoryMediatorsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockIdentitiesByAssetMandatoryMediatorCreatedBlockIdAndAddedByIdManyToManyEdgeAssetMandatoryMediatorsByAddedByIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `AssetMandatoryMediator`. */ +export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `AssetMandatoryMediator`. */ +export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByAddedById: AssetMandatoryMediatorsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type BlockIdentitiesByAssetMandatoryMediatorUpdatedBlockIdAndAddedByIdManyToManyEdgeAssetMandatoryMediatorsByAddedByIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ +export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ +export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovals: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockIdentitiesByAssetPreApprovalCreatedBlockIdAndIdentityIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ +export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `AssetPreApproval`. */ +export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovals: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `AssetPreApproval`. */ +export type BlockIdentitiesByAssetPreApprovalUpdatedBlockIdAndIdentityIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Asset`. */ +export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Asset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Asset`. */ +export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Asset`. */ +export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByOwnerId: AssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Asset`. */ +export type BlockIdentitiesByAssetUpdatedBlockIdAndOwnerIdManyToManyEdgeAssetsByOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Authorization`. */ +export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Authorization`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Authorization`. */ +export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Authorization`. */ +export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Authorization`. */ + authorizationsByFromId: AuthorizationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Authorization`. */ +export type BlockIdentitiesByAuthorizationCreatedBlockIdAndFromIdManyToManyEdgeAuthorizationsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Authorization`. */ +export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Authorization`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Authorization`. */ +export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Authorization`. */ +export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Authorization`. */ + authorizationsByFromId: AuthorizationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Authorization`. */ +export type BlockIdentitiesByAuthorizationUpdatedBlockIdAndFromIdManyToManyEdgeAuthorizationsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `BridgeEvent`. */ +export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `BridgeEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `BridgeEvent`. */ +export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `BridgeEvent`. */ +export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `BridgeEvent`. */ + bridgeEvents: BridgeEventsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `BridgeEvent`. */ +export type BlockIdentitiesByBridgeEventCreatedBlockIdAndIdentityIdManyToManyEdgeBridgeEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `BridgeEvent`. */ +export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `BridgeEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `BridgeEvent`. */ +export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `BridgeEvent`. */ +export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `BridgeEvent`. */ + bridgeEvents: BridgeEventsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `BridgeEvent`. */ +export type BlockIdentitiesByBridgeEventUpdatedBlockIdAndIdentityIdManyToManyEdgeBridgeEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + parentChildIdentities: ChildIdentitiesConnection; +}; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndChildIdManyToManyEdgeParentChildIdentitiesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + children: ChildIdentitiesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityCreatedBlockIdAndParentIdManyToManyEdgeChildrenArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + parentChildIdentities: ChildIdentitiesConnection; +}; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndChildIdManyToManyEdgeParentChildIdentitiesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + children: ChildIdentitiesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type BlockIdentitiesByChildIdentityUpdatedBlockIdAndParentIdManyToManyEdgeChildrenArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByIssuerId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type BlockIdentitiesByClaimCreatedBlockIdAndIssuerIdManyToManyEdgeClaimsByIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByTargetId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type BlockIdentitiesByClaimCreatedBlockIdAndTargetIdManyToManyEdgeClaimsByTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByIssuerId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type BlockIdentitiesByClaimUpdatedBlockIdAndIssuerIdManyToManyEdgeClaimsByIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByTargetId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type BlockIdentitiesByClaimUpdatedBlockIdAndTargetIdManyToManyEdgeClaimsByTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `ConfidentialAccount`. */ +export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialAccount`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ConfidentialAccount`. */ +export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialAccount`. */ +export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByCreatorId: ConfidentialAccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `ConfidentialAccount`. */ +export type BlockIdentitiesByConfidentialAccountCreatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAccountsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `ConfidentialAccount`. */ +export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialAccount`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ConfidentialAccount`. */ +export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialAccount`. */ +export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByCreatorId: ConfidentialAccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `ConfidentialAccount`. */ +export type BlockIdentitiesByConfidentialAccountUpdatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAccountsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `ConfidentialAsset`. */ +export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialAsset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ConfidentialAsset`. */ +export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialAsset`. */ +export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByCreatorId: ConfidentialAssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `ConfidentialAsset`. */ +export type BlockIdentitiesByConfidentialAssetCreatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAssetsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `ConfidentialAsset`. */ +export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialAsset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ConfidentialAsset`. */ +export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialAsset`. */ +export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByCreatorId: ConfidentialAssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `ConfidentialAsset`. */ +export type BlockIdentitiesByConfidentialAssetUpdatedBlockIdAndCreatorIdManyToManyEdgeConfidentialAssetsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyEdge = + { + __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockIdentitiesByConfidentialTransactionAffirmationCreatedBlockIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyEdge = + { + __typename?: 'BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type BlockIdentitiesByConfidentialTransactionAffirmationUpdatedBlockIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `ConfidentialVenue`. */ +export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialVenue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ConfidentialVenue`. */ +export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialVenue`. */ +export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenuesByCreatorId: ConfidentialVenuesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `ConfidentialVenue`. */ +export type BlockIdentitiesByConfidentialVenueCreatedBlockIdAndCreatorIdManyToManyEdgeConfidentialVenuesByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `ConfidentialVenue`. */ +export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialVenue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ConfidentialVenue`. */ +export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialVenue`. */ +export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenuesByCreatorId: ConfidentialVenuesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `ConfidentialVenue`. */ +export type BlockIdentitiesByConfidentialVenueUpdatedBlockIdAndCreatorIdManyToManyEdgeConfidentialVenuesByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `CustomClaimType`. */ +export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `CustomClaimType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `CustomClaimType`. */ +export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `CustomClaimType`. */ +export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypes: CustomClaimTypesConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `CustomClaimType`. */ +export type BlockIdentitiesByCustomClaimTypeCreatedBlockIdAndIdentityIdManyToManyEdgeCustomClaimTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `CustomClaimType`. */ +export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `CustomClaimType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `CustomClaimType`. */ +export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `CustomClaimType`. */ +export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypes: CustomClaimTypesConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `CustomClaimType`. */ +export type BlockIdentitiesByCustomClaimTypeUpdatedBlockIdAndIdentityIdManyToManyEdgeCustomClaimTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Distribution`. */ +export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Distribution`. */ +export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Distribution`. */ +export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Distribution`. */ +export type BlockIdentitiesByDistributionCreatedBlockIdAndIdentityIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ +export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ +export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `DistributionPayment`. */ +export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByTargetId: DistributionPaymentsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `DistributionPayment`. */ +export type BlockIdentitiesByDistributionPaymentCreatedBlockIdAndTargetIdManyToManyEdgeDistributionPaymentsByTargetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ +export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ +export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `DistributionPayment`. */ +export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByTargetId: DistributionPaymentsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `DistributionPayment`. */ +export type BlockIdentitiesByDistributionPaymentUpdatedBlockIdAndTargetIdManyToManyEdgeDistributionPaymentsByTargetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Distribution`. */ +export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Distribution`. */ +export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Distribution`. */ +export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Distribution`. */ +export type BlockIdentitiesByDistributionUpdatedBlockIdAndIdentityIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Investment`. */ +export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Investment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Investment`. */ +export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Investment`. */ +export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Investment`. */ + investmentsByInvestorId: InvestmentsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Investment`. */ +export type BlockIdentitiesByInvestmentCreatedBlockIdAndInvestorIdManyToManyEdgeInvestmentsByInvestorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Investment`. */ +export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Investment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Investment`. */ +export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Investment`. */ +export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Investment`. */ + investmentsByInvestorId: InvestmentsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Investment`. */ +export type BlockIdentitiesByInvestmentUpdatedBlockIdAndInvestorIdManyToManyEdgeInvestmentsByInvestorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `MultiSig`. */ +export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `MultiSig`. */ +export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `MultiSig`. */ +export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatorId: MultiSigsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `MultiSig`. */ +export type BlockIdentitiesByMultiSigCreatedBlockIdAndCreatorIdManyToManyEdgeMultiSigsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `MultiSigProposal`. */ +export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `MultiSigProposal`. */ +export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByCreatorId: MultiSigProposalsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockIdentitiesByMultiSigProposalCreatedBlockIdAndCreatorIdManyToManyEdgeMultiSigProposalsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `MultiSigProposal`. */ +export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `MultiSigProposal`. */ +export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByCreatorId: MultiSigProposalsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockIdentitiesByMultiSigProposalUpdatedBlockIdAndCreatorIdManyToManyEdgeMultiSigProposalsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `MultiSig`. */ +export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `MultiSig`. */ +export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `MultiSig`. */ +export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatorId: MultiSigsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `MultiSig`. */ +export type BlockIdentitiesByMultiSigUpdatedBlockIdAndCreatorIdManyToManyEdgeMultiSigsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `NftHolder`. */ +export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `NftHolder`. */ +export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `NftHolder`. */ +export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + heldNfts: NftHoldersConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `NftHolder`. */ +export type BlockIdentitiesByNftHolderCreatedBlockIdAndIdentityIdManyToManyEdgeHeldNftsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `NftHolder`. */ +export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `NftHolder`. */ +export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `NftHolder`. */ +export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + heldNfts: NftHoldersConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `NftHolder`. */ +export type BlockIdentitiesByNftHolderUpdatedBlockIdAndIdentityIdManyToManyEdgeHeldNftsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByCustodianId: PortfoliosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioCreatedBlockIdAndCustodianIdManyToManyEdgePortfoliosByCustodianIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfolios: PortfoliosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioCreatedBlockIdAndIdentityIdManyToManyEdgePortfoliosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByCustodianId: PortfoliosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndCustodianIdManyToManyEdgePortfoliosByCustodianIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfolios: PortfoliosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type BlockIdentitiesByPortfolioUpdatedBlockIdAndIdentityIdManyToManyEdgePortfoliosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Proposal`. */ +export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Proposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Proposal`. */ +export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Proposal`. */ +export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Proposal`. */ + proposalsByOwnerId: ProposalsConnection; +}; + +/** A `Identity` edge in the connection, with data from `Proposal`. */ +export type BlockIdentitiesByProposalCreatedBlockIdAndOwnerIdManyToManyEdgeProposalsByOwnerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Proposal`. */ +export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Proposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Proposal`. */ +export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Proposal`. */ +export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Proposal`. */ + proposalsByOwnerId: ProposalsConnection; +}; + +/** A `Identity` edge in the connection, with data from `Proposal`. */ +export type BlockIdentitiesByProposalUpdatedBlockIdAndOwnerIdManyToManyEdgeProposalsByOwnerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `StakingEvent`. */ +export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `StakingEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `StakingEvent`. */ +export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `StakingEvent`. */ +export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StakingEvent`. */ + stakingEvents: StakingEventsConnection; +}; + +/** A `Identity` edge in the connection, with data from `StakingEvent`. */ +export type BlockIdentitiesByStakingEventCreatedBlockIdAndIdentityIdManyToManyEdgeStakingEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `StakingEvent`. */ +export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `StakingEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `StakingEvent`. */ +export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `StakingEvent`. */ +export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StakingEvent`. */ + stakingEvents: StakingEventsConnection; +}; + +/** A `Identity` edge in the connection, with data from `StakingEvent`. */ +export type BlockIdentitiesByStakingEventUpdatedBlockIdAndIdentityIdManyToManyEdgeStakingEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `StatType`. */ +export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `StatType`. */ +export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `StatType`. */ +export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByClaimIssuerId: StatTypesConnection; +}; + +/** A `Identity` edge in the connection, with data from `StatType`. */ +export type BlockIdentitiesByStatTypeCreatedBlockIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `StatType`. */ +export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `StatType`. */ +export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `StatType`. */ +export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByClaimIssuerId: StatTypesConnection; +}; + +/** A `Identity` edge in the connection, with data from `StatType`. */ +export type BlockIdentitiesByStatTypeUpdatedBlockIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatorId: StosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type BlockIdentitiesByStoCreatedBlockIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatorId: StosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type BlockIdentitiesByStoUpdatedBlockIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentAction`. */ +export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentAction`. */ +export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByCallerId: TickerExternalAgentActionsConnection; +}; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockIdentitiesByTickerExternalAgentActionCreatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentActionsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentAction`. */ +export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentAction`. */ +export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByCallerId: TickerExternalAgentActionsConnection; +}; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type BlockIdentitiesByTickerExternalAgentActionUpdatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentActionsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ +export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ +export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByCallerId: TickerExternalAgentsConnection; +}; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockIdentitiesByTickerExternalAgentCreatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ +export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ +export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; +}; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockIdentitiesByTickerExternalAgentHistoryCreatedBlockIdAndIdentityIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ +export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgentHistory`. */ +export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; +}; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type BlockIdentitiesByTickerExternalAgentHistoryUpdatedBlockIdAndIdentityIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ +export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `TickerExternalAgent`. */ +export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByCallerId: TickerExternalAgentsConnection; +}; + +/** A `Identity` edge in the connection, with data from `TickerExternalAgent`. */ +export type BlockIdentitiesByTickerExternalAgentUpdatedBlockIdAndCallerIdManyToManyEdgeTickerExternalAgentsByCallerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ +export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ +export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TransferCompliance`. */ +export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByClaimIssuerId: TransferCompliancesConnection; +}; + +/** A `Identity` edge in the connection, with data from `TransferCompliance`. */ +export type BlockIdentitiesByTransferComplianceCreatedBlockIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ +export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyConnection = + { + __typename?: 'BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ +export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TransferCompliance`. */ +export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByClaimIssuerId: TransferCompliancesConnection; +}; + +/** A `Identity` edge in the connection, with data from `TransferCompliance`. */ +export type BlockIdentitiesByTransferComplianceUpdatedBlockIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Venue`. */ +export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Venue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Venue`. */ +export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Venue`. */ +export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByOwnerId: VenuesConnection; +}; + +/** A `Identity` edge in the connection, with data from `Venue`. */ +export type BlockIdentitiesByVenueCreatedBlockIdAndOwnerIdManyToManyEdgeVenuesByOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Venue`. */ +export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyConnection = { + __typename?: 'BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Venue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Venue`. */ +export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Venue`. */ +export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyEdge = { + __typename?: 'BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByOwnerId: VenuesConnection; +}; + +/** A `Identity` edge in the connection, with data from `Venue`. */ +export type BlockIdentitiesByVenueUpdatedBlockIdAndOwnerIdManyToManyEdgeVenuesByOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ +export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyConnection = + { + __typename?: 'BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `InstructionParty` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `InstructionParty` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ +export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyEdge = + { + __typename?: 'BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `InstructionParty` at the end of the edge. */ + node?: Maybe; + }; + +/** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockInstructionPartiesByInstructionAffirmationCreatedBlockIdAndPartyIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ +export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyConnection = + { + __typename?: 'BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `InstructionParty` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `InstructionParty` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ +export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyEdge = + { + __typename?: 'BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `InstructionParty` at the end of the edge. */ + node?: Maybe; + }; + +/** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockInstructionPartiesByInstructionAffirmationUpdatedBlockIdAndPartyIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ +export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ +export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ +export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyEdge = { + __typename?: 'BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ +export type BlockInstructionsByAssetTransactionCreatedBlockIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ +export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ +export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ +export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyEdge = { + __typename?: 'BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ +export type BlockInstructionsByAssetTransactionUpdatedBlockIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyEdge = + { + __typename?: 'BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationCreatedBlockIdAndInstructionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyEdge = + { + __typename?: 'BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockInstructionsByInstructionAffirmationUpdatedBlockIdAndInstructionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyEdge = { + __typename?: 'BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + events: InstructionEventsConnection; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventCreatedBlockIdAndInstructionIdManyToManyEdgeEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyEdge = { + __typename?: 'BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + events: InstructionEventsConnection; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ +export type BlockInstructionsByInstructionEventUpdatedBlockIdAndInstructionIdManyToManyEdgeEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionParty`. */ +export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionParty`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionParty`. */ +export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionParty`. */ +export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyEdge = { + __typename?: 'BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `InstructionParty`. */ + parties: InstructionPartiesConnection; +}; + +/** A `Instruction` edge in the connection, with data from `InstructionParty`. */ +export type BlockInstructionsByInstructionPartyCreatedBlockIdAndInstructionIdManyToManyEdgePartiesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionParty`. */ +export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyConnection = + { + __typename?: 'BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionParty`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionParty`. */ +export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionParty`. */ +export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyEdge = { + __typename?: 'BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `InstructionParty`. */ + parties: InstructionPartiesConnection; +}; + +/** A `Instruction` edge in the connection, with data from `InstructionParty`. */ +export type BlockInstructionsByInstructionPartyUpdatedBlockIdAndInstructionIdManyToManyEdgePartiesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `Leg`. */ +export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyConnection = { + __typename?: 'BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `Leg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Instruction` values, with data from `Leg`. */ +export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `Leg`. */ +export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyEdge = { + __typename?: 'BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Leg`. */ + legs: LegsConnection; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Instruction` edge in the connection, with data from `Leg`. */ +export type BlockInstructionsByLegCreatedBlockIdAndInstructionIdManyToManyEdgeLegsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Instruction` values, with data from `Leg`. */ +export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyConnection = { + __typename?: 'BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `Leg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Instruction` values, with data from `Leg`. */ +export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `Leg`. */ +export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyEdge = { + __typename?: 'BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Leg`. */ + legs: LegsConnection; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Instruction` edge in the connection, with data from `Leg`. */ +export type BlockInstructionsByLegUpdatedBlockIdAndInstructionIdManyToManyEdgeLegsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Leg` values, with data from `OffChainReceipt`. */ +export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyConnection = { + __typename?: 'BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Leg`, info from the `OffChainReceipt`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Leg` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Leg` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Leg` values, with data from `OffChainReceipt`. */ +export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Leg` edge in the connection, with data from `OffChainReceipt`. */ +export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyEdge = { + __typename?: 'BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Leg` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceipts: OffChainReceiptsConnection; +}; + +/** A `Leg` edge in the connection, with data from `OffChainReceipt`. */ +export type BlockLegsByOffChainReceiptCreatedBlockIdAndLegIdManyToManyEdgeOffChainReceiptsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Leg` values, with data from `OffChainReceipt`. */ +export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyConnection = { + __typename?: 'BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Leg`, info from the `OffChainReceipt`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Leg` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Leg` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Leg` values, with data from `OffChainReceipt`. */ +export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Leg` edge in the connection, with data from `OffChainReceipt`. */ +export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyEdge = { + __typename?: 'BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Leg` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceipts: OffChainReceiptsConnection; +}; + +/** A `Leg` edge in the connection, with data from `OffChainReceipt`. */ +export type BlockLegsByOffChainReceiptUpdatedBlockIdAndLegIdManyToManyEdgeOffChainReceiptsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type BlockMaxAggregates = { + __typename?: 'BlockMaxAggregates'; + /** Maximum of blockId across the matching connection */ + blockId?: Maybe; + /** Maximum of countEvents across the matching connection */ + countEvents?: Maybe; + /** Maximum of countExtrinsics across the matching connection */ + countExtrinsics?: Maybe; + /** Maximum of countExtrinsicsError across the matching connection */ + countExtrinsicsError?: Maybe; + /** Maximum of countExtrinsicsSigned across the matching connection */ + countExtrinsicsSigned?: Maybe; + /** Maximum of countExtrinsicsSuccess across the matching connection */ + countExtrinsicsSuccess?: Maybe; + /** Maximum of countExtrinsicsUnsigned across the matching connection */ + countExtrinsicsUnsigned?: Maybe; + /** Maximum of parentId across the matching connection */ + parentId?: Maybe; + /** Maximum of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +export type BlockMinAggregates = { + __typename?: 'BlockMinAggregates'; + /** Minimum of blockId across the matching connection */ + blockId?: Maybe; + /** Minimum of countEvents across the matching connection */ + countEvents?: Maybe; + /** Minimum of countExtrinsics across the matching connection */ + countExtrinsics?: Maybe; + /** Minimum of countExtrinsicsError across the matching connection */ + countExtrinsicsError?: Maybe; + /** Minimum of countExtrinsicsSigned across the matching connection */ + countExtrinsicsSigned?: Maybe; + /** Minimum of countExtrinsicsSuccess across the matching connection */ + countExtrinsicsSuccess?: Maybe; + /** Minimum of countExtrinsicsUnsigned across the matching connection */ + countExtrinsicsUnsigned?: Maybe; + /** Minimum of parentId across the matching connection */ + parentId?: Maybe; + /** Minimum of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +/** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyConnection = + { + __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigProposal`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigProposal` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigProposal` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyEdge = + { + __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigProposal` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; + }; + +/** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigProposalsByMultiSigProposalVoteCreatedBlockIdAndProposalIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnection = + { + __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigProposal`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigProposal` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigProposal` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdge = + { + __typename?: 'BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigProposal` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; + }; + +/** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigProposalsByMultiSigProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyConnection = + { + __typename?: 'BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigSigner`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigSigner` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigSigner` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyEdge = { + __typename?: 'BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigSigner` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; +}; + +/** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigSignersByMultiSigProposalVoteCreatedBlockIdAndSignerIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyConnection = + { + __typename?: 'BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigSigner`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigSigner` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigSigner` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyEdge = { + __typename?: 'BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigSigner` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; +}; + +/** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ +export type BlockMultiSigSignersByMultiSigProposalVoteUpdatedBlockIdAndSignerIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `MultiSig` values, with data from `MultiSigProposal`. */ +export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyConnection = { + __typename?: 'BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSig`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSig` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSig` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `MultiSig` values, with data from `MultiSigProposal`. */ +export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyEdge = { + __typename?: 'BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSig` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + proposals: MultiSigProposalsConnection; +}; + +/** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockMultiSigsByMultiSigProposalCreatedBlockIdAndMultisigIdManyToManyEdgeProposalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `MultiSig` values, with data from `MultiSigProposal`. */ +export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyConnection = { + __typename?: 'BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSig`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSig` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSig` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `MultiSig` values, with data from `MultiSigProposal`. */ +export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyEdge = { + __typename?: 'BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSig` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + proposals: MultiSigProposalsConnection; +}; + +/** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ +export type BlockMultiSigsByMultiSigProposalUpdatedBlockIdAndMultisigIdManyToManyEdgeProposalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `MultiSig` values, with data from `MultiSigSigner`. */ +export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyConnection = { + __typename?: 'BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSig`, info from the `MultiSigSigner`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSig` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSig` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `MultiSig` values, with data from `MultiSigSigner`. */ +export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `MultiSig` edge in the connection, with data from `MultiSigSigner`. */ +export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyEdge = { + __typename?: 'BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSig` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + signers: MultiSigSignersConnection; +}; + +/** A `MultiSig` edge in the connection, with data from `MultiSigSigner`. */ +export type BlockMultiSigsByMultiSigSignerCreatedBlockIdAndMultisigIdManyToManyEdgeSignersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `MultiSig` values, with data from `MultiSigSigner`. */ +export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyConnection = { + __typename?: 'BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSig`, info from the `MultiSigSigner`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSig` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSig` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `MultiSig` values, with data from `MultiSigSigner`. */ +export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `MultiSig` edge in the connection, with data from `MultiSigSigner`. */ +export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyEdge = { + __typename?: 'BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSig` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + signers: MultiSigSignersConnection; +}; + +/** A `MultiSig` edge in the connection, with data from `MultiSigSigner`. */ +export type BlockMultiSigsByMultiSigSignerUpdatedBlockIdAndMultisigIdManyToManyEdgeSignersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ +export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ +export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmations: InstructionAffirmationsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockOffChainReceiptsByInstructionAffirmationCreatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ +export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ +export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmations: InstructionAffirmationsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ +export type BlockOffChainReceiptsByInstructionAffirmationUpdatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ +export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ +export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ +export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEvents: InstructionEventsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ +export type BlockOffChainReceiptsByInstructionEventCreatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ +export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ +export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ +export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEvents: InstructionEventsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ +export type BlockOffChainReceiptsByInstructionEventUpdatedBlockIdAndOffChainReceiptIdManyToManyEdgeInstructionEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Permission` values, with data from `Account`. */ +export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyConnection = { + __typename?: 'BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Permission`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Permission` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Permission` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Permission` values, with data from `Account`. */ +export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Permission` edge in the connection, with data from `Account`. */ +export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyEdge = { + __typename?: 'BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Account`. */ + accountsByPermissionsId: AccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Permission` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Permission` edge in the connection, with data from `Account`. */ +export type BlockPermissionsByAccountCreatedBlockIdAndPermissionsIdManyToManyEdgeAccountsByPermissionsIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Permission` values, with data from `Account`. */ +export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyConnection = { + __typename?: 'BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Permission`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Permission` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Permission` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Permission` values, with data from `Account`. */ +export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Permission` edge in the connection, with data from `Account`. */ +export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyEdge = { + __typename?: 'BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Account`. */ + accountsByPermissionsId: AccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Permission` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Permission` edge in the connection, with data from `Account`. */ +export type BlockPermissionsByAccountUpdatedBlockIdAndPermissionsIdManyToManyEdgeAccountsByPermissionsIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyConnection = + { + __typename?: 'BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByFromPortfolioId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByToPortfolioId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionCreatedBlockIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyConnection = + { + __typename?: 'BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByFromPortfolioId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByToPortfolioId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type BlockPortfoliosByAssetTransactionUpdatedBlockIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Distribution`. */ +export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Distribution`. */ +export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Distribution`. */ +export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `Distribution`. */ +export type BlockPortfoliosByDistributionCreatedBlockIdAndPortfolioIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Distribution`. */ +export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Distribution`. */ +export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Distribution`. */ +export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `Distribution`. */ +export type BlockPortfoliosByDistributionUpdatedBlockIdAndPortfolioIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByFromId: PortfolioMovementsConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByToId: PortfolioMovementsConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementCreatedBlockIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByFromId: PortfolioMovementsConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByToId: PortfolioMovementsConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type BlockPortfoliosByPortfolioMovementUpdatedBlockIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type BlockPortfoliosByStoCreatedBlockIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByRaisingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type BlockPortfoliosByStoCreatedBlockIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type BlockPortfoliosByStoUpdatedBlockIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyConnection = { + __typename?: 'BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyEdge = { + __typename?: 'BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByRaisingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type BlockPortfoliosByStoUpdatedBlockIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Proposal` values, with data from `ProposalVote`. */ +export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyConnection = { + __typename?: 'BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Proposal`, info from the `ProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Proposal` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Proposal` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Proposal` values, with data from `ProposalVote`. */ +export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Proposal` edge in the connection, with data from `ProposalVote`. */ +export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyEdge = { + __typename?: 'BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Proposal` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `ProposalVote`. */ + votes: ProposalVotesConnection; +}; + +/** A `Proposal` edge in the connection, with data from `ProposalVote`. */ +export type BlockProposalsByProposalVoteCreatedBlockIdAndProposalIdManyToManyEdgeVotesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Proposal` values, with data from `ProposalVote`. */ +export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnection = { + __typename?: 'BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Proposal`, info from the `ProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Proposal` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Proposal` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Proposal` values, with data from `ProposalVote`. */ +export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Proposal` edge in the connection, with data from `ProposalVote`. */ +export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdge = { + __typename?: 'BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Proposal` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `ProposalVote`. */ + votes: ProposalVotesConnection; +}; + +/** A `Proposal` edge in the connection, with data from `ProposalVote`. */ +export type BlockProposalsByProposalVoteUpdatedBlockIdAndProposalIdManyToManyEdgeVotesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ +export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyConnection = { + __typename?: 'BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `StatType`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `StatType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `StatType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ +export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `StatType` edge in the connection, with data from `TransferCompliance`. */ +export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyEdge = { + __typename?: 'BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `StatType` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliances: TransferCompliancesConnection; +}; + +/** A `StatType` edge in the connection, with data from `TransferCompliance`. */ +export type BlockStatTypesByTransferComplianceCreatedBlockIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ +export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyConnection = { + __typename?: 'BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `StatType`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `StatType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `StatType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ +export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `StatType` edge in the connection, with data from `TransferCompliance`. */ +export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyEdge = { + __typename?: 'BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `StatType` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliances: TransferCompliancesConnection; +}; + +/** A `StatType` edge in the connection, with data from `TransferCompliance`. */ +export type BlockStatTypesByTransferComplianceUpdatedBlockIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type BlockStddevPopulationAggregates = { + __typename?: 'BlockStddevPopulationAggregates'; + /** Population standard deviation of blockId across the matching connection */ + blockId?: Maybe; + /** Population standard deviation of countEvents across the matching connection */ + countEvents?: Maybe; + /** Population standard deviation of countExtrinsics across the matching connection */ + countExtrinsics?: Maybe; + /** Population standard deviation of countExtrinsicsError across the matching connection */ + countExtrinsicsError?: Maybe; + /** Population standard deviation of countExtrinsicsSigned across the matching connection */ + countExtrinsicsSigned?: Maybe; + /** Population standard deviation of countExtrinsicsSuccess across the matching connection */ + countExtrinsicsSuccess?: Maybe; + /** Population standard deviation of countExtrinsicsUnsigned across the matching connection */ + countExtrinsicsUnsigned?: Maybe; + /** Population standard deviation of parentId across the matching connection */ + parentId?: Maybe; + /** Population standard deviation of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +export type BlockStddevSampleAggregates = { + __typename?: 'BlockStddevSampleAggregates'; + /** Sample standard deviation of blockId across the matching connection */ + blockId?: Maybe; + /** Sample standard deviation of countEvents across the matching connection */ + countEvents?: Maybe; + /** Sample standard deviation of countExtrinsics across the matching connection */ + countExtrinsics?: Maybe; + /** Sample standard deviation of countExtrinsicsError across the matching connection */ + countExtrinsicsError?: Maybe; + /** Sample standard deviation of countExtrinsicsSigned across the matching connection */ + countExtrinsicsSigned?: Maybe; + /** Sample standard deviation of countExtrinsicsSuccess across the matching connection */ + countExtrinsicsSuccess?: Maybe; + /** Sample standard deviation of countExtrinsicsUnsigned across the matching connection */ + countExtrinsicsUnsigned?: Maybe; + /** Sample standard deviation of parentId across the matching connection */ + parentId?: Maybe; + /** Sample standard deviation of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +export type BlockSumAggregates = { + __typename?: 'BlockSumAggregates'; + /** Sum of blockId across the matching connection */ + blockId: Scalars['BigInt']['output']; + /** Sum of countEvents across the matching connection */ + countEvents: Scalars['BigInt']['output']; + /** Sum of countExtrinsics across the matching connection */ + countExtrinsics: Scalars['BigInt']['output']; + /** Sum of countExtrinsicsError across the matching connection */ + countExtrinsicsError: Scalars['BigInt']['output']; + /** Sum of countExtrinsicsSigned across the matching connection */ + countExtrinsicsSigned: Scalars['BigInt']['output']; + /** Sum of countExtrinsicsSuccess across the matching connection */ + countExtrinsicsSuccess: Scalars['BigInt']['output']; + /** Sum of countExtrinsicsUnsigned across the matching connection */ + countExtrinsicsUnsigned: Scalars['BigInt']['output']; + /** Sum of parentId across the matching connection */ + parentId: Scalars['BigInt']['output']; + /** Sum of specVersionId across the matching connection */ + specVersionId: Scalars['BigInt']['output']; +}; + +/** A filter to be used against many `Account` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyAccountFilter = { + /** Aggregates across related `Account` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Account` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Account` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Account` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AccountHistory` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyAccountHistoryFilter = { + /** Aggregates across related `AccountHistory` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AccountHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AccountHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AccountHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AgentGroup` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyAgentGroupFilter = { + /** Aggregates across related `AgentGroup` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AgentGroup` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AgentGroup` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AgentGroup` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AgentGroupMembership` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyAgentGroupMembershipFilter = { + /** Aggregates across related `AgentGroupMembership` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AgentGroupMembership` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AgentGroupMembership` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AgentGroupMembership` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetDocument` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyAssetDocumentFilter = { + /** Aggregates across related `AssetDocument` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetDocument` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetDocument` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetDocument` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Asset` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyAssetFilter = { + /** Aggregates across related `Asset` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Asset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Asset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Asset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetHolder` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyAssetHolderFilter = { + /** Aggregates across related `AssetHolder` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetMandatoryMediator` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyAssetMandatoryMediatorFilter = { + /** Aggregates across related `AssetMandatoryMediator` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetMandatoryMediator` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetMandatoryMediator` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetMandatoryMediator` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetPreApproval` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyAssetPreApprovalFilter = { + /** Aggregates across related `AssetPreApproval` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetPreApproval` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetPreApproval` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetPreApproval` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetTransaction` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyAssetTransactionFilter = { + /** Aggregates across related `AssetTransaction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Authorization` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyAuthorizationFilter = { + /** Aggregates across related `Authorization` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Authorization` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Authorization` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Authorization` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `BridgeEvent` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyBridgeEventFilter = { + /** Aggregates across related `BridgeEvent` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `BridgeEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `BridgeEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `BridgeEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ChildIdentity` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyChildIdentityFilter = { + /** Aggregates across related `ChildIdentity` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ChildIdentity` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ChildIdentity` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ChildIdentity` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Claim` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyClaimFilter = { + /** Aggregates across related `Claim` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ClaimScope` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyClaimScopeFilter = { + /** Aggregates across related `ClaimScope` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ClaimScope` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ClaimScope` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ClaimScope` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Compliance` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyComplianceFilter = { + /** Aggregates across related `Compliance` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Compliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Compliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Compliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialAccount` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyConfidentialAccountFilter = { + /** Aggregates across related `ConfidentialAccount` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAccount` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAccount` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAccount` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialAsset` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyConfidentialAssetFilter = { + /** Aggregates across related `ConfidentialAsset` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAsset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAsset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAsset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialAssetHistory` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyConfidentialAssetHistoryFilter = { + /** Aggregates across related `ConfidentialAssetHistory` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialAssetHolder` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyConfidentialAssetHolderFilter = { + /** Aggregates across related `ConfidentialAssetHolder` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialAssetMovement` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyConfidentialAssetMovementFilter = { + /** Aggregates across related `ConfidentialAssetMovement` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAssetMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAssetMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAssetMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialLeg` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyConfidentialLegFilter = { + /** Aggregates across related `ConfidentialLeg` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialLeg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialLeg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialLeg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialTransactionAffirmation` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyConfidentialTransactionAffirmationFilter = { + /** Aggregates across related `ConfidentialTransactionAffirmation` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialTransaction` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyConfidentialTransactionFilter = { + /** Aggregates across related `ConfidentialTransaction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialVenue` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyConfidentialVenueFilter = { + /** Aggregates across related `ConfidentialVenue` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialVenue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialVenue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialVenue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `CustomClaimType` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyCustomClaimTypeFilter = { + /** Aggregates across related `CustomClaimType` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Distribution` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyDistributionFilter = { + /** Aggregates across related `Distribution` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `DistributionPayment` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyDistributionPaymentFilter = { + /** Aggregates across related `DistributionPayment` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `DistributionPayment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `DistributionPayment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `DistributionPayment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Event` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyEventFilter = { + /** Aggregates across related `Event` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Event` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Event` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Event` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Extrinsic` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyExtrinsicFilter = { + /** Aggregates across related `Extrinsic` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Extrinsic` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Extrinsic` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Extrinsic` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Funding` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyFundingFilter = { + /** Aggregates across related `Funding` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Funding` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Funding` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Funding` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Identity` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyIdentityFilter = { + /** Aggregates across related `Identity` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Identity` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Identity` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Identity` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `InstructionAffirmation` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyInstructionAffirmationFilter = { + /** Aggregates across related `InstructionAffirmation` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `InstructionEvent` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyInstructionEventFilter = { + /** Aggregates across related `InstructionEvent` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `InstructionEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `InstructionEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `InstructionEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Instruction` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyInstructionFilter = { + /** Aggregates across related `Instruction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Instruction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Instruction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Instruction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `InstructionParty` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyInstructionPartyFilter = { + /** Aggregates across related `InstructionParty` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `InstructionParty` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `InstructionParty` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `InstructionParty` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Investment` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyInvestmentFilter = { + /** Aggregates across related `Investment` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Investment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Investment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Investment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Leg` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyLegFilter = { + /** Aggregates across related `Leg` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Leg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Leg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Leg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `MultiSig` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyMultiSigFilter = { + /** Aggregates across related `MultiSig` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `MultiSig` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `MultiSig` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `MultiSig` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `MultiSigProposal` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyMultiSigProposalFilter = { + /** Aggregates across related `MultiSigProposal` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `MultiSigProposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `MultiSigProposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `MultiSigProposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `MultiSigProposalVote` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyMultiSigProposalVoteFilter = { + /** Aggregates across related `MultiSigProposalVote` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `MultiSigProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `MultiSigProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `MultiSigProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `MultiSigSigner` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyMultiSigSignerFilter = { + /** Aggregates across related `MultiSigSigner` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `MultiSigSigner` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `MultiSigSigner` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `MultiSigSigner` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `NftHolder` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyNftHolderFilter = { + /** Aggregates across related `NftHolder` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `NftHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `NftHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `NftHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `OffChainReceipt` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyOffChainReceiptFilter = { + /** Aggregates across related `OffChainReceipt` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `OffChainReceipt` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `OffChainReceipt` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `OffChainReceipt` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Permission` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyPermissionFilter = { + /** Aggregates across related `Permission` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Permission` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Permission` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Permission` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `PolyxTransaction` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyPolyxTransactionFilter = { + /** Aggregates across related `PolyxTransaction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `PolyxTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `PolyxTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `PolyxTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Portfolio` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyPortfolioFilter = { + /** Aggregates across related `Portfolio` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Portfolio` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Portfolio` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Portfolio` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `PortfolioMovement` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyPortfolioMovementFilter = { + /** Aggregates across related `PortfolioMovement` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `PortfolioMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `PortfolioMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `PortfolioMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Proposal` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyProposalFilter = { + /** Aggregates across related `Proposal` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Proposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Proposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Proposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ProposalVote` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyProposalVoteFilter = { + /** Aggregates across related `ProposalVote` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `StakingEvent` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyStakingEventFilter = { + /** Aggregates across related `StakingEvent` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `StakingEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `StakingEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `StakingEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `StatType` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyStatTypeFilter = { + /** Aggregates across related `StatType` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Sto` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyStoFilter = { + /** Aggregates across related `Sto` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TickerExternalAgentAction` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyTickerExternalAgentActionFilter = { + /** Aggregates across related `TickerExternalAgentAction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TickerExternalAgentAction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TickerExternalAgentAction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TickerExternalAgentAction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TickerExternalAgent` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyTickerExternalAgentFilter = { + /** Aggregates across related `TickerExternalAgent` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TickerExternalAgent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TickerExternalAgent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TickerExternalAgent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TickerExternalAgentHistory` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyTickerExternalAgentHistoryFilter = { + /** Aggregates across related `TickerExternalAgentHistory` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TickerExternalAgentHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TickerExternalAgentHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TickerExternalAgentHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TransferComplianceExemption` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyTransferComplianceExemptionFilter = { + /** Aggregates across related `TransferComplianceExemption` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TransferComplianceExemption` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TransferComplianceExemption` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TransferComplianceExemption` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TransferCompliance` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyTransferComplianceFilter = { + /** Aggregates across related `TransferCompliance` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TransferManager` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyTransferManagerFilter = { + /** Aggregates across related `TransferManager` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TransferManager` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TransferManager` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TransferManager` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TrustedClaimIssuer` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyTrustedClaimIssuerFilter = { + /** Aggregates across related `TrustedClaimIssuer` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TrustedClaimIssuer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TrustedClaimIssuer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TrustedClaimIssuer` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Venue` object types. All fields are combined with a logical ‘and.’ */ +export type BlockToManyVenueFilter = { + /** Aggregates across related `Venue` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Venue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Venue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Venue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type BlockVariancePopulationAggregates = { + __typename?: 'BlockVariancePopulationAggregates'; + /** Population variance of blockId across the matching connection */ + blockId?: Maybe; + /** Population variance of countEvents across the matching connection */ + countEvents?: Maybe; + /** Population variance of countExtrinsics across the matching connection */ + countExtrinsics?: Maybe; + /** Population variance of countExtrinsicsError across the matching connection */ + countExtrinsicsError?: Maybe; + /** Population variance of countExtrinsicsSigned across the matching connection */ + countExtrinsicsSigned?: Maybe; + /** Population variance of countExtrinsicsSuccess across the matching connection */ + countExtrinsicsSuccess?: Maybe; + /** Population variance of countExtrinsicsUnsigned across the matching connection */ + countExtrinsicsUnsigned?: Maybe; + /** Population variance of parentId across the matching connection */ + parentId?: Maybe; + /** Population variance of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +export type BlockVarianceSampleAggregates = { + __typename?: 'BlockVarianceSampleAggregates'; + /** Sample variance of blockId across the matching connection */ + blockId?: Maybe; + /** Sample variance of countEvents across the matching connection */ + countEvents?: Maybe; + /** Sample variance of countExtrinsics across the matching connection */ + countExtrinsics?: Maybe; + /** Sample variance of countExtrinsicsError across the matching connection */ + countExtrinsicsError?: Maybe; + /** Sample variance of countExtrinsicsSigned across the matching connection */ + countExtrinsicsSigned?: Maybe; + /** Sample variance of countExtrinsicsSuccess across the matching connection */ + countExtrinsicsSuccess?: Maybe; + /** Sample variance of countExtrinsicsUnsigned across the matching connection */ + countExtrinsicsUnsigned?: Maybe; + /** Sample variance of parentId across the matching connection */ + parentId?: Maybe; + /** Sample variance of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +/** A connection to a list of `Venue` values, with data from `Instruction`. */ +export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyConnection = { + __typename?: 'BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Venue`, info from the `Instruction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Venue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Venue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Venue` values, with data from `Instruction`. */ +export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Venue` edge in the connection, with data from `Instruction`. */ +export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyEdge = { + __typename?: 'BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Instruction`. */ + instructions: InstructionsConnection; + /** The `Venue` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Venue` edge in the connection, with data from `Instruction`. */ +export type BlockVenuesByInstructionCreatedBlockIdAndVenueIdManyToManyEdgeInstructionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Venue` values, with data from `Instruction`. */ +export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyConnection = { + __typename?: 'BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Venue`, info from the `Instruction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Venue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Venue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Venue` values, with data from `Instruction`. */ +export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Venue` edge in the connection, with data from `Instruction`. */ +export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyEdge = { + __typename?: 'BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Instruction`. */ + instructions: InstructionsConnection; + /** The `Venue` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Venue` edge in the connection, with data from `Instruction`. */ +export type BlockVenuesByInstructionUpdatedBlockIdAndVenueIdManyToManyEdgeInstructionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type BlockVenuesByStoCreatedBlockIdAndVenueIdManyToManyConnection = { + __typename?: 'BlockVenuesByStoCreatedBlockIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Venue`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Venue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Venue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type BlockVenuesByStoCreatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type BlockVenuesByStoCreatedBlockIdAndVenueIdManyToManyEdge = { + __typename?: 'BlockVenuesByStoCreatedBlockIdAndVenueIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Venue` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stos: StosConnection; +}; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type BlockVenuesByStoCreatedBlockIdAndVenueIdManyToManyEdgeStosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type BlockVenuesByStoUpdatedBlockIdAndVenueIdManyToManyConnection = { + __typename?: 'BlockVenuesByStoUpdatedBlockIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Venue`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Venue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Venue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type BlockVenuesByStoUpdatedBlockIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type BlockVenuesByStoUpdatedBlockIdAndVenueIdManyToManyEdge = { + __typename?: 'BlockVenuesByStoUpdatedBlockIdAndVenueIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Venue` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stos: StosConnection; +}; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type BlockVenuesByStoUpdatedBlockIdAndVenueIdManyToManyEdgeStosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Block` values. */ +export type BlocksConnection = { + __typename?: 'BlocksConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values. */ +export type BlocksConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Block` edge in the connection. */ +export type BlocksEdge = { + __typename?: 'BlocksEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Block` for usage during aggregation. */ +export enum BlocksGroupBy { + CountEvents = 'COUNT_EVENTS', + CountExtrinsics = 'COUNT_EXTRINSICS', + CountExtrinsicsError = 'COUNT_EXTRINSICS_ERROR', + CountExtrinsicsSigned = 'COUNT_EXTRINSICS_SIGNED', + CountExtrinsicsSuccess = 'COUNT_EXTRINSICS_SUCCESS', + CountExtrinsicsUnsigned = 'COUNT_EXTRINSICS_UNSIGNED', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + ExtrinsicsRoot = 'EXTRINSICS_ROOT', + Id = 'ID', + ParentHash = 'PARENT_HASH', + ParentId = 'PARENT_ID', + SpecVersionId = 'SPEC_VERSION_ID', + StateRoot = 'STATE_ROOT', +} + +export type BlocksHavingAverageInput = { + blockId?: InputMaybe; + countEvents?: InputMaybe; + countExtrinsics?: InputMaybe; + countExtrinsicsError?: InputMaybe; + countExtrinsicsSigned?: InputMaybe; + countExtrinsicsSuccess?: InputMaybe; + countExtrinsicsUnsigned?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + parentId?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type BlocksHavingDistinctCountInput = { + blockId?: InputMaybe; + countEvents?: InputMaybe; + countExtrinsics?: InputMaybe; + countExtrinsicsError?: InputMaybe; + countExtrinsicsSigned?: InputMaybe; + countExtrinsicsSuccess?: InputMaybe; + countExtrinsicsUnsigned?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + parentId?: InputMaybe; + specVersionId?: InputMaybe; +}; + +/** Conditions for `Block` aggregates. */ +export type BlocksHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type BlocksHavingMaxInput = { + blockId?: InputMaybe; + countEvents?: InputMaybe; + countExtrinsics?: InputMaybe; + countExtrinsicsError?: InputMaybe; + countExtrinsicsSigned?: InputMaybe; + countExtrinsicsSuccess?: InputMaybe; + countExtrinsicsUnsigned?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + parentId?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type BlocksHavingMinInput = { + blockId?: InputMaybe; + countEvents?: InputMaybe; + countExtrinsics?: InputMaybe; + countExtrinsicsError?: InputMaybe; + countExtrinsicsSigned?: InputMaybe; + countExtrinsicsSuccess?: InputMaybe; + countExtrinsicsUnsigned?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + parentId?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type BlocksHavingStddevPopulationInput = { + blockId?: InputMaybe; + countEvents?: InputMaybe; + countExtrinsics?: InputMaybe; + countExtrinsicsError?: InputMaybe; + countExtrinsicsSigned?: InputMaybe; + countExtrinsicsSuccess?: InputMaybe; + countExtrinsicsUnsigned?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + parentId?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type BlocksHavingStddevSampleInput = { + blockId?: InputMaybe; + countEvents?: InputMaybe; + countExtrinsics?: InputMaybe; + countExtrinsicsError?: InputMaybe; + countExtrinsicsSigned?: InputMaybe; + countExtrinsicsSuccess?: InputMaybe; + countExtrinsicsUnsigned?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + parentId?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type BlocksHavingSumInput = { + blockId?: InputMaybe; + countEvents?: InputMaybe; + countExtrinsics?: InputMaybe; + countExtrinsicsError?: InputMaybe; + countExtrinsicsSigned?: InputMaybe; + countExtrinsicsSuccess?: InputMaybe; + countExtrinsicsUnsigned?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + parentId?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type BlocksHavingVariancePopulationInput = { + blockId?: InputMaybe; + countEvents?: InputMaybe; + countExtrinsics?: InputMaybe; + countExtrinsicsError?: InputMaybe; + countExtrinsicsSigned?: InputMaybe; + countExtrinsicsSuccess?: InputMaybe; + countExtrinsicsUnsigned?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + parentId?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type BlocksHavingVarianceSampleInput = { + blockId?: InputMaybe; + countEvents?: InputMaybe; + countExtrinsics?: InputMaybe; + countExtrinsicsError?: InputMaybe; + countExtrinsicsSigned?: InputMaybe; + countExtrinsicsSuccess?: InputMaybe; + countExtrinsicsUnsigned?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + parentId?: InputMaybe; + specVersionId?: InputMaybe; +}; + +/** Methods to use when ordering `Block`. */ +export enum BlocksOrderBy { + AccountsByCreatedBlockIdAverageAddressAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_ADDRESS_ASC', + AccountsByCreatedBlockIdAverageAddressDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_ADDRESS_DESC', + AccountsByCreatedBlockIdAverageBlockRangeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AccountsByCreatedBlockIdAverageBlockRangeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AccountsByCreatedBlockIdAverageCreatedAtAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AccountsByCreatedBlockIdAverageCreatedAtDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AccountsByCreatedBlockIdAverageCreatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdAverageCreatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdAverageDatetimeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + AccountsByCreatedBlockIdAverageDatetimeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + AccountsByCreatedBlockIdAverageEventIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + AccountsByCreatedBlockIdAverageEventIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + AccountsByCreatedBlockIdAverageIdentityIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + AccountsByCreatedBlockIdAverageIdentityIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + AccountsByCreatedBlockIdAverageIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + AccountsByCreatedBlockIdAverageIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + AccountsByCreatedBlockIdAveragePermissionsIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_PERMISSIONS_ID_ASC', + AccountsByCreatedBlockIdAveragePermissionsIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_PERMISSIONS_ID_DESC', + AccountsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdCountAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + AccountsByCreatedBlockIdCountDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + AccountsByCreatedBlockIdDistinctCountAddressAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_ASC', + AccountsByCreatedBlockIdDistinctCountAddressDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_DESC', + AccountsByCreatedBlockIdDistinctCountBlockRangeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AccountsByCreatedBlockIdDistinctCountBlockRangeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AccountsByCreatedBlockIdDistinctCountCreatedAtAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AccountsByCreatedBlockIdDistinctCountCreatedAtDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AccountsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdDistinctCountDatetimeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + AccountsByCreatedBlockIdDistinctCountDatetimeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + AccountsByCreatedBlockIdDistinctCountEventIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + AccountsByCreatedBlockIdDistinctCountEventIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + AccountsByCreatedBlockIdDistinctCountIdentityIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + AccountsByCreatedBlockIdDistinctCountIdentityIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + AccountsByCreatedBlockIdDistinctCountIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AccountsByCreatedBlockIdDistinctCountIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AccountsByCreatedBlockIdDistinctCountPermissionsIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_ID_ASC', + AccountsByCreatedBlockIdDistinctCountPermissionsIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_ID_DESC', + AccountsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdMaxAddressAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_ADDRESS_ASC', + AccountsByCreatedBlockIdMaxAddressDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_ADDRESS_DESC', + AccountsByCreatedBlockIdMaxBlockRangeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AccountsByCreatedBlockIdMaxBlockRangeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AccountsByCreatedBlockIdMaxCreatedAtAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AccountsByCreatedBlockIdMaxCreatedAtDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AccountsByCreatedBlockIdMaxCreatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdMaxCreatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdMaxDatetimeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + AccountsByCreatedBlockIdMaxDatetimeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + AccountsByCreatedBlockIdMaxEventIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_ASC', + AccountsByCreatedBlockIdMaxEventIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_DESC', + AccountsByCreatedBlockIdMaxIdentityIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + AccountsByCreatedBlockIdMaxIdentityIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + AccountsByCreatedBlockIdMaxIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + AccountsByCreatedBlockIdMaxIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + AccountsByCreatedBlockIdMaxPermissionsIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_PERMISSIONS_ID_ASC', + AccountsByCreatedBlockIdMaxPermissionsIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_PERMISSIONS_ID_DESC', + AccountsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdMinAddressAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_ADDRESS_ASC', + AccountsByCreatedBlockIdMinAddressDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_ADDRESS_DESC', + AccountsByCreatedBlockIdMinBlockRangeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AccountsByCreatedBlockIdMinBlockRangeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AccountsByCreatedBlockIdMinCreatedAtAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AccountsByCreatedBlockIdMinCreatedAtDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AccountsByCreatedBlockIdMinCreatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdMinCreatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdMinDatetimeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + AccountsByCreatedBlockIdMinDatetimeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + AccountsByCreatedBlockIdMinEventIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_ASC', + AccountsByCreatedBlockIdMinEventIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_DESC', + AccountsByCreatedBlockIdMinIdentityIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + AccountsByCreatedBlockIdMinIdentityIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + AccountsByCreatedBlockIdMinIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + AccountsByCreatedBlockIdMinIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + AccountsByCreatedBlockIdMinPermissionsIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_PERMISSIONS_ID_ASC', + AccountsByCreatedBlockIdMinPermissionsIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_PERMISSIONS_ID_DESC', + AccountsByCreatedBlockIdMinUpdatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdMinUpdatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdStddevPopulationAddressAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_ASC', + AccountsByCreatedBlockIdStddevPopulationAddressDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_DESC', + AccountsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AccountsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AccountsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AccountsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AccountsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdStddevPopulationDatetimeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + AccountsByCreatedBlockIdStddevPopulationDatetimeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + AccountsByCreatedBlockIdStddevPopulationEventIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + AccountsByCreatedBlockIdStddevPopulationEventIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + AccountsByCreatedBlockIdStddevPopulationIdentityIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + AccountsByCreatedBlockIdStddevPopulationIdentityIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + AccountsByCreatedBlockIdStddevPopulationIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AccountsByCreatedBlockIdStddevPopulationIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AccountsByCreatedBlockIdStddevPopulationPermissionsIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_ID_ASC', + AccountsByCreatedBlockIdStddevPopulationPermissionsIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_ID_DESC', + AccountsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdStddevSampleAddressAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_ASC', + AccountsByCreatedBlockIdStddevSampleAddressDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_DESC', + AccountsByCreatedBlockIdStddevSampleBlockRangeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AccountsByCreatedBlockIdStddevSampleBlockRangeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AccountsByCreatedBlockIdStddevSampleCreatedAtAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AccountsByCreatedBlockIdStddevSampleCreatedAtDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AccountsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdStddevSampleDatetimeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + AccountsByCreatedBlockIdStddevSampleDatetimeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + AccountsByCreatedBlockIdStddevSampleEventIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + AccountsByCreatedBlockIdStddevSampleEventIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + AccountsByCreatedBlockIdStddevSampleIdentityIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AccountsByCreatedBlockIdStddevSampleIdentityIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AccountsByCreatedBlockIdStddevSampleIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AccountsByCreatedBlockIdStddevSampleIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AccountsByCreatedBlockIdStddevSamplePermissionsIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_ID_ASC', + AccountsByCreatedBlockIdStddevSamplePermissionsIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_ID_DESC', + AccountsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdSumAddressAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_ADDRESS_ASC', + AccountsByCreatedBlockIdSumAddressDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_ADDRESS_DESC', + AccountsByCreatedBlockIdSumBlockRangeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AccountsByCreatedBlockIdSumBlockRangeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AccountsByCreatedBlockIdSumCreatedAtAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AccountsByCreatedBlockIdSumCreatedAtDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AccountsByCreatedBlockIdSumCreatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdSumCreatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdSumDatetimeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + AccountsByCreatedBlockIdSumDatetimeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + AccountsByCreatedBlockIdSumEventIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_ASC', + AccountsByCreatedBlockIdSumEventIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_DESC', + AccountsByCreatedBlockIdSumIdentityIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + AccountsByCreatedBlockIdSumIdentityIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + AccountsByCreatedBlockIdSumIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + AccountsByCreatedBlockIdSumIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + AccountsByCreatedBlockIdSumPermissionsIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_PERMISSIONS_ID_ASC', + AccountsByCreatedBlockIdSumPermissionsIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_PERMISSIONS_ID_DESC', + AccountsByCreatedBlockIdSumUpdatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdSumUpdatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdVariancePopulationAddressAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_ASC', + AccountsByCreatedBlockIdVariancePopulationAddressDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_DESC', + AccountsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AccountsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AccountsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AccountsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AccountsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdVariancePopulationDatetimeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + AccountsByCreatedBlockIdVariancePopulationDatetimeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + AccountsByCreatedBlockIdVariancePopulationEventIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + AccountsByCreatedBlockIdVariancePopulationEventIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + AccountsByCreatedBlockIdVariancePopulationIdentityIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AccountsByCreatedBlockIdVariancePopulationIdentityIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AccountsByCreatedBlockIdVariancePopulationIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AccountsByCreatedBlockIdVariancePopulationIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AccountsByCreatedBlockIdVariancePopulationPermissionsIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_ID_ASC', + AccountsByCreatedBlockIdVariancePopulationPermissionsIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_ID_DESC', + AccountsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdVarianceSampleAddressAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + AccountsByCreatedBlockIdVarianceSampleAddressDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + AccountsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AccountsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AccountsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AccountsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AccountsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AccountsByCreatedBlockIdVarianceSampleDatetimeAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + AccountsByCreatedBlockIdVarianceSampleDatetimeDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + AccountsByCreatedBlockIdVarianceSampleEventIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + AccountsByCreatedBlockIdVarianceSampleEventIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + AccountsByCreatedBlockIdVarianceSampleIdentityIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AccountsByCreatedBlockIdVarianceSampleIdentityIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AccountsByCreatedBlockIdVarianceSampleIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AccountsByCreatedBlockIdVarianceSampleIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AccountsByCreatedBlockIdVarianceSamplePermissionsIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_ID_ASC', + AccountsByCreatedBlockIdVarianceSamplePermissionsIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_ID_DESC', + AccountsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AccountsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdAverageAddressAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDRESS_ASC', + AccountsByUpdatedBlockIdAverageAddressDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDRESS_DESC', + AccountsByUpdatedBlockIdAverageBlockRangeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AccountsByUpdatedBlockIdAverageBlockRangeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AccountsByUpdatedBlockIdAverageCreatedAtAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AccountsByUpdatedBlockIdAverageCreatedAtDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AccountsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdAverageDatetimeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + AccountsByUpdatedBlockIdAverageDatetimeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + AccountsByUpdatedBlockIdAverageEventIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + AccountsByUpdatedBlockIdAverageEventIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + AccountsByUpdatedBlockIdAverageIdentityIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + AccountsByUpdatedBlockIdAverageIdentityIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + AccountsByUpdatedBlockIdAverageIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + AccountsByUpdatedBlockIdAverageIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + AccountsByUpdatedBlockIdAveragePermissionsIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_PERMISSIONS_ID_ASC', + AccountsByUpdatedBlockIdAveragePermissionsIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_PERMISSIONS_ID_DESC', + AccountsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdCountAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + AccountsByUpdatedBlockIdCountDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + AccountsByUpdatedBlockIdDistinctCountAddressAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_ASC', + AccountsByUpdatedBlockIdDistinctCountAddressDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_DESC', + AccountsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AccountsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AccountsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AccountsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AccountsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdDistinctCountDatetimeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + AccountsByUpdatedBlockIdDistinctCountDatetimeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + AccountsByUpdatedBlockIdDistinctCountEventIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + AccountsByUpdatedBlockIdDistinctCountEventIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + AccountsByUpdatedBlockIdDistinctCountIdentityIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + AccountsByUpdatedBlockIdDistinctCountIdentityIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + AccountsByUpdatedBlockIdDistinctCountIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AccountsByUpdatedBlockIdDistinctCountIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AccountsByUpdatedBlockIdDistinctCountPermissionsIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_ID_ASC', + AccountsByUpdatedBlockIdDistinctCountPermissionsIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_ID_DESC', + AccountsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdMaxAddressAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_ADDRESS_ASC', + AccountsByUpdatedBlockIdMaxAddressDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_ADDRESS_DESC', + AccountsByUpdatedBlockIdMaxBlockRangeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AccountsByUpdatedBlockIdMaxBlockRangeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AccountsByUpdatedBlockIdMaxCreatedAtAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AccountsByUpdatedBlockIdMaxCreatedAtDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AccountsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdMaxDatetimeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + AccountsByUpdatedBlockIdMaxDatetimeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + AccountsByUpdatedBlockIdMaxEventIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_ASC', + AccountsByUpdatedBlockIdMaxEventIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_DESC', + AccountsByUpdatedBlockIdMaxIdentityIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + AccountsByUpdatedBlockIdMaxIdentityIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + AccountsByUpdatedBlockIdMaxIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + AccountsByUpdatedBlockIdMaxIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + AccountsByUpdatedBlockIdMaxPermissionsIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_PERMISSIONS_ID_ASC', + AccountsByUpdatedBlockIdMaxPermissionsIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_PERMISSIONS_ID_DESC', + AccountsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdMinAddressAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_ADDRESS_ASC', + AccountsByUpdatedBlockIdMinAddressDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_ADDRESS_DESC', + AccountsByUpdatedBlockIdMinBlockRangeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AccountsByUpdatedBlockIdMinBlockRangeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AccountsByUpdatedBlockIdMinCreatedAtAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AccountsByUpdatedBlockIdMinCreatedAtDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AccountsByUpdatedBlockIdMinCreatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdMinCreatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdMinDatetimeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + AccountsByUpdatedBlockIdMinDatetimeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + AccountsByUpdatedBlockIdMinEventIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_ASC', + AccountsByUpdatedBlockIdMinEventIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_DESC', + AccountsByUpdatedBlockIdMinIdentityIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + AccountsByUpdatedBlockIdMinIdentityIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + AccountsByUpdatedBlockIdMinIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + AccountsByUpdatedBlockIdMinIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + AccountsByUpdatedBlockIdMinPermissionsIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_PERMISSIONS_ID_ASC', + AccountsByUpdatedBlockIdMinPermissionsIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_PERMISSIONS_ID_DESC', + AccountsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdStddevPopulationAddressAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_ASC', + AccountsByUpdatedBlockIdStddevPopulationAddressDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_DESC', + AccountsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AccountsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AccountsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AccountsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AccountsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdStddevPopulationDatetimeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + AccountsByUpdatedBlockIdStddevPopulationDatetimeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + AccountsByUpdatedBlockIdStddevPopulationEventIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + AccountsByUpdatedBlockIdStddevPopulationEventIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + AccountsByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + AccountsByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + AccountsByUpdatedBlockIdStddevPopulationIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AccountsByUpdatedBlockIdStddevPopulationIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AccountsByUpdatedBlockIdStddevPopulationPermissionsIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_ID_ASC', + AccountsByUpdatedBlockIdStddevPopulationPermissionsIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_ID_DESC', + AccountsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdStddevSampleAddressAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_ASC', + AccountsByUpdatedBlockIdStddevSampleAddressDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_DESC', + AccountsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AccountsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AccountsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AccountsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AccountsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdStddevSampleDatetimeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + AccountsByUpdatedBlockIdStddevSampleDatetimeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + AccountsByUpdatedBlockIdStddevSampleEventIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + AccountsByUpdatedBlockIdStddevSampleEventIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + AccountsByUpdatedBlockIdStddevSampleIdentityIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AccountsByUpdatedBlockIdStddevSampleIdentityIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AccountsByUpdatedBlockIdStddevSampleIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AccountsByUpdatedBlockIdStddevSampleIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AccountsByUpdatedBlockIdStddevSamplePermissionsIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_ID_ASC', + AccountsByUpdatedBlockIdStddevSamplePermissionsIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_ID_DESC', + AccountsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdSumAddressAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_ADDRESS_ASC', + AccountsByUpdatedBlockIdSumAddressDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_ADDRESS_DESC', + AccountsByUpdatedBlockIdSumBlockRangeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AccountsByUpdatedBlockIdSumBlockRangeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AccountsByUpdatedBlockIdSumCreatedAtAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AccountsByUpdatedBlockIdSumCreatedAtDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AccountsByUpdatedBlockIdSumCreatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdSumCreatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdSumDatetimeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + AccountsByUpdatedBlockIdSumDatetimeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + AccountsByUpdatedBlockIdSumEventIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_ASC', + AccountsByUpdatedBlockIdSumEventIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_DESC', + AccountsByUpdatedBlockIdSumIdentityIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + AccountsByUpdatedBlockIdSumIdentityIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + AccountsByUpdatedBlockIdSumIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + AccountsByUpdatedBlockIdSumIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + AccountsByUpdatedBlockIdSumPermissionsIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_PERMISSIONS_ID_ASC', + AccountsByUpdatedBlockIdSumPermissionsIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_PERMISSIONS_ID_DESC', + AccountsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdVariancePopulationAddressAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_ASC', + AccountsByUpdatedBlockIdVariancePopulationAddressDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_DESC', + AccountsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AccountsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AccountsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AccountsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AccountsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdVariancePopulationDatetimeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + AccountsByUpdatedBlockIdVariancePopulationDatetimeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + AccountsByUpdatedBlockIdVariancePopulationEventIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + AccountsByUpdatedBlockIdVariancePopulationEventIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + AccountsByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AccountsByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AccountsByUpdatedBlockIdVariancePopulationIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AccountsByUpdatedBlockIdVariancePopulationIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AccountsByUpdatedBlockIdVariancePopulationPermissionsIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_ID_ASC', + AccountsByUpdatedBlockIdVariancePopulationPermissionsIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_ID_DESC', + AccountsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdVarianceSampleAddressAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + AccountsByUpdatedBlockIdVarianceSampleAddressDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + AccountsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AccountsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AccountsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AccountsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AccountsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AccountsByUpdatedBlockIdVarianceSampleDatetimeAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + AccountsByUpdatedBlockIdVarianceSampleDatetimeDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + AccountsByUpdatedBlockIdVarianceSampleEventIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + AccountsByUpdatedBlockIdVarianceSampleEventIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + AccountsByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AccountsByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AccountsByUpdatedBlockIdVarianceSampleIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AccountsByUpdatedBlockIdVarianceSampleIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AccountsByUpdatedBlockIdVarianceSamplePermissionsIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_ID_ASC', + AccountsByUpdatedBlockIdVarianceSamplePermissionsIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_ID_DESC', + AccountsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AccountsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdAverageAccountAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ACCOUNT_ASC', + AccountHistoriesByCreatedBlockIdAverageAccountDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ACCOUNT_DESC', + AccountHistoriesByCreatedBlockIdAverageBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AccountHistoriesByCreatedBlockIdAverageBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AccountHistoriesByCreatedBlockIdAverageCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AccountHistoriesByCreatedBlockIdAverageCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AccountHistoriesByCreatedBlockIdAverageCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdAverageCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdAverageDatetimeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + AccountHistoriesByCreatedBlockIdAverageDatetimeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + AccountHistoriesByCreatedBlockIdAverageEventIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + AccountHistoriesByCreatedBlockIdAverageEventIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + AccountHistoriesByCreatedBlockIdAverageIdentityAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ASC', + AccountHistoriesByCreatedBlockIdAverageIdentityDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_DESC', + AccountHistoriesByCreatedBlockIdAverageIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + AccountHistoriesByCreatedBlockIdAverageIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + AccountHistoriesByCreatedBlockIdAveragePermissionsAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_PERMISSIONS_ASC', + AccountHistoriesByCreatedBlockIdAveragePermissionsDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_PERMISSIONS_DESC', + AccountHistoriesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdCountAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_COUNT_ASC', + AccountHistoriesByCreatedBlockIdCountDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_COUNT_DESC', + AccountHistoriesByCreatedBlockIdDistinctCountAccountAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ASC', + AccountHistoriesByCreatedBlockIdDistinctCountAccountDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_DESC', + AccountHistoriesByCreatedBlockIdDistinctCountBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AccountHistoriesByCreatedBlockIdDistinctCountBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AccountHistoriesByCreatedBlockIdDistinctCountCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AccountHistoriesByCreatedBlockIdDistinctCountCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AccountHistoriesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdDistinctCountDatetimeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + AccountHistoriesByCreatedBlockIdDistinctCountDatetimeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + AccountHistoriesByCreatedBlockIdDistinctCountEventIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + AccountHistoriesByCreatedBlockIdDistinctCountEventIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + AccountHistoriesByCreatedBlockIdDistinctCountIdentityAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ASC', + AccountHistoriesByCreatedBlockIdDistinctCountIdentityDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_DESC', + AccountHistoriesByCreatedBlockIdDistinctCountIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AccountHistoriesByCreatedBlockIdDistinctCountIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AccountHistoriesByCreatedBlockIdDistinctCountPermissionsAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_ASC', + AccountHistoriesByCreatedBlockIdDistinctCountPermissionsDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_DESC', + AccountHistoriesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdMaxAccountAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ACCOUNT_ASC', + AccountHistoriesByCreatedBlockIdMaxAccountDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ACCOUNT_DESC', + AccountHistoriesByCreatedBlockIdMaxBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AccountHistoriesByCreatedBlockIdMaxBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AccountHistoriesByCreatedBlockIdMaxCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AccountHistoriesByCreatedBlockIdMaxCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AccountHistoriesByCreatedBlockIdMaxCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdMaxCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdMaxDatetimeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + AccountHistoriesByCreatedBlockIdMaxDatetimeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + AccountHistoriesByCreatedBlockIdMaxEventIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_ASC', + AccountHistoriesByCreatedBlockIdMaxEventIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_DESC', + AccountHistoriesByCreatedBlockIdMaxIdentityAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ASC', + AccountHistoriesByCreatedBlockIdMaxIdentityDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_IDENTITY_DESC', + AccountHistoriesByCreatedBlockIdMaxIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + AccountHistoriesByCreatedBlockIdMaxIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + AccountHistoriesByCreatedBlockIdMaxPermissionsAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_PERMISSIONS_ASC', + AccountHistoriesByCreatedBlockIdMaxPermissionsDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_PERMISSIONS_DESC', + AccountHistoriesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdMinAccountAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ACCOUNT_ASC', + AccountHistoriesByCreatedBlockIdMinAccountDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ACCOUNT_DESC', + AccountHistoriesByCreatedBlockIdMinBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AccountHistoriesByCreatedBlockIdMinBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AccountHistoriesByCreatedBlockIdMinCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AccountHistoriesByCreatedBlockIdMinCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AccountHistoriesByCreatedBlockIdMinCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdMinCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdMinDatetimeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + AccountHistoriesByCreatedBlockIdMinDatetimeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + AccountHistoriesByCreatedBlockIdMinEventIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_ASC', + AccountHistoriesByCreatedBlockIdMinEventIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_DESC', + AccountHistoriesByCreatedBlockIdMinIdentityAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ASC', + AccountHistoriesByCreatedBlockIdMinIdentityDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_IDENTITY_DESC', + AccountHistoriesByCreatedBlockIdMinIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + AccountHistoriesByCreatedBlockIdMinIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + AccountHistoriesByCreatedBlockIdMinPermissionsAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_PERMISSIONS_ASC', + AccountHistoriesByCreatedBlockIdMinPermissionsDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_PERMISSIONS_DESC', + AccountHistoriesByCreatedBlockIdMinUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdMinUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdStddevPopulationAccountAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ASC', + AccountHistoriesByCreatedBlockIdStddevPopulationAccountDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_DESC', + AccountHistoriesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AccountHistoriesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AccountHistoriesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AccountHistoriesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AccountHistoriesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdStddevPopulationDatetimeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + AccountHistoriesByCreatedBlockIdStddevPopulationDatetimeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + AccountHistoriesByCreatedBlockIdStddevPopulationEventIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + AccountHistoriesByCreatedBlockIdStddevPopulationEventIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + AccountHistoriesByCreatedBlockIdStddevPopulationIdentityAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ASC', + AccountHistoriesByCreatedBlockIdStddevPopulationIdentityDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_DESC', + AccountHistoriesByCreatedBlockIdStddevPopulationIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AccountHistoriesByCreatedBlockIdStddevPopulationIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AccountHistoriesByCreatedBlockIdStddevPopulationPermissionsAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_ASC', + AccountHistoriesByCreatedBlockIdStddevPopulationPermissionsDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_DESC', + AccountHistoriesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdStddevSampleAccountAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ASC', + AccountHistoriesByCreatedBlockIdStddevSampleAccountDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_DESC', + AccountHistoriesByCreatedBlockIdStddevSampleBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AccountHistoriesByCreatedBlockIdStddevSampleBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AccountHistoriesByCreatedBlockIdStddevSampleCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AccountHistoriesByCreatedBlockIdStddevSampleCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AccountHistoriesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdStddevSampleDatetimeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + AccountHistoriesByCreatedBlockIdStddevSampleDatetimeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + AccountHistoriesByCreatedBlockIdStddevSampleEventIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + AccountHistoriesByCreatedBlockIdStddevSampleEventIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + AccountHistoriesByCreatedBlockIdStddevSampleIdentityAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ASC', + AccountHistoriesByCreatedBlockIdStddevSampleIdentityDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_DESC', + AccountHistoriesByCreatedBlockIdStddevSampleIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AccountHistoriesByCreatedBlockIdStddevSampleIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AccountHistoriesByCreatedBlockIdStddevSamplePermissionsAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_ASC', + AccountHistoriesByCreatedBlockIdStddevSamplePermissionsDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_DESC', + AccountHistoriesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdSumAccountAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ACCOUNT_ASC', + AccountHistoriesByCreatedBlockIdSumAccountDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ACCOUNT_DESC', + AccountHistoriesByCreatedBlockIdSumBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AccountHistoriesByCreatedBlockIdSumBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AccountHistoriesByCreatedBlockIdSumCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AccountHistoriesByCreatedBlockIdSumCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AccountHistoriesByCreatedBlockIdSumCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdSumCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdSumDatetimeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + AccountHistoriesByCreatedBlockIdSumDatetimeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + AccountHistoriesByCreatedBlockIdSumEventIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_ASC', + AccountHistoriesByCreatedBlockIdSumEventIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_DESC', + AccountHistoriesByCreatedBlockIdSumIdentityAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ASC', + AccountHistoriesByCreatedBlockIdSumIdentityDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_IDENTITY_DESC', + AccountHistoriesByCreatedBlockIdSumIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + AccountHistoriesByCreatedBlockIdSumIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + AccountHistoriesByCreatedBlockIdSumPermissionsAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_PERMISSIONS_ASC', + AccountHistoriesByCreatedBlockIdSumPermissionsDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_PERMISSIONS_DESC', + AccountHistoriesByCreatedBlockIdSumUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdSumUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdVariancePopulationAccountAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ASC', + AccountHistoriesByCreatedBlockIdVariancePopulationAccountDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_DESC', + AccountHistoriesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AccountHistoriesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AccountHistoriesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AccountHistoriesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AccountHistoriesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdVariancePopulationDatetimeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + AccountHistoriesByCreatedBlockIdVariancePopulationDatetimeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + AccountHistoriesByCreatedBlockIdVariancePopulationEventIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + AccountHistoriesByCreatedBlockIdVariancePopulationEventIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + AccountHistoriesByCreatedBlockIdVariancePopulationIdentityAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ASC', + AccountHistoriesByCreatedBlockIdVariancePopulationIdentityDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_DESC', + AccountHistoriesByCreatedBlockIdVariancePopulationIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AccountHistoriesByCreatedBlockIdVariancePopulationIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AccountHistoriesByCreatedBlockIdVariancePopulationPermissionsAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_ASC', + AccountHistoriesByCreatedBlockIdVariancePopulationPermissionsDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_DESC', + AccountHistoriesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdVarianceSampleAccountAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ASC', + AccountHistoriesByCreatedBlockIdVarianceSampleAccountDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_DESC', + AccountHistoriesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AccountHistoriesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AccountHistoriesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AccountHistoriesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AccountHistoriesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AccountHistoriesByCreatedBlockIdVarianceSampleDatetimeAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + AccountHistoriesByCreatedBlockIdVarianceSampleDatetimeDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + AccountHistoriesByCreatedBlockIdVarianceSampleEventIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + AccountHistoriesByCreatedBlockIdVarianceSampleEventIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + AccountHistoriesByCreatedBlockIdVarianceSampleIdentityAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ASC', + AccountHistoriesByCreatedBlockIdVarianceSampleIdentityDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_DESC', + AccountHistoriesByCreatedBlockIdVarianceSampleIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AccountHistoriesByCreatedBlockIdVarianceSampleIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AccountHistoriesByCreatedBlockIdVarianceSamplePermissionsAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_ASC', + AccountHistoriesByCreatedBlockIdVarianceSamplePermissionsDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_DESC', + AccountHistoriesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdAverageAccountAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ACCOUNT_ASC', + AccountHistoriesByUpdatedBlockIdAverageAccountDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ACCOUNT_DESC', + AccountHistoriesByUpdatedBlockIdAverageBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AccountHistoriesByUpdatedBlockIdAverageBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AccountHistoriesByUpdatedBlockIdAverageCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AccountHistoriesByUpdatedBlockIdAverageCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AccountHistoriesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdAverageDatetimeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + AccountHistoriesByUpdatedBlockIdAverageDatetimeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + AccountHistoriesByUpdatedBlockIdAverageEventIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + AccountHistoriesByUpdatedBlockIdAverageEventIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + AccountHistoriesByUpdatedBlockIdAverageIdentityAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ASC', + AccountHistoriesByUpdatedBlockIdAverageIdentityDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_DESC', + AccountHistoriesByUpdatedBlockIdAverageIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + AccountHistoriesByUpdatedBlockIdAverageIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + AccountHistoriesByUpdatedBlockIdAveragePermissionsAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_PERMISSIONS_ASC', + AccountHistoriesByUpdatedBlockIdAveragePermissionsDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_PERMISSIONS_DESC', + AccountHistoriesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdCountAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + AccountHistoriesByUpdatedBlockIdCountDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + AccountHistoriesByUpdatedBlockIdDistinctCountAccountAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ASC', + AccountHistoriesByUpdatedBlockIdDistinctCountAccountDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_DESC', + AccountHistoriesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AccountHistoriesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AccountHistoriesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AccountHistoriesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AccountHistoriesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdDistinctCountDatetimeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + AccountHistoriesByUpdatedBlockIdDistinctCountDatetimeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + AccountHistoriesByUpdatedBlockIdDistinctCountEventIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + AccountHistoriesByUpdatedBlockIdDistinctCountEventIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + AccountHistoriesByUpdatedBlockIdDistinctCountIdentityAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ASC', + AccountHistoriesByUpdatedBlockIdDistinctCountIdentityDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_DESC', + AccountHistoriesByUpdatedBlockIdDistinctCountIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AccountHistoriesByUpdatedBlockIdDistinctCountIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AccountHistoriesByUpdatedBlockIdDistinctCountPermissionsAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_ASC', + AccountHistoriesByUpdatedBlockIdDistinctCountPermissionsDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_DESC', + AccountHistoriesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdMaxAccountAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ACCOUNT_ASC', + AccountHistoriesByUpdatedBlockIdMaxAccountDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ACCOUNT_DESC', + AccountHistoriesByUpdatedBlockIdMaxBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AccountHistoriesByUpdatedBlockIdMaxBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AccountHistoriesByUpdatedBlockIdMaxCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AccountHistoriesByUpdatedBlockIdMaxCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AccountHistoriesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdMaxDatetimeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + AccountHistoriesByUpdatedBlockIdMaxDatetimeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + AccountHistoriesByUpdatedBlockIdMaxEventIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_ASC', + AccountHistoriesByUpdatedBlockIdMaxEventIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_DESC', + AccountHistoriesByUpdatedBlockIdMaxIdentityAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ASC', + AccountHistoriesByUpdatedBlockIdMaxIdentityDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_DESC', + AccountHistoriesByUpdatedBlockIdMaxIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + AccountHistoriesByUpdatedBlockIdMaxIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + AccountHistoriesByUpdatedBlockIdMaxPermissionsAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_PERMISSIONS_ASC', + AccountHistoriesByUpdatedBlockIdMaxPermissionsDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_PERMISSIONS_DESC', + AccountHistoriesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdMinAccountAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ACCOUNT_ASC', + AccountHistoriesByUpdatedBlockIdMinAccountDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ACCOUNT_DESC', + AccountHistoriesByUpdatedBlockIdMinBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AccountHistoriesByUpdatedBlockIdMinBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AccountHistoriesByUpdatedBlockIdMinCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AccountHistoriesByUpdatedBlockIdMinCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AccountHistoriesByUpdatedBlockIdMinCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdMinCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdMinDatetimeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + AccountHistoriesByUpdatedBlockIdMinDatetimeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + AccountHistoriesByUpdatedBlockIdMinEventIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_ASC', + AccountHistoriesByUpdatedBlockIdMinEventIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_DESC', + AccountHistoriesByUpdatedBlockIdMinIdentityAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ASC', + AccountHistoriesByUpdatedBlockIdMinIdentityDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_DESC', + AccountHistoriesByUpdatedBlockIdMinIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + AccountHistoriesByUpdatedBlockIdMinIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + AccountHistoriesByUpdatedBlockIdMinPermissionsAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_PERMISSIONS_ASC', + AccountHistoriesByUpdatedBlockIdMinPermissionsDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_PERMISSIONS_DESC', + AccountHistoriesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdStddevPopulationAccountAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ASC', + AccountHistoriesByUpdatedBlockIdStddevPopulationAccountDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_DESC', + AccountHistoriesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AccountHistoriesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AccountHistoriesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AccountHistoriesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AccountHistoriesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdStddevPopulationDatetimeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + AccountHistoriesByUpdatedBlockIdStddevPopulationDatetimeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + AccountHistoriesByUpdatedBlockIdStddevPopulationEventIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + AccountHistoriesByUpdatedBlockIdStddevPopulationEventIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + AccountHistoriesByUpdatedBlockIdStddevPopulationIdentityAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ASC', + AccountHistoriesByUpdatedBlockIdStddevPopulationIdentityDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_DESC', + AccountHistoriesByUpdatedBlockIdStddevPopulationIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AccountHistoriesByUpdatedBlockIdStddevPopulationIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AccountHistoriesByUpdatedBlockIdStddevPopulationPermissionsAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_ASC', + AccountHistoriesByUpdatedBlockIdStddevPopulationPermissionsDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_DESC', + AccountHistoriesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdStddevSampleAccountAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ASC', + AccountHistoriesByUpdatedBlockIdStddevSampleAccountDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_DESC', + AccountHistoriesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AccountHistoriesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AccountHistoriesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AccountHistoriesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AccountHistoriesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdStddevSampleDatetimeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + AccountHistoriesByUpdatedBlockIdStddevSampleDatetimeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + AccountHistoriesByUpdatedBlockIdStddevSampleEventIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + AccountHistoriesByUpdatedBlockIdStddevSampleEventIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + AccountHistoriesByUpdatedBlockIdStddevSampleIdentityAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ASC', + AccountHistoriesByUpdatedBlockIdStddevSampleIdentityDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_DESC', + AccountHistoriesByUpdatedBlockIdStddevSampleIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AccountHistoriesByUpdatedBlockIdStddevSampleIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AccountHistoriesByUpdatedBlockIdStddevSamplePermissionsAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_ASC', + AccountHistoriesByUpdatedBlockIdStddevSamplePermissionsDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_DESC', + AccountHistoriesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdSumAccountAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ACCOUNT_ASC', + AccountHistoriesByUpdatedBlockIdSumAccountDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ACCOUNT_DESC', + AccountHistoriesByUpdatedBlockIdSumBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AccountHistoriesByUpdatedBlockIdSumBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AccountHistoriesByUpdatedBlockIdSumCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AccountHistoriesByUpdatedBlockIdSumCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AccountHistoriesByUpdatedBlockIdSumCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdSumCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdSumDatetimeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + AccountHistoriesByUpdatedBlockIdSumDatetimeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + AccountHistoriesByUpdatedBlockIdSumEventIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_ASC', + AccountHistoriesByUpdatedBlockIdSumEventIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_DESC', + AccountHistoriesByUpdatedBlockIdSumIdentityAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ASC', + AccountHistoriesByUpdatedBlockIdSumIdentityDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_DESC', + AccountHistoriesByUpdatedBlockIdSumIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + AccountHistoriesByUpdatedBlockIdSumIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + AccountHistoriesByUpdatedBlockIdSumPermissionsAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_PERMISSIONS_ASC', + AccountHistoriesByUpdatedBlockIdSumPermissionsDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_PERMISSIONS_DESC', + AccountHistoriesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdVariancePopulationAccountAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ASC', + AccountHistoriesByUpdatedBlockIdVariancePopulationAccountDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_DESC', + AccountHistoriesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AccountHistoriesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AccountHistoriesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AccountHistoriesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AccountHistoriesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdVariancePopulationDatetimeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + AccountHistoriesByUpdatedBlockIdVariancePopulationDatetimeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + AccountHistoriesByUpdatedBlockIdVariancePopulationEventIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + AccountHistoriesByUpdatedBlockIdVariancePopulationEventIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + AccountHistoriesByUpdatedBlockIdVariancePopulationIdentityAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ASC', + AccountHistoriesByUpdatedBlockIdVariancePopulationIdentityDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_DESC', + AccountHistoriesByUpdatedBlockIdVariancePopulationIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AccountHistoriesByUpdatedBlockIdVariancePopulationIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AccountHistoriesByUpdatedBlockIdVariancePopulationPermissionsAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_ASC', + AccountHistoriesByUpdatedBlockIdVariancePopulationPermissionsDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_DESC', + AccountHistoriesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdVarianceSampleAccountAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ASC', + AccountHistoriesByUpdatedBlockIdVarianceSampleAccountDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_DESC', + AccountHistoriesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AccountHistoriesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AccountHistoriesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AccountHistoriesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AccountHistoriesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AccountHistoriesByUpdatedBlockIdVarianceSampleDatetimeAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + AccountHistoriesByUpdatedBlockIdVarianceSampleDatetimeDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + AccountHistoriesByUpdatedBlockIdVarianceSampleEventIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + AccountHistoriesByUpdatedBlockIdVarianceSampleEventIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + AccountHistoriesByUpdatedBlockIdVarianceSampleIdentityAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ASC', + AccountHistoriesByUpdatedBlockIdVarianceSampleIdentityDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_DESC', + AccountHistoriesByUpdatedBlockIdVarianceSampleIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AccountHistoriesByUpdatedBlockIdVarianceSampleIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AccountHistoriesByUpdatedBlockIdVarianceSamplePermissionsAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_ASC', + AccountHistoriesByUpdatedBlockIdVarianceSamplePermissionsDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_DESC', + AccountHistoriesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AccountHistoriesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ACCOUNT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdAverageBlockRangeAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AgentGroupsByCreatedBlockIdAverageBlockRangeDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AgentGroupsByCreatedBlockIdAverageCreatedAtAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AgentGroupsByCreatedBlockIdAverageCreatedAtDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AgentGroupsByCreatedBlockIdAverageCreatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdAverageCreatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdAverageIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + AgentGroupsByCreatedBlockIdAverageIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + AgentGroupsByCreatedBlockIdAveragePermissionsAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_PERMISSIONS_ASC', + AgentGroupsByCreatedBlockIdAveragePermissionsDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_PERMISSIONS_DESC', + AgentGroupsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdCountAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_COUNT_ASC', + AgentGroupsByCreatedBlockIdCountDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_COUNT_DESC', + AgentGroupsByCreatedBlockIdDistinctCountBlockRangeAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AgentGroupsByCreatedBlockIdDistinctCountBlockRangeDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AgentGroupsByCreatedBlockIdDistinctCountCreatedAtAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AgentGroupsByCreatedBlockIdDistinctCountCreatedAtDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AgentGroupsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdDistinctCountIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AgentGroupsByCreatedBlockIdDistinctCountIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AgentGroupsByCreatedBlockIdDistinctCountPermissionsAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_ASC', + AgentGroupsByCreatedBlockIdDistinctCountPermissionsDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_DESC', + AgentGroupsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdMaxBlockRangeAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AgentGroupsByCreatedBlockIdMaxBlockRangeDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AgentGroupsByCreatedBlockIdMaxCreatedAtAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AgentGroupsByCreatedBlockIdMaxCreatedAtDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AgentGroupsByCreatedBlockIdMaxCreatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdMaxCreatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdMaxIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + AgentGroupsByCreatedBlockIdMaxIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + AgentGroupsByCreatedBlockIdMaxPermissionsAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_PERMISSIONS_ASC', + AgentGroupsByCreatedBlockIdMaxPermissionsDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_PERMISSIONS_DESC', + AgentGroupsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdMinBlockRangeAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AgentGroupsByCreatedBlockIdMinBlockRangeDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AgentGroupsByCreatedBlockIdMinCreatedAtAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AgentGroupsByCreatedBlockIdMinCreatedAtDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AgentGroupsByCreatedBlockIdMinCreatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdMinCreatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdMinIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + AgentGroupsByCreatedBlockIdMinIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + AgentGroupsByCreatedBlockIdMinPermissionsAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_PERMISSIONS_ASC', + AgentGroupsByCreatedBlockIdMinPermissionsDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_PERMISSIONS_DESC', + AgentGroupsByCreatedBlockIdMinUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdMinUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AgentGroupsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AgentGroupsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AgentGroupsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AgentGroupsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdStddevPopulationIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AgentGroupsByCreatedBlockIdStddevPopulationIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AgentGroupsByCreatedBlockIdStddevPopulationPermissionsAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_ASC', + AgentGroupsByCreatedBlockIdStddevPopulationPermissionsDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_DESC', + AgentGroupsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdStddevSampleBlockRangeAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AgentGroupsByCreatedBlockIdStddevSampleBlockRangeDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AgentGroupsByCreatedBlockIdStddevSampleCreatedAtAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AgentGroupsByCreatedBlockIdStddevSampleCreatedAtDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AgentGroupsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdStddevSampleIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AgentGroupsByCreatedBlockIdStddevSampleIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AgentGroupsByCreatedBlockIdStddevSamplePermissionsAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_ASC', + AgentGroupsByCreatedBlockIdStddevSamplePermissionsDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_DESC', + AgentGroupsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdSumBlockRangeAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AgentGroupsByCreatedBlockIdSumBlockRangeDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AgentGroupsByCreatedBlockIdSumCreatedAtAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AgentGroupsByCreatedBlockIdSumCreatedAtDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AgentGroupsByCreatedBlockIdSumCreatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdSumCreatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdSumIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + AgentGroupsByCreatedBlockIdSumIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + AgentGroupsByCreatedBlockIdSumPermissionsAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_PERMISSIONS_ASC', + AgentGroupsByCreatedBlockIdSumPermissionsDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_PERMISSIONS_DESC', + AgentGroupsByCreatedBlockIdSumUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdSumUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AgentGroupsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AgentGroupsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AgentGroupsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AgentGroupsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdVariancePopulationIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AgentGroupsByCreatedBlockIdVariancePopulationIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AgentGroupsByCreatedBlockIdVariancePopulationPermissionsAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_ASC', + AgentGroupsByCreatedBlockIdVariancePopulationPermissionsDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_DESC', + AgentGroupsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AgentGroupsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AgentGroupsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AgentGroupsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AgentGroupsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AgentGroupsByCreatedBlockIdVarianceSampleIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AgentGroupsByCreatedBlockIdVarianceSampleIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AgentGroupsByCreatedBlockIdVarianceSamplePermissionsAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_ASC', + AgentGroupsByCreatedBlockIdVarianceSamplePermissionsDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_DESC', + AgentGroupsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AgentGroupsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdAverageBlockRangeAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AgentGroupsByUpdatedBlockIdAverageBlockRangeDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AgentGroupsByUpdatedBlockIdAverageCreatedAtAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AgentGroupsByUpdatedBlockIdAverageCreatedAtDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AgentGroupsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdAverageIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + AgentGroupsByUpdatedBlockIdAverageIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + AgentGroupsByUpdatedBlockIdAveragePermissionsAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_PERMISSIONS_ASC', + AgentGroupsByUpdatedBlockIdAveragePermissionsDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_PERMISSIONS_DESC', + AgentGroupsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdCountAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + AgentGroupsByUpdatedBlockIdCountDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + AgentGroupsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AgentGroupsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AgentGroupsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AgentGroupsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AgentGroupsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdDistinctCountIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AgentGroupsByUpdatedBlockIdDistinctCountIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AgentGroupsByUpdatedBlockIdDistinctCountPermissionsAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_ASC', + AgentGroupsByUpdatedBlockIdDistinctCountPermissionsDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_DESC', + AgentGroupsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdMaxBlockRangeAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AgentGroupsByUpdatedBlockIdMaxBlockRangeDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AgentGroupsByUpdatedBlockIdMaxCreatedAtAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AgentGroupsByUpdatedBlockIdMaxCreatedAtDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AgentGroupsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdMaxIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + AgentGroupsByUpdatedBlockIdMaxIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + AgentGroupsByUpdatedBlockIdMaxPermissionsAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_PERMISSIONS_ASC', + AgentGroupsByUpdatedBlockIdMaxPermissionsDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_PERMISSIONS_DESC', + AgentGroupsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdMinBlockRangeAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AgentGroupsByUpdatedBlockIdMinBlockRangeDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AgentGroupsByUpdatedBlockIdMinCreatedAtAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AgentGroupsByUpdatedBlockIdMinCreatedAtDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AgentGroupsByUpdatedBlockIdMinCreatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdMinCreatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdMinIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + AgentGroupsByUpdatedBlockIdMinIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + AgentGroupsByUpdatedBlockIdMinPermissionsAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_PERMISSIONS_ASC', + AgentGroupsByUpdatedBlockIdMinPermissionsDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_PERMISSIONS_DESC', + AgentGroupsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AgentGroupsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AgentGroupsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AgentGroupsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AgentGroupsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdStddevPopulationIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AgentGroupsByUpdatedBlockIdStddevPopulationIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AgentGroupsByUpdatedBlockIdStddevPopulationPermissionsAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_ASC', + AgentGroupsByUpdatedBlockIdStddevPopulationPermissionsDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_DESC', + AgentGroupsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AgentGroupsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AgentGroupsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AgentGroupsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AgentGroupsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdStddevSampleIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AgentGroupsByUpdatedBlockIdStddevSampleIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AgentGroupsByUpdatedBlockIdStddevSamplePermissionsAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_ASC', + AgentGroupsByUpdatedBlockIdStddevSamplePermissionsDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_DESC', + AgentGroupsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdSumBlockRangeAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AgentGroupsByUpdatedBlockIdSumBlockRangeDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AgentGroupsByUpdatedBlockIdSumCreatedAtAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AgentGroupsByUpdatedBlockIdSumCreatedAtDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AgentGroupsByUpdatedBlockIdSumCreatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdSumCreatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdSumIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + AgentGroupsByUpdatedBlockIdSumIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + AgentGroupsByUpdatedBlockIdSumPermissionsAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_PERMISSIONS_ASC', + AgentGroupsByUpdatedBlockIdSumPermissionsDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_PERMISSIONS_DESC', + AgentGroupsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AgentGroupsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AgentGroupsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AgentGroupsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AgentGroupsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdVariancePopulationIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AgentGroupsByUpdatedBlockIdVariancePopulationIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AgentGroupsByUpdatedBlockIdVariancePopulationPermissionsAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_ASC', + AgentGroupsByUpdatedBlockIdVariancePopulationPermissionsDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_DESC', + AgentGroupsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AgentGroupsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AgentGroupsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AgentGroupsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AgentGroupsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AgentGroupsByUpdatedBlockIdVarianceSampleIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AgentGroupsByUpdatedBlockIdVarianceSampleIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AgentGroupsByUpdatedBlockIdVarianceSamplePermissionsAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_ASC', + AgentGroupsByUpdatedBlockIdVarianceSamplePermissionsDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_DESC', + AgentGroupsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AgentGroupsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'AGENT_GROUPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdAverageBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AgentGroupMembershipsByCreatedBlockIdAverageBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AgentGroupMembershipsByCreatedBlockIdAverageCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AgentGroupMembershipsByCreatedBlockIdAverageCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AgentGroupMembershipsByCreatedBlockIdAverageCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdAverageCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdAverageGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_GROUP_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdAverageGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_GROUP_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdAverageIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdAverageIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdAverageMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_MEMBER_ASC', + AgentGroupMembershipsByCreatedBlockIdAverageMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_MEMBER_DESC', + AgentGroupMembershipsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdCountAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_COUNT_ASC', + AgentGroupMembershipsByCreatedBlockIdCountDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_COUNT_DESC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_GROUP_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_GROUP_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMBER_ASC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMBER_DESC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdMaxBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AgentGroupMembershipsByCreatedBlockIdMaxBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AgentGroupMembershipsByCreatedBlockIdMaxCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AgentGroupMembershipsByCreatedBlockIdMaxCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AgentGroupMembershipsByCreatedBlockIdMaxCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdMaxCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdMaxGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_GROUP_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdMaxGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_GROUP_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdMaxIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdMaxIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdMaxMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_MEMBER_ASC', + AgentGroupMembershipsByCreatedBlockIdMaxMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_MEMBER_DESC', + AgentGroupMembershipsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdMinBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AgentGroupMembershipsByCreatedBlockIdMinBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AgentGroupMembershipsByCreatedBlockIdMinCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AgentGroupMembershipsByCreatedBlockIdMinCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AgentGroupMembershipsByCreatedBlockIdMinCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdMinCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdMinGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_GROUP_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdMinGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_GROUP_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdMinIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdMinIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdMinMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_MEMBER_ASC', + AgentGroupMembershipsByCreatedBlockIdMinMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_MEMBER_DESC', + AgentGroupMembershipsByCreatedBlockIdMinUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdMinUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_GROUP_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_GROUP_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMBER_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMBER_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_GROUP_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_GROUP_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMBER_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMBER_DESC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdSumBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AgentGroupMembershipsByCreatedBlockIdSumBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AgentGroupMembershipsByCreatedBlockIdSumCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AgentGroupMembershipsByCreatedBlockIdSumCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AgentGroupMembershipsByCreatedBlockIdSumCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdSumCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdSumGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_GROUP_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdSumGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_GROUP_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdSumIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdSumIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdSumMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_MEMBER_ASC', + AgentGroupMembershipsByCreatedBlockIdSumMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_MEMBER_DESC', + AgentGroupMembershipsByCreatedBlockIdSumUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdSumUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_GROUP_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_GROUP_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMBER_ASC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMBER_DESC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_GROUP_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_GROUP_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMBER_ASC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMBER_DESC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdAverageBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AgentGroupMembershipsByUpdatedBlockIdAverageBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AgentGroupMembershipsByUpdatedBlockIdAverageCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AgentGroupMembershipsByUpdatedBlockIdAverageCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AgentGroupMembershipsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdAverageGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_GROUP_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdAverageGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_GROUP_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdAverageIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdAverageIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdAverageMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_MEMBER_ASC', + AgentGroupMembershipsByUpdatedBlockIdAverageMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_MEMBER_DESC', + AgentGroupMembershipsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdCountAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + AgentGroupMembershipsByUpdatedBlockIdCountDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_GROUP_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_GROUP_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMBER_ASC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMBER_DESC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdMaxBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AgentGroupMembershipsByUpdatedBlockIdMaxBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AgentGroupMembershipsByUpdatedBlockIdMaxCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AgentGroupMembershipsByUpdatedBlockIdMaxCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AgentGroupMembershipsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdMaxGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_GROUP_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdMaxGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_GROUP_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdMaxIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdMaxIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdMaxMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_MEMBER_ASC', + AgentGroupMembershipsByUpdatedBlockIdMaxMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_MEMBER_DESC', + AgentGroupMembershipsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdMinBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AgentGroupMembershipsByUpdatedBlockIdMinBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AgentGroupMembershipsByUpdatedBlockIdMinCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AgentGroupMembershipsByUpdatedBlockIdMinCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AgentGroupMembershipsByUpdatedBlockIdMinCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdMinCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdMinGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_GROUP_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdMinGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_GROUP_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdMinIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdMinIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdMinMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_MEMBER_ASC', + AgentGroupMembershipsByUpdatedBlockIdMinMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_MEMBER_DESC', + AgentGroupMembershipsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_GROUP_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_GROUP_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMBER_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMBER_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_GROUP_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_GROUP_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMBER_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMBER_DESC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdSumBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AgentGroupMembershipsByUpdatedBlockIdSumBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AgentGroupMembershipsByUpdatedBlockIdSumCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AgentGroupMembershipsByUpdatedBlockIdSumCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AgentGroupMembershipsByUpdatedBlockIdSumCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdSumCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdSumGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_GROUP_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdSumGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_GROUP_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdSumIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdSumIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdSumMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_MEMBER_ASC', + AgentGroupMembershipsByUpdatedBlockIdSumMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_MEMBER_DESC', + AgentGroupMembershipsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_GROUP_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_GROUP_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMBER_ASC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMBER_DESC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleGroupIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_GROUP_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleGroupIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_GROUP_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleMemberAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMBER_ASC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleMemberDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMBER_DESC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AgentGroupMembershipsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'AGENT_GROUP_MEMBERSHIPS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdAverageBlockRangeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetsByCreatedBlockIdAverageBlockRangeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetsByCreatedBlockIdAverageCreatedAtAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetsByCreatedBlockIdAverageCreatedAtDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetsByCreatedBlockIdAverageCreatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdAverageCreatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdAverageEventIdxAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + AssetsByCreatedBlockIdAverageEventIdxDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + AssetsByCreatedBlockIdAverageFundingRoundAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_ASC', + AssetsByCreatedBlockIdAverageFundingRoundDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_DESC', + AssetsByCreatedBlockIdAverageIdentifiersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTIFIERS_ASC', + AssetsByCreatedBlockIdAverageIdentifiersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTIFIERS_DESC', + AssetsByCreatedBlockIdAverageIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetsByCreatedBlockIdAverageIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetsByCreatedBlockIdAverageIsCompliancePausedAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_COMPLIANCE_PAUSED_ASC', + AssetsByCreatedBlockIdAverageIsCompliancePausedDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_COMPLIANCE_PAUSED_DESC', + AssetsByCreatedBlockIdAverageIsDivisibleAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_DIVISIBLE_ASC', + AssetsByCreatedBlockIdAverageIsDivisibleDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_DIVISIBLE_DESC', + AssetsByCreatedBlockIdAverageIsFrozenAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_FROZEN_ASC', + AssetsByCreatedBlockIdAverageIsFrozenDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_FROZEN_DESC', + AssetsByCreatedBlockIdAverageIsNftCollectionAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_NFT_COLLECTION_ASC', + AssetsByCreatedBlockIdAverageIsNftCollectionDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_NFT_COLLECTION_DESC', + AssetsByCreatedBlockIdAverageIsUniquenessRequiredAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByCreatedBlockIdAverageIsUniquenessRequiredDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByCreatedBlockIdAverageNameAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_NAME_ASC', + AssetsByCreatedBlockIdAverageNameDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_NAME_DESC', + AssetsByCreatedBlockIdAverageOwnerIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_OWNER_ID_ASC', + AssetsByCreatedBlockIdAverageOwnerIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_OWNER_ID_DESC', + AssetsByCreatedBlockIdAverageTickerAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TICKER_ASC', + AssetsByCreatedBlockIdAverageTickerDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TICKER_DESC', + AssetsByCreatedBlockIdAverageTotalSupplyAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_SUPPLY_ASC', + AssetsByCreatedBlockIdAverageTotalSupplyDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_SUPPLY_DESC', + AssetsByCreatedBlockIdAverageTotalTransfersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_TRANSFERS_ASC', + AssetsByCreatedBlockIdAverageTotalTransfersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_TRANSFERS_DESC', + AssetsByCreatedBlockIdAverageTypeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_ASC', + AssetsByCreatedBlockIdAverageTypeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_DESC', + AssetsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdCountAsc = 'ASSETS_BY_CREATED_BLOCK_ID_COUNT_ASC', + AssetsByCreatedBlockIdCountDesc = 'ASSETS_BY_CREATED_BLOCK_ID_COUNT_DESC', + AssetsByCreatedBlockIdDistinctCountBlockRangeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetsByCreatedBlockIdDistinctCountBlockRangeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetsByCreatedBlockIdDistinctCountCreatedAtAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetsByCreatedBlockIdDistinctCountCreatedAtDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdDistinctCountEventIdxAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + AssetsByCreatedBlockIdDistinctCountEventIdxDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + AssetsByCreatedBlockIdDistinctCountFundingRoundAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_ASC', + AssetsByCreatedBlockIdDistinctCountFundingRoundDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC', + AssetsByCreatedBlockIdDistinctCountIdentifiersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTIFIERS_ASC', + AssetsByCreatedBlockIdDistinctCountIdentifiersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTIFIERS_DESC', + AssetsByCreatedBlockIdDistinctCountIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetsByCreatedBlockIdDistinctCountIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetsByCreatedBlockIdDistinctCountIsCompliancePausedAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_COMPLIANCE_PAUSED_ASC', + AssetsByCreatedBlockIdDistinctCountIsCompliancePausedDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_COMPLIANCE_PAUSED_DESC', + AssetsByCreatedBlockIdDistinctCountIsDivisibleAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_DIVISIBLE_ASC', + AssetsByCreatedBlockIdDistinctCountIsDivisibleDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_DIVISIBLE_DESC', + AssetsByCreatedBlockIdDistinctCountIsFrozenAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_FROZEN_ASC', + AssetsByCreatedBlockIdDistinctCountIsFrozenDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_FROZEN_DESC', + AssetsByCreatedBlockIdDistinctCountIsNftCollectionAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_NFT_COLLECTION_ASC', + AssetsByCreatedBlockIdDistinctCountIsNftCollectionDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_NFT_COLLECTION_DESC', + AssetsByCreatedBlockIdDistinctCountIsUniquenessRequiredAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByCreatedBlockIdDistinctCountIsUniquenessRequiredDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByCreatedBlockIdDistinctCountNameAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC', + AssetsByCreatedBlockIdDistinctCountNameDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC', + AssetsByCreatedBlockIdDistinctCountOwnerIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_ASC', + AssetsByCreatedBlockIdDistinctCountOwnerIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_DESC', + AssetsByCreatedBlockIdDistinctCountTickerAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TICKER_ASC', + AssetsByCreatedBlockIdDistinctCountTickerDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TICKER_DESC', + AssetsByCreatedBlockIdDistinctCountTotalSupplyAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_SUPPLY_ASC', + AssetsByCreatedBlockIdDistinctCountTotalSupplyDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_SUPPLY_DESC', + AssetsByCreatedBlockIdDistinctCountTotalTransfersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_TRANSFERS_ASC', + AssetsByCreatedBlockIdDistinctCountTotalTransfersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_TRANSFERS_DESC', + AssetsByCreatedBlockIdDistinctCountTypeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + AssetsByCreatedBlockIdDistinctCountTypeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + AssetsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdMaxBlockRangeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetsByCreatedBlockIdMaxBlockRangeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetsByCreatedBlockIdMaxCreatedAtAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetsByCreatedBlockIdMaxCreatedAtDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetsByCreatedBlockIdMaxCreatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdMaxCreatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdMaxEventIdxAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + AssetsByCreatedBlockIdMaxEventIdxDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + AssetsByCreatedBlockIdMaxFundingRoundAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_FUNDING_ROUND_ASC', + AssetsByCreatedBlockIdMaxFundingRoundDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_FUNDING_ROUND_DESC', + AssetsByCreatedBlockIdMaxIdentifiersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IDENTIFIERS_ASC', + AssetsByCreatedBlockIdMaxIdentifiersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IDENTIFIERS_DESC', + AssetsByCreatedBlockIdMaxIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + AssetsByCreatedBlockIdMaxIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + AssetsByCreatedBlockIdMaxIsCompliancePausedAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_COMPLIANCE_PAUSED_ASC', + AssetsByCreatedBlockIdMaxIsCompliancePausedDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_COMPLIANCE_PAUSED_DESC', + AssetsByCreatedBlockIdMaxIsDivisibleAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_DIVISIBLE_ASC', + AssetsByCreatedBlockIdMaxIsDivisibleDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_DIVISIBLE_DESC', + AssetsByCreatedBlockIdMaxIsFrozenAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_FROZEN_ASC', + AssetsByCreatedBlockIdMaxIsFrozenDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_FROZEN_DESC', + AssetsByCreatedBlockIdMaxIsNftCollectionAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_NFT_COLLECTION_ASC', + AssetsByCreatedBlockIdMaxIsNftCollectionDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_NFT_COLLECTION_DESC', + AssetsByCreatedBlockIdMaxIsUniquenessRequiredAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByCreatedBlockIdMaxIsUniquenessRequiredDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByCreatedBlockIdMaxNameAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_NAME_ASC', + AssetsByCreatedBlockIdMaxNameDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_NAME_DESC', + AssetsByCreatedBlockIdMaxOwnerIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_OWNER_ID_ASC', + AssetsByCreatedBlockIdMaxOwnerIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_OWNER_ID_DESC', + AssetsByCreatedBlockIdMaxTickerAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_TICKER_ASC', + AssetsByCreatedBlockIdMaxTickerDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_TICKER_DESC', + AssetsByCreatedBlockIdMaxTotalSupplyAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_TOTAL_SUPPLY_ASC', + AssetsByCreatedBlockIdMaxTotalSupplyDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_TOTAL_SUPPLY_DESC', + AssetsByCreatedBlockIdMaxTotalTransfersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_TOTAL_TRANSFERS_ASC', + AssetsByCreatedBlockIdMaxTotalTransfersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_TOTAL_TRANSFERS_DESC', + AssetsByCreatedBlockIdMaxTypeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_TYPE_ASC', + AssetsByCreatedBlockIdMaxTypeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_TYPE_DESC', + AssetsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdMinBlockRangeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetsByCreatedBlockIdMinBlockRangeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetsByCreatedBlockIdMinCreatedAtAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetsByCreatedBlockIdMinCreatedAtDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetsByCreatedBlockIdMinCreatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdMinCreatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdMinEventIdxAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + AssetsByCreatedBlockIdMinEventIdxDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + AssetsByCreatedBlockIdMinFundingRoundAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_FUNDING_ROUND_ASC', + AssetsByCreatedBlockIdMinFundingRoundDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_FUNDING_ROUND_DESC', + AssetsByCreatedBlockIdMinIdentifiersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IDENTIFIERS_ASC', + AssetsByCreatedBlockIdMinIdentifiersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IDENTIFIERS_DESC', + AssetsByCreatedBlockIdMinIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + AssetsByCreatedBlockIdMinIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + AssetsByCreatedBlockIdMinIsCompliancePausedAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_COMPLIANCE_PAUSED_ASC', + AssetsByCreatedBlockIdMinIsCompliancePausedDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_COMPLIANCE_PAUSED_DESC', + AssetsByCreatedBlockIdMinIsDivisibleAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_DIVISIBLE_ASC', + AssetsByCreatedBlockIdMinIsDivisibleDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_DIVISIBLE_DESC', + AssetsByCreatedBlockIdMinIsFrozenAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_FROZEN_ASC', + AssetsByCreatedBlockIdMinIsFrozenDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_FROZEN_DESC', + AssetsByCreatedBlockIdMinIsNftCollectionAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_NFT_COLLECTION_ASC', + AssetsByCreatedBlockIdMinIsNftCollectionDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_NFT_COLLECTION_DESC', + AssetsByCreatedBlockIdMinIsUniquenessRequiredAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByCreatedBlockIdMinIsUniquenessRequiredDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByCreatedBlockIdMinNameAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_NAME_ASC', + AssetsByCreatedBlockIdMinNameDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_NAME_DESC', + AssetsByCreatedBlockIdMinOwnerIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_OWNER_ID_ASC', + AssetsByCreatedBlockIdMinOwnerIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_OWNER_ID_DESC', + AssetsByCreatedBlockIdMinTickerAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_TICKER_ASC', + AssetsByCreatedBlockIdMinTickerDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_TICKER_DESC', + AssetsByCreatedBlockIdMinTotalSupplyAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_TOTAL_SUPPLY_ASC', + AssetsByCreatedBlockIdMinTotalSupplyDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_TOTAL_SUPPLY_DESC', + AssetsByCreatedBlockIdMinTotalTransfersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_TOTAL_TRANSFERS_ASC', + AssetsByCreatedBlockIdMinTotalTransfersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_TOTAL_TRANSFERS_DESC', + AssetsByCreatedBlockIdMinTypeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_TYPE_ASC', + AssetsByCreatedBlockIdMinTypeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_TYPE_DESC', + AssetsByCreatedBlockIdMinUpdatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdMinUpdatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdStddevPopulationEventIdxAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + AssetsByCreatedBlockIdStddevPopulationEventIdxDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + AssetsByCreatedBlockIdStddevPopulationFundingRoundAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_ASC', + AssetsByCreatedBlockIdStddevPopulationFundingRoundDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC', + AssetsByCreatedBlockIdStddevPopulationIdentifiersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTIFIERS_ASC', + AssetsByCreatedBlockIdStddevPopulationIdentifiersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTIFIERS_DESC', + AssetsByCreatedBlockIdStddevPopulationIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetsByCreatedBlockIdStddevPopulationIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetsByCreatedBlockIdStddevPopulationIsCompliancePausedAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_COMPLIANCE_PAUSED_ASC', + AssetsByCreatedBlockIdStddevPopulationIsCompliancePausedDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_COMPLIANCE_PAUSED_DESC', + AssetsByCreatedBlockIdStddevPopulationIsDivisibleAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_DIVISIBLE_ASC', + AssetsByCreatedBlockIdStddevPopulationIsDivisibleDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_DIVISIBLE_DESC', + AssetsByCreatedBlockIdStddevPopulationIsFrozenAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_FROZEN_ASC', + AssetsByCreatedBlockIdStddevPopulationIsFrozenDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_FROZEN_DESC', + AssetsByCreatedBlockIdStddevPopulationIsNftCollectionAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_NFT_COLLECTION_ASC', + AssetsByCreatedBlockIdStddevPopulationIsNftCollectionDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_NFT_COLLECTION_DESC', + AssetsByCreatedBlockIdStddevPopulationIsUniquenessRequiredAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByCreatedBlockIdStddevPopulationIsUniquenessRequiredDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByCreatedBlockIdStddevPopulationNameAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC', + AssetsByCreatedBlockIdStddevPopulationNameDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC', + AssetsByCreatedBlockIdStddevPopulationOwnerIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_ASC', + AssetsByCreatedBlockIdStddevPopulationOwnerIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_DESC', + AssetsByCreatedBlockIdStddevPopulationTickerAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TICKER_ASC', + AssetsByCreatedBlockIdStddevPopulationTickerDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TICKER_DESC', + AssetsByCreatedBlockIdStddevPopulationTotalSupplyAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_SUPPLY_ASC', + AssetsByCreatedBlockIdStddevPopulationTotalSupplyDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_SUPPLY_DESC', + AssetsByCreatedBlockIdStddevPopulationTotalTransfersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_TRANSFERS_ASC', + AssetsByCreatedBlockIdStddevPopulationTotalTransfersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_TRANSFERS_DESC', + AssetsByCreatedBlockIdStddevPopulationTypeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + AssetsByCreatedBlockIdStddevPopulationTypeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + AssetsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdStddevSampleBlockRangeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetsByCreatedBlockIdStddevSampleBlockRangeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetsByCreatedBlockIdStddevSampleCreatedAtAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetsByCreatedBlockIdStddevSampleCreatedAtDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdStddevSampleEventIdxAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + AssetsByCreatedBlockIdStddevSampleEventIdxDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + AssetsByCreatedBlockIdStddevSampleFundingRoundAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + AssetsByCreatedBlockIdStddevSampleFundingRoundDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + AssetsByCreatedBlockIdStddevSampleIdentifiersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTIFIERS_ASC', + AssetsByCreatedBlockIdStddevSampleIdentifiersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTIFIERS_DESC', + AssetsByCreatedBlockIdStddevSampleIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetsByCreatedBlockIdStddevSampleIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetsByCreatedBlockIdStddevSampleIsCompliancePausedAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_COMPLIANCE_PAUSED_ASC', + AssetsByCreatedBlockIdStddevSampleIsCompliancePausedDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_COMPLIANCE_PAUSED_DESC', + AssetsByCreatedBlockIdStddevSampleIsDivisibleAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_DIVISIBLE_ASC', + AssetsByCreatedBlockIdStddevSampleIsDivisibleDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_DIVISIBLE_DESC', + AssetsByCreatedBlockIdStddevSampleIsFrozenAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_FROZEN_ASC', + AssetsByCreatedBlockIdStddevSampleIsFrozenDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_FROZEN_DESC', + AssetsByCreatedBlockIdStddevSampleIsNftCollectionAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_NFT_COLLECTION_ASC', + AssetsByCreatedBlockIdStddevSampleIsNftCollectionDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_NFT_COLLECTION_DESC', + AssetsByCreatedBlockIdStddevSampleIsUniquenessRequiredAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByCreatedBlockIdStddevSampleIsUniquenessRequiredDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByCreatedBlockIdStddevSampleNameAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC', + AssetsByCreatedBlockIdStddevSampleNameDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC', + AssetsByCreatedBlockIdStddevSampleOwnerIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_ASC', + AssetsByCreatedBlockIdStddevSampleOwnerIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_DESC', + AssetsByCreatedBlockIdStddevSampleTickerAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_ASC', + AssetsByCreatedBlockIdStddevSampleTickerDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_DESC', + AssetsByCreatedBlockIdStddevSampleTotalSupplyAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_ASC', + AssetsByCreatedBlockIdStddevSampleTotalSupplyDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_DESC', + AssetsByCreatedBlockIdStddevSampleTotalTransfersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_TRANSFERS_ASC', + AssetsByCreatedBlockIdStddevSampleTotalTransfersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_TRANSFERS_DESC', + AssetsByCreatedBlockIdStddevSampleTypeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + AssetsByCreatedBlockIdStddevSampleTypeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + AssetsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdSumBlockRangeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetsByCreatedBlockIdSumBlockRangeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetsByCreatedBlockIdSumCreatedAtAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetsByCreatedBlockIdSumCreatedAtDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetsByCreatedBlockIdSumCreatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdSumCreatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdSumEventIdxAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + AssetsByCreatedBlockIdSumEventIdxDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + AssetsByCreatedBlockIdSumFundingRoundAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_FUNDING_ROUND_ASC', + AssetsByCreatedBlockIdSumFundingRoundDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_FUNDING_ROUND_DESC', + AssetsByCreatedBlockIdSumIdentifiersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IDENTIFIERS_ASC', + AssetsByCreatedBlockIdSumIdentifiersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IDENTIFIERS_DESC', + AssetsByCreatedBlockIdSumIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + AssetsByCreatedBlockIdSumIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + AssetsByCreatedBlockIdSumIsCompliancePausedAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_COMPLIANCE_PAUSED_ASC', + AssetsByCreatedBlockIdSumIsCompliancePausedDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_COMPLIANCE_PAUSED_DESC', + AssetsByCreatedBlockIdSumIsDivisibleAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_DIVISIBLE_ASC', + AssetsByCreatedBlockIdSumIsDivisibleDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_DIVISIBLE_DESC', + AssetsByCreatedBlockIdSumIsFrozenAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_FROZEN_ASC', + AssetsByCreatedBlockIdSumIsFrozenDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_FROZEN_DESC', + AssetsByCreatedBlockIdSumIsNftCollectionAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_NFT_COLLECTION_ASC', + AssetsByCreatedBlockIdSumIsNftCollectionDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_NFT_COLLECTION_DESC', + AssetsByCreatedBlockIdSumIsUniquenessRequiredAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByCreatedBlockIdSumIsUniquenessRequiredDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByCreatedBlockIdSumNameAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_NAME_ASC', + AssetsByCreatedBlockIdSumNameDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_NAME_DESC', + AssetsByCreatedBlockIdSumOwnerIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_OWNER_ID_ASC', + AssetsByCreatedBlockIdSumOwnerIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_OWNER_ID_DESC', + AssetsByCreatedBlockIdSumTickerAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_TICKER_ASC', + AssetsByCreatedBlockIdSumTickerDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_TICKER_DESC', + AssetsByCreatedBlockIdSumTotalSupplyAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_TOTAL_SUPPLY_ASC', + AssetsByCreatedBlockIdSumTotalSupplyDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_TOTAL_SUPPLY_DESC', + AssetsByCreatedBlockIdSumTotalTransfersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_TOTAL_TRANSFERS_ASC', + AssetsByCreatedBlockIdSumTotalTransfersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_TOTAL_TRANSFERS_DESC', + AssetsByCreatedBlockIdSumTypeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_TYPE_ASC', + AssetsByCreatedBlockIdSumTypeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_TYPE_DESC', + AssetsByCreatedBlockIdSumUpdatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdSumUpdatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdVariancePopulationEventIdxAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + AssetsByCreatedBlockIdVariancePopulationEventIdxDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + AssetsByCreatedBlockIdVariancePopulationFundingRoundAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + AssetsByCreatedBlockIdVariancePopulationFundingRoundDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + AssetsByCreatedBlockIdVariancePopulationIdentifiersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTIFIERS_ASC', + AssetsByCreatedBlockIdVariancePopulationIdentifiersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTIFIERS_DESC', + AssetsByCreatedBlockIdVariancePopulationIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetsByCreatedBlockIdVariancePopulationIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetsByCreatedBlockIdVariancePopulationIsCompliancePausedAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_COMPLIANCE_PAUSED_ASC', + AssetsByCreatedBlockIdVariancePopulationIsCompliancePausedDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_COMPLIANCE_PAUSED_DESC', + AssetsByCreatedBlockIdVariancePopulationIsDivisibleAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_DIVISIBLE_ASC', + AssetsByCreatedBlockIdVariancePopulationIsDivisibleDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_DIVISIBLE_DESC', + AssetsByCreatedBlockIdVariancePopulationIsFrozenAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_FROZEN_ASC', + AssetsByCreatedBlockIdVariancePopulationIsFrozenDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_FROZEN_DESC', + AssetsByCreatedBlockIdVariancePopulationIsNftCollectionAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_NFT_COLLECTION_ASC', + AssetsByCreatedBlockIdVariancePopulationIsNftCollectionDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_NFT_COLLECTION_DESC', + AssetsByCreatedBlockIdVariancePopulationIsUniquenessRequiredAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByCreatedBlockIdVariancePopulationIsUniquenessRequiredDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByCreatedBlockIdVariancePopulationNameAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC', + AssetsByCreatedBlockIdVariancePopulationNameDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC', + AssetsByCreatedBlockIdVariancePopulationOwnerIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_ASC', + AssetsByCreatedBlockIdVariancePopulationOwnerIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_DESC', + AssetsByCreatedBlockIdVariancePopulationTickerAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_ASC', + AssetsByCreatedBlockIdVariancePopulationTickerDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_DESC', + AssetsByCreatedBlockIdVariancePopulationTotalSupplyAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_ASC', + AssetsByCreatedBlockIdVariancePopulationTotalSupplyDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_DESC', + AssetsByCreatedBlockIdVariancePopulationTotalTransfersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_TRANSFERS_ASC', + AssetsByCreatedBlockIdVariancePopulationTotalTransfersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_TRANSFERS_DESC', + AssetsByCreatedBlockIdVariancePopulationTypeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + AssetsByCreatedBlockIdVariancePopulationTypeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + AssetsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetsByCreatedBlockIdVarianceSampleEventIdxAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + AssetsByCreatedBlockIdVarianceSampleEventIdxDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + AssetsByCreatedBlockIdVarianceSampleFundingRoundAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + AssetsByCreatedBlockIdVarianceSampleFundingRoundDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + AssetsByCreatedBlockIdVarianceSampleIdentifiersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTIFIERS_ASC', + AssetsByCreatedBlockIdVarianceSampleIdentifiersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTIFIERS_DESC', + AssetsByCreatedBlockIdVarianceSampleIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetsByCreatedBlockIdVarianceSampleIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetsByCreatedBlockIdVarianceSampleIsCompliancePausedAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_COMPLIANCE_PAUSED_ASC', + AssetsByCreatedBlockIdVarianceSampleIsCompliancePausedDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_COMPLIANCE_PAUSED_DESC', + AssetsByCreatedBlockIdVarianceSampleIsDivisibleAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_DIVISIBLE_ASC', + AssetsByCreatedBlockIdVarianceSampleIsDivisibleDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_DIVISIBLE_DESC', + AssetsByCreatedBlockIdVarianceSampleIsFrozenAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_FROZEN_ASC', + AssetsByCreatedBlockIdVarianceSampleIsFrozenDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_FROZEN_DESC', + AssetsByCreatedBlockIdVarianceSampleIsNftCollectionAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_NFT_COLLECTION_ASC', + AssetsByCreatedBlockIdVarianceSampleIsNftCollectionDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_NFT_COLLECTION_DESC', + AssetsByCreatedBlockIdVarianceSampleIsUniquenessRequiredAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByCreatedBlockIdVarianceSampleIsUniquenessRequiredDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByCreatedBlockIdVarianceSampleNameAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC', + AssetsByCreatedBlockIdVarianceSampleNameDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC', + AssetsByCreatedBlockIdVarianceSampleOwnerIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_ASC', + AssetsByCreatedBlockIdVarianceSampleOwnerIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_DESC', + AssetsByCreatedBlockIdVarianceSampleTickerAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_ASC', + AssetsByCreatedBlockIdVarianceSampleTickerDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_DESC', + AssetsByCreatedBlockIdVarianceSampleTotalSupplyAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_ASC', + AssetsByCreatedBlockIdVarianceSampleTotalSupplyDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_DESC', + AssetsByCreatedBlockIdVarianceSampleTotalTransfersAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_TRANSFERS_ASC', + AssetsByCreatedBlockIdVarianceSampleTotalTransfersDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_TRANSFERS_DESC', + AssetsByCreatedBlockIdVarianceSampleTypeAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + AssetsByCreatedBlockIdVarianceSampleTypeDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + AssetsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdAverageBlockRangeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetsByUpdatedBlockIdAverageBlockRangeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetsByUpdatedBlockIdAverageCreatedAtAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetsByUpdatedBlockIdAverageCreatedAtDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdAverageEventIdxAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + AssetsByUpdatedBlockIdAverageEventIdxDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + AssetsByUpdatedBlockIdAverageFundingRoundAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_ASC', + AssetsByUpdatedBlockIdAverageFundingRoundDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_DESC', + AssetsByUpdatedBlockIdAverageIdentifiersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTIFIERS_ASC', + AssetsByUpdatedBlockIdAverageIdentifiersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTIFIERS_DESC', + AssetsByUpdatedBlockIdAverageIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetsByUpdatedBlockIdAverageIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetsByUpdatedBlockIdAverageIsCompliancePausedAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_COMPLIANCE_PAUSED_ASC', + AssetsByUpdatedBlockIdAverageIsCompliancePausedDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_COMPLIANCE_PAUSED_DESC', + AssetsByUpdatedBlockIdAverageIsDivisibleAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_DIVISIBLE_ASC', + AssetsByUpdatedBlockIdAverageIsDivisibleDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_DIVISIBLE_DESC', + AssetsByUpdatedBlockIdAverageIsFrozenAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_FROZEN_ASC', + AssetsByUpdatedBlockIdAverageIsFrozenDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_FROZEN_DESC', + AssetsByUpdatedBlockIdAverageIsNftCollectionAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_NFT_COLLECTION_ASC', + AssetsByUpdatedBlockIdAverageIsNftCollectionDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_NFT_COLLECTION_DESC', + AssetsByUpdatedBlockIdAverageIsUniquenessRequiredAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByUpdatedBlockIdAverageIsUniquenessRequiredDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByUpdatedBlockIdAverageNameAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_ASC', + AssetsByUpdatedBlockIdAverageNameDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_DESC', + AssetsByUpdatedBlockIdAverageOwnerIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_OWNER_ID_ASC', + AssetsByUpdatedBlockIdAverageOwnerIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_OWNER_ID_DESC', + AssetsByUpdatedBlockIdAverageTickerAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TICKER_ASC', + AssetsByUpdatedBlockIdAverageTickerDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TICKER_DESC', + AssetsByUpdatedBlockIdAverageTotalSupplyAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_SUPPLY_ASC', + AssetsByUpdatedBlockIdAverageTotalSupplyDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_SUPPLY_DESC', + AssetsByUpdatedBlockIdAverageTotalTransfersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_TRANSFERS_ASC', + AssetsByUpdatedBlockIdAverageTotalTransfersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_TRANSFERS_DESC', + AssetsByUpdatedBlockIdAverageTypeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_ASC', + AssetsByUpdatedBlockIdAverageTypeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_DESC', + AssetsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdCountAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + AssetsByUpdatedBlockIdCountDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + AssetsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdDistinctCountEventIdxAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + AssetsByUpdatedBlockIdDistinctCountEventIdxDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + AssetsByUpdatedBlockIdDistinctCountFundingRoundAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_ASC', + AssetsByUpdatedBlockIdDistinctCountFundingRoundDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC', + AssetsByUpdatedBlockIdDistinctCountIdentifiersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTIFIERS_ASC', + AssetsByUpdatedBlockIdDistinctCountIdentifiersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTIFIERS_DESC', + AssetsByUpdatedBlockIdDistinctCountIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetsByUpdatedBlockIdDistinctCountIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetsByUpdatedBlockIdDistinctCountIsCompliancePausedAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_COMPLIANCE_PAUSED_ASC', + AssetsByUpdatedBlockIdDistinctCountIsCompliancePausedDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_COMPLIANCE_PAUSED_DESC', + AssetsByUpdatedBlockIdDistinctCountIsDivisibleAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_DIVISIBLE_ASC', + AssetsByUpdatedBlockIdDistinctCountIsDivisibleDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_DIVISIBLE_DESC', + AssetsByUpdatedBlockIdDistinctCountIsFrozenAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_FROZEN_ASC', + AssetsByUpdatedBlockIdDistinctCountIsFrozenDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_FROZEN_DESC', + AssetsByUpdatedBlockIdDistinctCountIsNftCollectionAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_NFT_COLLECTION_ASC', + AssetsByUpdatedBlockIdDistinctCountIsNftCollectionDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_NFT_COLLECTION_DESC', + AssetsByUpdatedBlockIdDistinctCountIsUniquenessRequiredAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByUpdatedBlockIdDistinctCountIsUniquenessRequiredDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByUpdatedBlockIdDistinctCountNameAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC', + AssetsByUpdatedBlockIdDistinctCountNameDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC', + AssetsByUpdatedBlockIdDistinctCountOwnerIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_ASC', + AssetsByUpdatedBlockIdDistinctCountOwnerIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_DESC', + AssetsByUpdatedBlockIdDistinctCountTickerAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TICKER_ASC', + AssetsByUpdatedBlockIdDistinctCountTickerDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TICKER_DESC', + AssetsByUpdatedBlockIdDistinctCountTotalSupplyAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_SUPPLY_ASC', + AssetsByUpdatedBlockIdDistinctCountTotalSupplyDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_SUPPLY_DESC', + AssetsByUpdatedBlockIdDistinctCountTotalTransfersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_TRANSFERS_ASC', + AssetsByUpdatedBlockIdDistinctCountTotalTransfersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_TRANSFERS_DESC', + AssetsByUpdatedBlockIdDistinctCountTypeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + AssetsByUpdatedBlockIdDistinctCountTypeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + AssetsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdMaxBlockRangeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetsByUpdatedBlockIdMaxBlockRangeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetsByUpdatedBlockIdMaxCreatedAtAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetsByUpdatedBlockIdMaxCreatedAtDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdMaxEventIdxAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + AssetsByUpdatedBlockIdMaxEventIdxDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + AssetsByUpdatedBlockIdMaxFundingRoundAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_FUNDING_ROUND_ASC', + AssetsByUpdatedBlockIdMaxFundingRoundDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_FUNDING_ROUND_DESC', + AssetsByUpdatedBlockIdMaxIdentifiersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IDENTIFIERS_ASC', + AssetsByUpdatedBlockIdMaxIdentifiersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IDENTIFIERS_DESC', + AssetsByUpdatedBlockIdMaxIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + AssetsByUpdatedBlockIdMaxIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + AssetsByUpdatedBlockIdMaxIsCompliancePausedAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_COMPLIANCE_PAUSED_ASC', + AssetsByUpdatedBlockIdMaxIsCompliancePausedDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_COMPLIANCE_PAUSED_DESC', + AssetsByUpdatedBlockIdMaxIsDivisibleAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_DIVISIBLE_ASC', + AssetsByUpdatedBlockIdMaxIsDivisibleDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_DIVISIBLE_DESC', + AssetsByUpdatedBlockIdMaxIsFrozenAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_FROZEN_ASC', + AssetsByUpdatedBlockIdMaxIsFrozenDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_FROZEN_DESC', + AssetsByUpdatedBlockIdMaxIsNftCollectionAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_NFT_COLLECTION_ASC', + AssetsByUpdatedBlockIdMaxIsNftCollectionDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_NFT_COLLECTION_DESC', + AssetsByUpdatedBlockIdMaxIsUniquenessRequiredAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByUpdatedBlockIdMaxIsUniquenessRequiredDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByUpdatedBlockIdMaxNameAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_NAME_ASC', + AssetsByUpdatedBlockIdMaxNameDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_NAME_DESC', + AssetsByUpdatedBlockIdMaxOwnerIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_OWNER_ID_ASC', + AssetsByUpdatedBlockIdMaxOwnerIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_OWNER_ID_DESC', + AssetsByUpdatedBlockIdMaxTickerAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_TICKER_ASC', + AssetsByUpdatedBlockIdMaxTickerDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_TICKER_DESC', + AssetsByUpdatedBlockIdMaxTotalSupplyAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_SUPPLY_ASC', + AssetsByUpdatedBlockIdMaxTotalSupplyDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_SUPPLY_DESC', + AssetsByUpdatedBlockIdMaxTotalTransfersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_TRANSFERS_ASC', + AssetsByUpdatedBlockIdMaxTotalTransfersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_TRANSFERS_DESC', + AssetsByUpdatedBlockIdMaxTypeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_TYPE_ASC', + AssetsByUpdatedBlockIdMaxTypeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_TYPE_DESC', + AssetsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdMinBlockRangeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetsByUpdatedBlockIdMinBlockRangeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetsByUpdatedBlockIdMinCreatedAtAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetsByUpdatedBlockIdMinCreatedAtDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetsByUpdatedBlockIdMinCreatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdMinCreatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdMinEventIdxAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + AssetsByUpdatedBlockIdMinEventIdxDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + AssetsByUpdatedBlockIdMinFundingRoundAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_FUNDING_ROUND_ASC', + AssetsByUpdatedBlockIdMinFundingRoundDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_FUNDING_ROUND_DESC', + AssetsByUpdatedBlockIdMinIdentifiersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IDENTIFIERS_ASC', + AssetsByUpdatedBlockIdMinIdentifiersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IDENTIFIERS_DESC', + AssetsByUpdatedBlockIdMinIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + AssetsByUpdatedBlockIdMinIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + AssetsByUpdatedBlockIdMinIsCompliancePausedAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_COMPLIANCE_PAUSED_ASC', + AssetsByUpdatedBlockIdMinIsCompliancePausedDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_COMPLIANCE_PAUSED_DESC', + AssetsByUpdatedBlockIdMinIsDivisibleAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_DIVISIBLE_ASC', + AssetsByUpdatedBlockIdMinIsDivisibleDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_DIVISIBLE_DESC', + AssetsByUpdatedBlockIdMinIsFrozenAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_FROZEN_ASC', + AssetsByUpdatedBlockIdMinIsFrozenDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_FROZEN_DESC', + AssetsByUpdatedBlockIdMinIsNftCollectionAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_NFT_COLLECTION_ASC', + AssetsByUpdatedBlockIdMinIsNftCollectionDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_NFT_COLLECTION_DESC', + AssetsByUpdatedBlockIdMinIsUniquenessRequiredAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByUpdatedBlockIdMinIsUniquenessRequiredDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByUpdatedBlockIdMinNameAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_NAME_ASC', + AssetsByUpdatedBlockIdMinNameDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_NAME_DESC', + AssetsByUpdatedBlockIdMinOwnerIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_OWNER_ID_ASC', + AssetsByUpdatedBlockIdMinOwnerIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_OWNER_ID_DESC', + AssetsByUpdatedBlockIdMinTickerAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_TICKER_ASC', + AssetsByUpdatedBlockIdMinTickerDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_TICKER_DESC', + AssetsByUpdatedBlockIdMinTotalSupplyAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_SUPPLY_ASC', + AssetsByUpdatedBlockIdMinTotalSupplyDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_SUPPLY_DESC', + AssetsByUpdatedBlockIdMinTotalTransfersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_TRANSFERS_ASC', + AssetsByUpdatedBlockIdMinTotalTransfersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_TRANSFERS_DESC', + AssetsByUpdatedBlockIdMinTypeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_TYPE_ASC', + AssetsByUpdatedBlockIdMinTypeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_TYPE_DESC', + AssetsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + AssetsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + AssetsByUpdatedBlockIdStddevPopulationFundingRoundAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_ASC', + AssetsByUpdatedBlockIdStddevPopulationFundingRoundDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC', + AssetsByUpdatedBlockIdStddevPopulationIdentifiersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTIFIERS_ASC', + AssetsByUpdatedBlockIdStddevPopulationIdentifiersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTIFIERS_DESC', + AssetsByUpdatedBlockIdStddevPopulationIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetsByUpdatedBlockIdStddevPopulationIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetsByUpdatedBlockIdStddevPopulationIsCompliancePausedAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_COMPLIANCE_PAUSED_ASC', + AssetsByUpdatedBlockIdStddevPopulationIsCompliancePausedDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_COMPLIANCE_PAUSED_DESC', + AssetsByUpdatedBlockIdStddevPopulationIsDivisibleAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_DIVISIBLE_ASC', + AssetsByUpdatedBlockIdStddevPopulationIsDivisibleDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_DIVISIBLE_DESC', + AssetsByUpdatedBlockIdStddevPopulationIsFrozenAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_FROZEN_ASC', + AssetsByUpdatedBlockIdStddevPopulationIsFrozenDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_FROZEN_DESC', + AssetsByUpdatedBlockIdStddevPopulationIsNftCollectionAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_NFT_COLLECTION_ASC', + AssetsByUpdatedBlockIdStddevPopulationIsNftCollectionDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_NFT_COLLECTION_DESC', + AssetsByUpdatedBlockIdStddevPopulationIsUniquenessRequiredAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByUpdatedBlockIdStddevPopulationIsUniquenessRequiredDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByUpdatedBlockIdStddevPopulationNameAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC', + AssetsByUpdatedBlockIdStddevPopulationNameDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC', + AssetsByUpdatedBlockIdStddevPopulationOwnerIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_ASC', + AssetsByUpdatedBlockIdStddevPopulationOwnerIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_DESC', + AssetsByUpdatedBlockIdStddevPopulationTickerAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TICKER_ASC', + AssetsByUpdatedBlockIdStddevPopulationTickerDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TICKER_DESC', + AssetsByUpdatedBlockIdStddevPopulationTotalSupplyAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_SUPPLY_ASC', + AssetsByUpdatedBlockIdStddevPopulationTotalSupplyDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_SUPPLY_DESC', + AssetsByUpdatedBlockIdStddevPopulationTotalTransfersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_TRANSFERS_ASC', + AssetsByUpdatedBlockIdStddevPopulationTotalTransfersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_TRANSFERS_DESC', + AssetsByUpdatedBlockIdStddevPopulationTypeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + AssetsByUpdatedBlockIdStddevPopulationTypeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + AssetsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdStddevSampleEventIdxAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + AssetsByUpdatedBlockIdStddevSampleEventIdxDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + AssetsByUpdatedBlockIdStddevSampleFundingRoundAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + AssetsByUpdatedBlockIdStddevSampleFundingRoundDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + AssetsByUpdatedBlockIdStddevSampleIdentifiersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTIFIERS_ASC', + AssetsByUpdatedBlockIdStddevSampleIdentifiersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTIFIERS_DESC', + AssetsByUpdatedBlockIdStddevSampleIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetsByUpdatedBlockIdStddevSampleIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetsByUpdatedBlockIdStddevSampleIsCompliancePausedAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_COMPLIANCE_PAUSED_ASC', + AssetsByUpdatedBlockIdStddevSampleIsCompliancePausedDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_COMPLIANCE_PAUSED_DESC', + AssetsByUpdatedBlockIdStddevSampleIsDivisibleAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_DIVISIBLE_ASC', + AssetsByUpdatedBlockIdStddevSampleIsDivisibleDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_DIVISIBLE_DESC', + AssetsByUpdatedBlockIdStddevSampleIsFrozenAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_FROZEN_ASC', + AssetsByUpdatedBlockIdStddevSampleIsFrozenDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_FROZEN_DESC', + AssetsByUpdatedBlockIdStddevSampleIsNftCollectionAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_NFT_COLLECTION_ASC', + AssetsByUpdatedBlockIdStddevSampleIsNftCollectionDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_NFT_COLLECTION_DESC', + AssetsByUpdatedBlockIdStddevSampleIsUniquenessRequiredAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByUpdatedBlockIdStddevSampleIsUniquenessRequiredDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByUpdatedBlockIdStddevSampleNameAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC', + AssetsByUpdatedBlockIdStddevSampleNameDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC', + AssetsByUpdatedBlockIdStddevSampleOwnerIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_ASC', + AssetsByUpdatedBlockIdStddevSampleOwnerIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_DESC', + AssetsByUpdatedBlockIdStddevSampleTickerAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_ASC', + AssetsByUpdatedBlockIdStddevSampleTickerDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_DESC', + AssetsByUpdatedBlockIdStddevSampleTotalSupplyAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_ASC', + AssetsByUpdatedBlockIdStddevSampleTotalSupplyDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_DESC', + AssetsByUpdatedBlockIdStddevSampleTotalTransfersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_TRANSFERS_ASC', + AssetsByUpdatedBlockIdStddevSampleTotalTransfersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_TRANSFERS_DESC', + AssetsByUpdatedBlockIdStddevSampleTypeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + AssetsByUpdatedBlockIdStddevSampleTypeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + AssetsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdSumBlockRangeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetsByUpdatedBlockIdSumBlockRangeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetsByUpdatedBlockIdSumCreatedAtAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetsByUpdatedBlockIdSumCreatedAtDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetsByUpdatedBlockIdSumCreatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdSumCreatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdSumEventIdxAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + AssetsByUpdatedBlockIdSumEventIdxDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + AssetsByUpdatedBlockIdSumFundingRoundAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_FUNDING_ROUND_ASC', + AssetsByUpdatedBlockIdSumFundingRoundDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_FUNDING_ROUND_DESC', + AssetsByUpdatedBlockIdSumIdentifiersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IDENTIFIERS_ASC', + AssetsByUpdatedBlockIdSumIdentifiersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IDENTIFIERS_DESC', + AssetsByUpdatedBlockIdSumIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + AssetsByUpdatedBlockIdSumIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + AssetsByUpdatedBlockIdSumIsCompliancePausedAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_COMPLIANCE_PAUSED_ASC', + AssetsByUpdatedBlockIdSumIsCompliancePausedDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_COMPLIANCE_PAUSED_DESC', + AssetsByUpdatedBlockIdSumIsDivisibleAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_DIVISIBLE_ASC', + AssetsByUpdatedBlockIdSumIsDivisibleDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_DIVISIBLE_DESC', + AssetsByUpdatedBlockIdSumIsFrozenAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_FROZEN_ASC', + AssetsByUpdatedBlockIdSumIsFrozenDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_FROZEN_DESC', + AssetsByUpdatedBlockIdSumIsNftCollectionAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_NFT_COLLECTION_ASC', + AssetsByUpdatedBlockIdSumIsNftCollectionDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_NFT_COLLECTION_DESC', + AssetsByUpdatedBlockIdSumIsUniquenessRequiredAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByUpdatedBlockIdSumIsUniquenessRequiredDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByUpdatedBlockIdSumNameAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_NAME_ASC', + AssetsByUpdatedBlockIdSumNameDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_NAME_DESC', + AssetsByUpdatedBlockIdSumOwnerIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_OWNER_ID_ASC', + AssetsByUpdatedBlockIdSumOwnerIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_OWNER_ID_DESC', + AssetsByUpdatedBlockIdSumTickerAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_TICKER_ASC', + AssetsByUpdatedBlockIdSumTickerDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_TICKER_DESC', + AssetsByUpdatedBlockIdSumTotalSupplyAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_SUPPLY_ASC', + AssetsByUpdatedBlockIdSumTotalSupplyDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_SUPPLY_DESC', + AssetsByUpdatedBlockIdSumTotalTransfersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_TRANSFERS_ASC', + AssetsByUpdatedBlockIdSumTotalTransfersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_TRANSFERS_DESC', + AssetsByUpdatedBlockIdSumTypeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_TYPE_ASC', + AssetsByUpdatedBlockIdSumTypeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_TYPE_DESC', + AssetsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + AssetsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + AssetsByUpdatedBlockIdVariancePopulationFundingRoundAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + AssetsByUpdatedBlockIdVariancePopulationFundingRoundDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + AssetsByUpdatedBlockIdVariancePopulationIdentifiersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTIFIERS_ASC', + AssetsByUpdatedBlockIdVariancePopulationIdentifiersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTIFIERS_DESC', + AssetsByUpdatedBlockIdVariancePopulationIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetsByUpdatedBlockIdVariancePopulationIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetsByUpdatedBlockIdVariancePopulationIsCompliancePausedAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_COMPLIANCE_PAUSED_ASC', + AssetsByUpdatedBlockIdVariancePopulationIsCompliancePausedDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_COMPLIANCE_PAUSED_DESC', + AssetsByUpdatedBlockIdVariancePopulationIsDivisibleAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_DIVISIBLE_ASC', + AssetsByUpdatedBlockIdVariancePopulationIsDivisibleDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_DIVISIBLE_DESC', + AssetsByUpdatedBlockIdVariancePopulationIsFrozenAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_FROZEN_ASC', + AssetsByUpdatedBlockIdVariancePopulationIsFrozenDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_FROZEN_DESC', + AssetsByUpdatedBlockIdVariancePopulationIsNftCollectionAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_NFT_COLLECTION_ASC', + AssetsByUpdatedBlockIdVariancePopulationIsNftCollectionDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_NFT_COLLECTION_DESC', + AssetsByUpdatedBlockIdVariancePopulationIsUniquenessRequiredAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByUpdatedBlockIdVariancePopulationIsUniquenessRequiredDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByUpdatedBlockIdVariancePopulationNameAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC', + AssetsByUpdatedBlockIdVariancePopulationNameDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC', + AssetsByUpdatedBlockIdVariancePopulationOwnerIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_ASC', + AssetsByUpdatedBlockIdVariancePopulationOwnerIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_DESC', + AssetsByUpdatedBlockIdVariancePopulationTickerAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_ASC', + AssetsByUpdatedBlockIdVariancePopulationTickerDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_DESC', + AssetsByUpdatedBlockIdVariancePopulationTotalSupplyAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_ASC', + AssetsByUpdatedBlockIdVariancePopulationTotalSupplyDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_DESC', + AssetsByUpdatedBlockIdVariancePopulationTotalTransfersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_TRANSFERS_ASC', + AssetsByUpdatedBlockIdVariancePopulationTotalTransfersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_TRANSFERS_DESC', + AssetsByUpdatedBlockIdVariancePopulationTypeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + AssetsByUpdatedBlockIdVariancePopulationTypeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + AssetsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + AssetsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + AssetsByUpdatedBlockIdVarianceSampleFundingRoundAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + AssetsByUpdatedBlockIdVarianceSampleFundingRoundDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + AssetsByUpdatedBlockIdVarianceSampleIdentifiersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTIFIERS_ASC', + AssetsByUpdatedBlockIdVarianceSampleIdentifiersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTIFIERS_DESC', + AssetsByUpdatedBlockIdVarianceSampleIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetsByUpdatedBlockIdVarianceSampleIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetsByUpdatedBlockIdVarianceSampleIsCompliancePausedAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_COMPLIANCE_PAUSED_ASC', + AssetsByUpdatedBlockIdVarianceSampleIsCompliancePausedDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_COMPLIANCE_PAUSED_DESC', + AssetsByUpdatedBlockIdVarianceSampleIsDivisibleAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_DIVISIBLE_ASC', + AssetsByUpdatedBlockIdVarianceSampleIsDivisibleDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_DIVISIBLE_DESC', + AssetsByUpdatedBlockIdVarianceSampleIsFrozenAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_FROZEN_ASC', + AssetsByUpdatedBlockIdVarianceSampleIsFrozenDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_FROZEN_DESC', + AssetsByUpdatedBlockIdVarianceSampleIsNftCollectionAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_NFT_COLLECTION_ASC', + AssetsByUpdatedBlockIdVarianceSampleIsNftCollectionDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_NFT_COLLECTION_DESC', + AssetsByUpdatedBlockIdVarianceSampleIsUniquenessRequiredAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByUpdatedBlockIdVarianceSampleIsUniquenessRequiredDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByUpdatedBlockIdVarianceSampleNameAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC', + AssetsByUpdatedBlockIdVarianceSampleNameDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC', + AssetsByUpdatedBlockIdVarianceSampleOwnerIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_ASC', + AssetsByUpdatedBlockIdVarianceSampleOwnerIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_DESC', + AssetsByUpdatedBlockIdVarianceSampleTickerAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_ASC', + AssetsByUpdatedBlockIdVarianceSampleTickerDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_DESC', + AssetsByUpdatedBlockIdVarianceSampleTotalSupplyAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_ASC', + AssetsByUpdatedBlockIdVarianceSampleTotalSupplyDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_DESC', + AssetsByUpdatedBlockIdVarianceSampleTotalTransfersAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_TRANSFERS_ASC', + AssetsByUpdatedBlockIdVarianceSampleTotalTransfersDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_TRANSFERS_DESC', + AssetsByUpdatedBlockIdVarianceSampleTypeAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + AssetsByUpdatedBlockIdVarianceSampleTypeDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + AssetsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdAverageAssetIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + AssetDocumentsByCreatedBlockIdAverageAssetIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + AssetDocumentsByCreatedBlockIdAverageBlockRangeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetDocumentsByCreatedBlockIdAverageBlockRangeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetDocumentsByCreatedBlockIdAverageContentHashAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CONTENT_HASH_ASC', + AssetDocumentsByCreatedBlockIdAverageContentHashDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CONTENT_HASH_DESC', + AssetDocumentsByCreatedBlockIdAverageCreatedAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetDocumentsByCreatedBlockIdAverageCreatedAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetDocumentsByCreatedBlockIdAverageCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdAverageCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdAverageDocumentIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_DOCUMENT_ID_ASC', + AssetDocumentsByCreatedBlockIdAverageDocumentIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_DOCUMENT_ID_DESC', + AssetDocumentsByCreatedBlockIdAverageFiledAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_FILED_AT_ASC', + AssetDocumentsByCreatedBlockIdAverageFiledAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_FILED_AT_DESC', + AssetDocumentsByCreatedBlockIdAverageIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetDocumentsByCreatedBlockIdAverageIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetDocumentsByCreatedBlockIdAverageLinkAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_LINK_ASC', + AssetDocumentsByCreatedBlockIdAverageLinkDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_LINK_DESC', + AssetDocumentsByCreatedBlockIdAverageNameAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_NAME_ASC', + AssetDocumentsByCreatedBlockIdAverageNameDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_NAME_DESC', + AssetDocumentsByCreatedBlockIdAverageTypeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_ASC', + AssetDocumentsByCreatedBlockIdAverageTypeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_DESC', + AssetDocumentsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdCountAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + AssetDocumentsByCreatedBlockIdCountDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountAssetIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountAssetIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountBlockRangeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountBlockRangeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountContentHashAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CONTENT_HASH_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountContentHashDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CONTENT_HASH_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountCreatedAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountCreatedAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountDocumentIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DOCUMENT_ID_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountDocumentIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DOCUMENT_ID_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountFiledAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FILED_AT_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountFiledAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FILED_AT_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountLinkAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LINK_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountLinkDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LINK_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountNameAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountNameDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountTypeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountTypeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + AssetDocumentsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdMaxAssetIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + AssetDocumentsByCreatedBlockIdMaxAssetIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + AssetDocumentsByCreatedBlockIdMaxBlockRangeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetDocumentsByCreatedBlockIdMaxBlockRangeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetDocumentsByCreatedBlockIdMaxContentHashAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_CONTENT_HASH_ASC', + AssetDocumentsByCreatedBlockIdMaxContentHashDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_CONTENT_HASH_DESC', + AssetDocumentsByCreatedBlockIdMaxCreatedAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetDocumentsByCreatedBlockIdMaxCreatedAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetDocumentsByCreatedBlockIdMaxCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdMaxCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdMaxDocumentIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_DOCUMENT_ID_ASC', + AssetDocumentsByCreatedBlockIdMaxDocumentIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_DOCUMENT_ID_DESC', + AssetDocumentsByCreatedBlockIdMaxFiledAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_FILED_AT_ASC', + AssetDocumentsByCreatedBlockIdMaxFiledAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_FILED_AT_DESC', + AssetDocumentsByCreatedBlockIdMaxIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + AssetDocumentsByCreatedBlockIdMaxIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + AssetDocumentsByCreatedBlockIdMaxLinkAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_LINK_ASC', + AssetDocumentsByCreatedBlockIdMaxLinkDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_LINK_DESC', + AssetDocumentsByCreatedBlockIdMaxNameAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_NAME_ASC', + AssetDocumentsByCreatedBlockIdMaxNameDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_NAME_DESC', + AssetDocumentsByCreatedBlockIdMaxTypeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_TYPE_ASC', + AssetDocumentsByCreatedBlockIdMaxTypeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_TYPE_DESC', + AssetDocumentsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdMinAssetIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + AssetDocumentsByCreatedBlockIdMinAssetIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + AssetDocumentsByCreatedBlockIdMinBlockRangeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetDocumentsByCreatedBlockIdMinBlockRangeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetDocumentsByCreatedBlockIdMinContentHashAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_CONTENT_HASH_ASC', + AssetDocumentsByCreatedBlockIdMinContentHashDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_CONTENT_HASH_DESC', + AssetDocumentsByCreatedBlockIdMinCreatedAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetDocumentsByCreatedBlockIdMinCreatedAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetDocumentsByCreatedBlockIdMinCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdMinCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdMinDocumentIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_DOCUMENT_ID_ASC', + AssetDocumentsByCreatedBlockIdMinDocumentIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_DOCUMENT_ID_DESC', + AssetDocumentsByCreatedBlockIdMinFiledAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_FILED_AT_ASC', + AssetDocumentsByCreatedBlockIdMinFiledAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_FILED_AT_DESC', + AssetDocumentsByCreatedBlockIdMinIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + AssetDocumentsByCreatedBlockIdMinIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + AssetDocumentsByCreatedBlockIdMinLinkAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_LINK_ASC', + AssetDocumentsByCreatedBlockIdMinLinkDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_LINK_DESC', + AssetDocumentsByCreatedBlockIdMinNameAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_NAME_ASC', + AssetDocumentsByCreatedBlockIdMinNameDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_NAME_DESC', + AssetDocumentsByCreatedBlockIdMinTypeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_TYPE_ASC', + AssetDocumentsByCreatedBlockIdMinTypeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_TYPE_DESC', + AssetDocumentsByCreatedBlockIdMinUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdMinUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationAssetIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationAssetIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationContentHashAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CONTENT_HASH_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationContentHashDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CONTENT_HASH_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationDocumentIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DOCUMENT_ID_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationDocumentIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DOCUMENT_ID_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationFiledAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FILED_AT_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationFiledAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FILED_AT_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationLinkAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LINK_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationLinkDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LINK_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationNameAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationNameDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationTypeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationTypeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + AssetDocumentsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleAssetIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleAssetIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleBlockRangeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleBlockRangeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleContentHashAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CONTENT_HASH_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleContentHashDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CONTENT_HASH_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleCreatedAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleCreatedAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleDocumentIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DOCUMENT_ID_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleDocumentIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DOCUMENT_ID_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleFiledAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FILED_AT_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleFiledAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FILED_AT_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleLinkAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LINK_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleLinkDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LINK_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleNameAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleNameDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleTypeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleTypeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + AssetDocumentsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdSumAssetIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + AssetDocumentsByCreatedBlockIdSumAssetIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + AssetDocumentsByCreatedBlockIdSumBlockRangeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetDocumentsByCreatedBlockIdSumBlockRangeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetDocumentsByCreatedBlockIdSumContentHashAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_CONTENT_HASH_ASC', + AssetDocumentsByCreatedBlockIdSumContentHashDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_CONTENT_HASH_DESC', + AssetDocumentsByCreatedBlockIdSumCreatedAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetDocumentsByCreatedBlockIdSumCreatedAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetDocumentsByCreatedBlockIdSumCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdSumCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdSumDocumentIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_DOCUMENT_ID_ASC', + AssetDocumentsByCreatedBlockIdSumDocumentIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_DOCUMENT_ID_DESC', + AssetDocumentsByCreatedBlockIdSumFiledAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_FILED_AT_ASC', + AssetDocumentsByCreatedBlockIdSumFiledAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_FILED_AT_DESC', + AssetDocumentsByCreatedBlockIdSumIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + AssetDocumentsByCreatedBlockIdSumIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + AssetDocumentsByCreatedBlockIdSumLinkAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_LINK_ASC', + AssetDocumentsByCreatedBlockIdSumLinkDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_LINK_DESC', + AssetDocumentsByCreatedBlockIdSumNameAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_NAME_ASC', + AssetDocumentsByCreatedBlockIdSumNameDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_NAME_DESC', + AssetDocumentsByCreatedBlockIdSumTypeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_TYPE_ASC', + AssetDocumentsByCreatedBlockIdSumTypeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_TYPE_DESC', + AssetDocumentsByCreatedBlockIdSumUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdSumUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationAssetIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationAssetIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationContentHashAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CONTENT_HASH_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationContentHashDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CONTENT_HASH_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationDocumentIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DOCUMENT_ID_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationDocumentIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DOCUMENT_ID_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationFiledAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FILED_AT_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationFiledAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FILED_AT_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationLinkAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LINK_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationLinkDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LINK_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationNameAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationNameDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationTypeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationTypeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + AssetDocumentsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleAssetIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleAssetIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleContentHashAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CONTENT_HASH_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleContentHashDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CONTENT_HASH_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleDocumentIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DOCUMENT_ID_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleDocumentIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DOCUMENT_ID_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleFiledAtAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FILED_AT_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleFiledAtDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FILED_AT_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleLinkAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LINK_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleLinkDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LINK_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleNameAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleNameDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleTypeAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleTypeDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + AssetDocumentsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdAverageAssetIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + AssetDocumentsByUpdatedBlockIdAverageAssetIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + AssetDocumentsByUpdatedBlockIdAverageBlockRangeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetDocumentsByUpdatedBlockIdAverageBlockRangeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetDocumentsByUpdatedBlockIdAverageContentHashAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CONTENT_HASH_ASC', + AssetDocumentsByUpdatedBlockIdAverageContentHashDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CONTENT_HASH_DESC', + AssetDocumentsByUpdatedBlockIdAverageCreatedAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetDocumentsByUpdatedBlockIdAverageCreatedAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetDocumentsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdAverageDocumentIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DOCUMENT_ID_ASC', + AssetDocumentsByUpdatedBlockIdAverageDocumentIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DOCUMENT_ID_DESC', + AssetDocumentsByUpdatedBlockIdAverageFiledAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_FILED_AT_ASC', + AssetDocumentsByUpdatedBlockIdAverageFiledAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_FILED_AT_DESC', + AssetDocumentsByUpdatedBlockIdAverageIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetDocumentsByUpdatedBlockIdAverageIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetDocumentsByUpdatedBlockIdAverageLinkAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_LINK_ASC', + AssetDocumentsByUpdatedBlockIdAverageLinkDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_LINK_DESC', + AssetDocumentsByUpdatedBlockIdAverageNameAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_ASC', + AssetDocumentsByUpdatedBlockIdAverageNameDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_DESC', + AssetDocumentsByUpdatedBlockIdAverageTypeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_ASC', + AssetDocumentsByUpdatedBlockIdAverageTypeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_DESC', + AssetDocumentsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdCountAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + AssetDocumentsByUpdatedBlockIdCountDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountAssetIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountAssetIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountContentHashAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CONTENT_HASH_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountContentHashDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CONTENT_HASH_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountDocumentIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DOCUMENT_ID_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountDocumentIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DOCUMENT_ID_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountFiledAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FILED_AT_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountFiledAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FILED_AT_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountLinkAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LINK_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountLinkDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LINK_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountNameAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountNameDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountTypeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountTypeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + AssetDocumentsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdMaxAssetIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + AssetDocumentsByUpdatedBlockIdMaxAssetIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + AssetDocumentsByUpdatedBlockIdMaxBlockRangeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetDocumentsByUpdatedBlockIdMaxBlockRangeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetDocumentsByUpdatedBlockIdMaxContentHashAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_CONTENT_HASH_ASC', + AssetDocumentsByUpdatedBlockIdMaxContentHashDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_CONTENT_HASH_DESC', + AssetDocumentsByUpdatedBlockIdMaxCreatedAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetDocumentsByUpdatedBlockIdMaxCreatedAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetDocumentsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdMaxDocumentIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_DOCUMENT_ID_ASC', + AssetDocumentsByUpdatedBlockIdMaxDocumentIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_DOCUMENT_ID_DESC', + AssetDocumentsByUpdatedBlockIdMaxFiledAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_FILED_AT_ASC', + AssetDocumentsByUpdatedBlockIdMaxFiledAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_FILED_AT_DESC', + AssetDocumentsByUpdatedBlockIdMaxIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + AssetDocumentsByUpdatedBlockIdMaxIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + AssetDocumentsByUpdatedBlockIdMaxLinkAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_LINK_ASC', + AssetDocumentsByUpdatedBlockIdMaxLinkDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_LINK_DESC', + AssetDocumentsByUpdatedBlockIdMaxNameAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_NAME_ASC', + AssetDocumentsByUpdatedBlockIdMaxNameDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_NAME_DESC', + AssetDocumentsByUpdatedBlockIdMaxTypeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_TYPE_ASC', + AssetDocumentsByUpdatedBlockIdMaxTypeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_TYPE_DESC', + AssetDocumentsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdMinAssetIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + AssetDocumentsByUpdatedBlockIdMinAssetIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + AssetDocumentsByUpdatedBlockIdMinBlockRangeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetDocumentsByUpdatedBlockIdMinBlockRangeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetDocumentsByUpdatedBlockIdMinContentHashAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_CONTENT_HASH_ASC', + AssetDocumentsByUpdatedBlockIdMinContentHashDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_CONTENT_HASH_DESC', + AssetDocumentsByUpdatedBlockIdMinCreatedAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetDocumentsByUpdatedBlockIdMinCreatedAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetDocumentsByUpdatedBlockIdMinCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdMinCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdMinDocumentIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_DOCUMENT_ID_ASC', + AssetDocumentsByUpdatedBlockIdMinDocumentIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_DOCUMENT_ID_DESC', + AssetDocumentsByUpdatedBlockIdMinFiledAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_FILED_AT_ASC', + AssetDocumentsByUpdatedBlockIdMinFiledAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_FILED_AT_DESC', + AssetDocumentsByUpdatedBlockIdMinIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + AssetDocumentsByUpdatedBlockIdMinIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + AssetDocumentsByUpdatedBlockIdMinLinkAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_LINK_ASC', + AssetDocumentsByUpdatedBlockIdMinLinkDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_LINK_DESC', + AssetDocumentsByUpdatedBlockIdMinNameAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_NAME_ASC', + AssetDocumentsByUpdatedBlockIdMinNameDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_NAME_DESC', + AssetDocumentsByUpdatedBlockIdMinTypeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_TYPE_ASC', + AssetDocumentsByUpdatedBlockIdMinTypeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_TYPE_DESC', + AssetDocumentsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationContentHashAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CONTENT_HASH_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationContentHashDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CONTENT_HASH_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationDocumentIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DOCUMENT_ID_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationDocumentIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DOCUMENT_ID_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationFiledAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FILED_AT_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationFiledAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FILED_AT_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationLinkAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LINK_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationLinkDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LINK_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationNameAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationNameDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationTypeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationTypeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + AssetDocumentsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleAssetIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleAssetIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleContentHashAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CONTENT_HASH_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleContentHashDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CONTENT_HASH_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleDocumentIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DOCUMENT_ID_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleDocumentIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DOCUMENT_ID_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleFiledAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FILED_AT_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleFiledAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FILED_AT_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleLinkAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LINK_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleLinkDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LINK_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleNameAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleNameDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleTypeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleTypeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + AssetDocumentsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdSumAssetIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + AssetDocumentsByUpdatedBlockIdSumAssetIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + AssetDocumentsByUpdatedBlockIdSumBlockRangeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetDocumentsByUpdatedBlockIdSumBlockRangeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetDocumentsByUpdatedBlockIdSumContentHashAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_CONTENT_HASH_ASC', + AssetDocumentsByUpdatedBlockIdSumContentHashDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_CONTENT_HASH_DESC', + AssetDocumentsByUpdatedBlockIdSumCreatedAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetDocumentsByUpdatedBlockIdSumCreatedAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetDocumentsByUpdatedBlockIdSumCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdSumCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdSumDocumentIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_DOCUMENT_ID_ASC', + AssetDocumentsByUpdatedBlockIdSumDocumentIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_DOCUMENT_ID_DESC', + AssetDocumentsByUpdatedBlockIdSumFiledAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_FILED_AT_ASC', + AssetDocumentsByUpdatedBlockIdSumFiledAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_FILED_AT_DESC', + AssetDocumentsByUpdatedBlockIdSumIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + AssetDocumentsByUpdatedBlockIdSumIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + AssetDocumentsByUpdatedBlockIdSumLinkAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_LINK_ASC', + AssetDocumentsByUpdatedBlockIdSumLinkDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_LINK_DESC', + AssetDocumentsByUpdatedBlockIdSumNameAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_NAME_ASC', + AssetDocumentsByUpdatedBlockIdSumNameDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_NAME_DESC', + AssetDocumentsByUpdatedBlockIdSumTypeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_TYPE_ASC', + AssetDocumentsByUpdatedBlockIdSumTypeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_TYPE_DESC', + AssetDocumentsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationContentHashAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CONTENT_HASH_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationContentHashDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CONTENT_HASH_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationDocumentIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DOCUMENT_ID_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationDocumentIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DOCUMENT_ID_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationFiledAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FILED_AT_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationFiledAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FILED_AT_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationLinkAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LINK_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationLinkDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LINK_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationNameAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationNameDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationTypeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationTypeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + AssetDocumentsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleContentHashAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CONTENT_HASH_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleContentHashDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CONTENT_HASH_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleDocumentIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DOCUMENT_ID_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleDocumentIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DOCUMENT_ID_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleFiledAtAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FILED_AT_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleFiledAtDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FILED_AT_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleLinkAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LINK_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleLinkDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LINK_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleNameAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleNameDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleTypeAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleTypeDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + AssetDocumentsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetDocumentsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_DOCUMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdAverageAmountAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + AssetHoldersByCreatedBlockIdAverageAmountDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + AssetHoldersByCreatedBlockIdAverageAssetIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + AssetHoldersByCreatedBlockIdAverageAssetIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + AssetHoldersByCreatedBlockIdAverageBlockRangeAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetHoldersByCreatedBlockIdAverageBlockRangeDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetHoldersByCreatedBlockIdAverageCreatedAtAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetHoldersByCreatedBlockIdAverageCreatedAtDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetHoldersByCreatedBlockIdAverageCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdAverageCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdAverageIdentityIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + AssetHoldersByCreatedBlockIdAverageIdentityIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + AssetHoldersByCreatedBlockIdAverageIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetHoldersByCreatedBlockIdAverageIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetHoldersByCreatedBlockIdAverageUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdAverageUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdCountAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_COUNT_ASC', + AssetHoldersByCreatedBlockIdCountDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_COUNT_DESC', + AssetHoldersByCreatedBlockIdDistinctCountAmountAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + AssetHoldersByCreatedBlockIdDistinctCountAmountDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + AssetHoldersByCreatedBlockIdDistinctCountAssetIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetHoldersByCreatedBlockIdDistinctCountAssetIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetHoldersByCreatedBlockIdDistinctCountBlockRangeAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetHoldersByCreatedBlockIdDistinctCountBlockRangeDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetHoldersByCreatedBlockIdDistinctCountCreatedAtAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetHoldersByCreatedBlockIdDistinctCountCreatedAtDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetHoldersByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdDistinctCountIdentityIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + AssetHoldersByCreatedBlockIdDistinctCountIdentityIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + AssetHoldersByCreatedBlockIdDistinctCountIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetHoldersByCreatedBlockIdDistinctCountIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetHoldersByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdMaxAmountAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + AssetHoldersByCreatedBlockIdMaxAmountDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + AssetHoldersByCreatedBlockIdMaxAssetIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + AssetHoldersByCreatedBlockIdMaxAssetIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + AssetHoldersByCreatedBlockIdMaxBlockRangeAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetHoldersByCreatedBlockIdMaxBlockRangeDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetHoldersByCreatedBlockIdMaxCreatedAtAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetHoldersByCreatedBlockIdMaxCreatedAtDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetHoldersByCreatedBlockIdMaxCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdMaxCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdMaxIdentityIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + AssetHoldersByCreatedBlockIdMaxIdentityIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + AssetHoldersByCreatedBlockIdMaxIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + AssetHoldersByCreatedBlockIdMaxIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + AssetHoldersByCreatedBlockIdMaxUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdMaxUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdMinAmountAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + AssetHoldersByCreatedBlockIdMinAmountDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + AssetHoldersByCreatedBlockIdMinAssetIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + AssetHoldersByCreatedBlockIdMinAssetIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + AssetHoldersByCreatedBlockIdMinBlockRangeAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetHoldersByCreatedBlockIdMinBlockRangeDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetHoldersByCreatedBlockIdMinCreatedAtAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetHoldersByCreatedBlockIdMinCreatedAtDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetHoldersByCreatedBlockIdMinCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdMinCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdMinIdentityIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + AssetHoldersByCreatedBlockIdMinIdentityIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + AssetHoldersByCreatedBlockIdMinIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + AssetHoldersByCreatedBlockIdMinIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + AssetHoldersByCreatedBlockIdMinUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdMinUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdStddevPopulationAmountAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + AssetHoldersByCreatedBlockIdStddevPopulationAmountDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + AssetHoldersByCreatedBlockIdStddevPopulationAssetIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetHoldersByCreatedBlockIdStddevPopulationAssetIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetHoldersByCreatedBlockIdStddevPopulationBlockRangeAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetHoldersByCreatedBlockIdStddevPopulationBlockRangeDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetHoldersByCreatedBlockIdStddevPopulationCreatedAtAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetHoldersByCreatedBlockIdStddevPopulationCreatedAtDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetHoldersByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdStddevPopulationIdentityIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + AssetHoldersByCreatedBlockIdStddevPopulationIdentityIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + AssetHoldersByCreatedBlockIdStddevPopulationIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetHoldersByCreatedBlockIdStddevPopulationIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetHoldersByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdStddevSampleAmountAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + AssetHoldersByCreatedBlockIdStddevSampleAmountDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + AssetHoldersByCreatedBlockIdStddevSampleAssetIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetHoldersByCreatedBlockIdStddevSampleAssetIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetHoldersByCreatedBlockIdStddevSampleBlockRangeAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetHoldersByCreatedBlockIdStddevSampleBlockRangeDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetHoldersByCreatedBlockIdStddevSampleCreatedAtAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetHoldersByCreatedBlockIdStddevSampleCreatedAtDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetHoldersByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdStddevSampleIdentityIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AssetHoldersByCreatedBlockIdStddevSampleIdentityIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AssetHoldersByCreatedBlockIdStddevSampleIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetHoldersByCreatedBlockIdStddevSampleIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetHoldersByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdSumAmountAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + AssetHoldersByCreatedBlockIdSumAmountDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + AssetHoldersByCreatedBlockIdSumAssetIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + AssetHoldersByCreatedBlockIdSumAssetIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + AssetHoldersByCreatedBlockIdSumBlockRangeAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetHoldersByCreatedBlockIdSumBlockRangeDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetHoldersByCreatedBlockIdSumCreatedAtAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetHoldersByCreatedBlockIdSumCreatedAtDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetHoldersByCreatedBlockIdSumCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdSumCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdSumIdentityIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + AssetHoldersByCreatedBlockIdSumIdentityIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + AssetHoldersByCreatedBlockIdSumIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + AssetHoldersByCreatedBlockIdSumIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + AssetHoldersByCreatedBlockIdSumUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdSumUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdVariancePopulationAmountAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + AssetHoldersByCreatedBlockIdVariancePopulationAmountDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + AssetHoldersByCreatedBlockIdVariancePopulationAssetIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetHoldersByCreatedBlockIdVariancePopulationAssetIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetHoldersByCreatedBlockIdVariancePopulationBlockRangeAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetHoldersByCreatedBlockIdVariancePopulationBlockRangeDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetHoldersByCreatedBlockIdVariancePopulationCreatedAtAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetHoldersByCreatedBlockIdVariancePopulationCreatedAtDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetHoldersByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdVariancePopulationIdentityIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AssetHoldersByCreatedBlockIdVariancePopulationIdentityIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AssetHoldersByCreatedBlockIdVariancePopulationIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetHoldersByCreatedBlockIdVariancePopulationIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetHoldersByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdVarianceSampleAmountAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + AssetHoldersByCreatedBlockIdVarianceSampleAmountDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + AssetHoldersByCreatedBlockIdVarianceSampleAssetIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetHoldersByCreatedBlockIdVarianceSampleAssetIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetHoldersByCreatedBlockIdVarianceSampleBlockRangeAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetHoldersByCreatedBlockIdVarianceSampleBlockRangeDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetHoldersByCreatedBlockIdVarianceSampleCreatedAtAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetHoldersByCreatedBlockIdVarianceSampleCreatedAtDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetHoldersByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetHoldersByCreatedBlockIdVarianceSampleIdentityIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AssetHoldersByCreatedBlockIdVarianceSampleIdentityIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AssetHoldersByCreatedBlockIdVarianceSampleIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetHoldersByCreatedBlockIdVarianceSampleIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetHoldersByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetHoldersByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdAverageAmountAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + AssetHoldersByUpdatedBlockIdAverageAmountDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + AssetHoldersByUpdatedBlockIdAverageAssetIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + AssetHoldersByUpdatedBlockIdAverageAssetIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + AssetHoldersByUpdatedBlockIdAverageBlockRangeAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetHoldersByUpdatedBlockIdAverageBlockRangeDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetHoldersByUpdatedBlockIdAverageCreatedAtAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetHoldersByUpdatedBlockIdAverageCreatedAtDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetHoldersByUpdatedBlockIdAverageCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdAverageCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdAverageIdentityIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + AssetHoldersByUpdatedBlockIdAverageIdentityIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + AssetHoldersByUpdatedBlockIdAverageIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetHoldersByUpdatedBlockIdAverageIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetHoldersByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdCountAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + AssetHoldersByUpdatedBlockIdCountDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + AssetHoldersByUpdatedBlockIdDistinctCountAmountAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + AssetHoldersByUpdatedBlockIdDistinctCountAmountDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + AssetHoldersByUpdatedBlockIdDistinctCountAssetIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetHoldersByUpdatedBlockIdDistinctCountAssetIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetHoldersByUpdatedBlockIdDistinctCountBlockRangeAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetHoldersByUpdatedBlockIdDistinctCountBlockRangeDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetHoldersByUpdatedBlockIdDistinctCountCreatedAtAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetHoldersByUpdatedBlockIdDistinctCountCreatedAtDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetHoldersByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdDistinctCountIdentityIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + AssetHoldersByUpdatedBlockIdDistinctCountIdentityIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + AssetHoldersByUpdatedBlockIdDistinctCountIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetHoldersByUpdatedBlockIdDistinctCountIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetHoldersByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdMaxAmountAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + AssetHoldersByUpdatedBlockIdMaxAmountDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + AssetHoldersByUpdatedBlockIdMaxAssetIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + AssetHoldersByUpdatedBlockIdMaxAssetIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + AssetHoldersByUpdatedBlockIdMaxBlockRangeAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetHoldersByUpdatedBlockIdMaxBlockRangeDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetHoldersByUpdatedBlockIdMaxCreatedAtAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetHoldersByUpdatedBlockIdMaxCreatedAtDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetHoldersByUpdatedBlockIdMaxCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdMaxCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdMaxIdentityIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + AssetHoldersByUpdatedBlockIdMaxIdentityIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + AssetHoldersByUpdatedBlockIdMaxIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + AssetHoldersByUpdatedBlockIdMaxIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + AssetHoldersByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdMinAmountAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + AssetHoldersByUpdatedBlockIdMinAmountDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + AssetHoldersByUpdatedBlockIdMinAssetIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + AssetHoldersByUpdatedBlockIdMinAssetIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + AssetHoldersByUpdatedBlockIdMinBlockRangeAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetHoldersByUpdatedBlockIdMinBlockRangeDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetHoldersByUpdatedBlockIdMinCreatedAtAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetHoldersByUpdatedBlockIdMinCreatedAtDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetHoldersByUpdatedBlockIdMinCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdMinCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdMinIdentityIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + AssetHoldersByUpdatedBlockIdMinIdentityIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + AssetHoldersByUpdatedBlockIdMinIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + AssetHoldersByUpdatedBlockIdMinIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + AssetHoldersByUpdatedBlockIdMinUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdMinUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdStddevPopulationAmountAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + AssetHoldersByUpdatedBlockIdStddevPopulationAmountDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + AssetHoldersByUpdatedBlockIdStddevPopulationAssetIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetHoldersByUpdatedBlockIdStddevPopulationAssetIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetHoldersByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetHoldersByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetHoldersByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetHoldersByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetHoldersByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + AssetHoldersByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + AssetHoldersByUpdatedBlockIdStddevPopulationIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetHoldersByUpdatedBlockIdStddevPopulationIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetHoldersByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdStddevSampleAmountAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + AssetHoldersByUpdatedBlockIdStddevSampleAmountDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + AssetHoldersByUpdatedBlockIdStddevSampleAssetIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetHoldersByUpdatedBlockIdStddevSampleAssetIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetHoldersByUpdatedBlockIdStddevSampleBlockRangeAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetHoldersByUpdatedBlockIdStddevSampleBlockRangeDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetHoldersByUpdatedBlockIdStddevSampleCreatedAtAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetHoldersByUpdatedBlockIdStddevSampleCreatedAtDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetHoldersByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdStddevSampleIdentityIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AssetHoldersByUpdatedBlockIdStddevSampleIdentityIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AssetHoldersByUpdatedBlockIdStddevSampleIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetHoldersByUpdatedBlockIdStddevSampleIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetHoldersByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdSumAmountAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + AssetHoldersByUpdatedBlockIdSumAmountDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + AssetHoldersByUpdatedBlockIdSumAssetIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + AssetHoldersByUpdatedBlockIdSumAssetIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + AssetHoldersByUpdatedBlockIdSumBlockRangeAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetHoldersByUpdatedBlockIdSumBlockRangeDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetHoldersByUpdatedBlockIdSumCreatedAtAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetHoldersByUpdatedBlockIdSumCreatedAtDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetHoldersByUpdatedBlockIdSumCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdSumCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdSumIdentityIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + AssetHoldersByUpdatedBlockIdSumIdentityIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + AssetHoldersByUpdatedBlockIdSumIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + AssetHoldersByUpdatedBlockIdSumIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + AssetHoldersByUpdatedBlockIdSumUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdSumUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdVariancePopulationAmountAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + AssetHoldersByUpdatedBlockIdVariancePopulationAmountDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + AssetHoldersByUpdatedBlockIdVariancePopulationAssetIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetHoldersByUpdatedBlockIdVariancePopulationAssetIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetHoldersByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetHoldersByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetHoldersByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetHoldersByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetHoldersByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AssetHoldersByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AssetHoldersByUpdatedBlockIdVariancePopulationIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetHoldersByUpdatedBlockIdVariancePopulationIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetHoldersByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdVarianceSampleAmountAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + AssetHoldersByUpdatedBlockIdVarianceSampleAmountDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + AssetHoldersByUpdatedBlockIdVarianceSampleAssetIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetHoldersByUpdatedBlockIdVarianceSampleAssetIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetHoldersByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetHoldersByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetHoldersByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetHoldersByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetHoldersByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetHoldersByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AssetHoldersByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AssetHoldersByUpdatedBlockIdVarianceSampleIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetHoldersByUpdatedBlockIdVarianceSampleIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetHoldersByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetHoldersByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdAverageAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdAverageAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdAverageAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdAverageAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdAverageBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByCreatedBlockIdAverageBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByCreatedBlockIdAverageCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetMandatoryMediatorsByCreatedBlockIdAverageCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetMandatoryMediatorsByCreatedBlockIdAverageCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdAverageCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdAverageIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdAverageIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdAverageIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdAverageIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdCountAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_COUNT_ASC', + AssetMandatoryMediatorsByCreatedBlockIdCountDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_COUNT_DESC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMaxAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMaxAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMaxAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMaxAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMaxBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMaxBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMaxCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMaxCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMaxCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMaxCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMaxIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMaxIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMaxIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMaxIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMinAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMinAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMinAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMinAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMinBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMinBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMinCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMinCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMinCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMinCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMinIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMinIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMinIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMinIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdMinUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdMinUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdSumAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdSumAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdSumAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdSumAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdSumBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByCreatedBlockIdSumBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByCreatedBlockIdSumCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetMandatoryMediatorsByCreatedBlockIdSumCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetMandatoryMediatorsByCreatedBlockIdSumCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdSumCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdSumIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdSumIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdSumIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdSumIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdSumUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdSumUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdCountAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdCountDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMinAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMinAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMinAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMinAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMinBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMinBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMinCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMinCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMinCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMinCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMinIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMinIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMinIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMinIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdSumAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdSumAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdSumAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdSumAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdSumBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdSumBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdSumCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdSumCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdSumCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdSumCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdSumIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdSumIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdSumIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdSumIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdAverageAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + AssetPreApprovalsByCreatedBlockIdAverageAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + AssetPreApprovalsByCreatedBlockIdAverageBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetPreApprovalsByCreatedBlockIdAverageBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetPreApprovalsByCreatedBlockIdAverageCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetPreApprovalsByCreatedBlockIdAverageCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetPreApprovalsByCreatedBlockIdAverageCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdAverageCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdAverageIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + AssetPreApprovalsByCreatedBlockIdAverageIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + AssetPreApprovalsByCreatedBlockIdAverageIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetPreApprovalsByCreatedBlockIdAverageIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetPreApprovalsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdCountAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_COUNT_ASC', + AssetPreApprovalsByCreatedBlockIdCountDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_COUNT_DESC', + AssetPreApprovalsByCreatedBlockIdDistinctCountAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetPreApprovalsByCreatedBlockIdDistinctCountAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetPreApprovalsByCreatedBlockIdDistinctCountBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetPreApprovalsByCreatedBlockIdDistinctCountBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetPreApprovalsByCreatedBlockIdDistinctCountCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetPreApprovalsByCreatedBlockIdDistinctCountCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetPreApprovalsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdDistinctCountIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + AssetPreApprovalsByCreatedBlockIdDistinctCountIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + AssetPreApprovalsByCreatedBlockIdDistinctCountIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetPreApprovalsByCreatedBlockIdDistinctCountIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetPreApprovalsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdMaxAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + AssetPreApprovalsByCreatedBlockIdMaxAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + AssetPreApprovalsByCreatedBlockIdMaxBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetPreApprovalsByCreatedBlockIdMaxBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetPreApprovalsByCreatedBlockIdMaxCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetPreApprovalsByCreatedBlockIdMaxCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetPreApprovalsByCreatedBlockIdMaxCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdMaxCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdMaxIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + AssetPreApprovalsByCreatedBlockIdMaxIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + AssetPreApprovalsByCreatedBlockIdMaxIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + AssetPreApprovalsByCreatedBlockIdMaxIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + AssetPreApprovalsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdMinAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + AssetPreApprovalsByCreatedBlockIdMinAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + AssetPreApprovalsByCreatedBlockIdMinBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetPreApprovalsByCreatedBlockIdMinBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetPreApprovalsByCreatedBlockIdMinCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetPreApprovalsByCreatedBlockIdMinCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetPreApprovalsByCreatedBlockIdMinCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdMinCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdMinIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + AssetPreApprovalsByCreatedBlockIdMinIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + AssetPreApprovalsByCreatedBlockIdMinIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + AssetPreApprovalsByCreatedBlockIdMinIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + AssetPreApprovalsByCreatedBlockIdMinUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdMinUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdStddevSampleAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetPreApprovalsByCreatedBlockIdStddevSampleAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetPreApprovalsByCreatedBlockIdStddevSampleBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetPreApprovalsByCreatedBlockIdStddevSampleBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetPreApprovalsByCreatedBlockIdStddevSampleCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetPreApprovalsByCreatedBlockIdStddevSampleCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetPreApprovalsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdStddevSampleIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AssetPreApprovalsByCreatedBlockIdStddevSampleIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AssetPreApprovalsByCreatedBlockIdStddevSampleIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetPreApprovalsByCreatedBlockIdStddevSampleIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetPreApprovalsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdSumAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + AssetPreApprovalsByCreatedBlockIdSumAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + AssetPreApprovalsByCreatedBlockIdSumBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetPreApprovalsByCreatedBlockIdSumBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetPreApprovalsByCreatedBlockIdSumCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetPreApprovalsByCreatedBlockIdSumCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetPreApprovalsByCreatedBlockIdSumCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdSumCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdSumIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + AssetPreApprovalsByCreatedBlockIdSumIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + AssetPreApprovalsByCreatedBlockIdSumIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + AssetPreApprovalsByCreatedBlockIdSumIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + AssetPreApprovalsByCreatedBlockIdSumUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdSumUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdAverageAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdAverageAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdAverageBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetPreApprovalsByUpdatedBlockIdAverageBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetPreApprovalsByUpdatedBlockIdAverageCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetPreApprovalsByUpdatedBlockIdAverageCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetPreApprovalsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdAverageIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdAverageIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdAverageIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdAverageIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdCountAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + AssetPreApprovalsByUpdatedBlockIdCountDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdMaxAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdMaxAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdMaxBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetPreApprovalsByUpdatedBlockIdMaxBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetPreApprovalsByUpdatedBlockIdMaxCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetPreApprovalsByUpdatedBlockIdMaxCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetPreApprovalsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdMaxIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdMaxIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdMaxIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdMaxIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdMinAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdMinAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdMinBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetPreApprovalsByUpdatedBlockIdMinBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetPreApprovalsByUpdatedBlockIdMinCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetPreApprovalsByUpdatedBlockIdMinCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetPreApprovalsByUpdatedBlockIdMinCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdMinCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdMinIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdMinIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdMinIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdMinIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdSumAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdSumAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdSumBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetPreApprovalsByUpdatedBlockIdSumBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetPreApprovalsByUpdatedBlockIdSumCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetPreApprovalsByUpdatedBlockIdSumCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetPreApprovalsByUpdatedBlockIdSumCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdSumCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdSumIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdSumIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdSumIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdSumIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdAverageAmountAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + AssetTransactionsByCreatedBlockIdAverageAmountDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + AssetTransactionsByCreatedBlockIdAverageAssetIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + AssetTransactionsByCreatedBlockIdAverageAssetIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + AssetTransactionsByCreatedBlockIdAverageBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetTransactionsByCreatedBlockIdAverageBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetTransactionsByCreatedBlockIdAverageCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetTransactionsByCreatedBlockIdAverageCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetTransactionsByCreatedBlockIdAverageCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdAverageCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdAverageDatetimeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + AssetTransactionsByCreatedBlockIdAverageDatetimeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + AssetTransactionsByCreatedBlockIdAverageEventIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + AssetTransactionsByCreatedBlockIdAverageEventIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + AssetTransactionsByCreatedBlockIdAverageEventIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + AssetTransactionsByCreatedBlockIdAverageEventIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + AssetTransactionsByCreatedBlockIdAverageExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_ASC', + AssetTransactionsByCreatedBlockIdAverageExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_DESC', + AssetTransactionsByCreatedBlockIdAverageFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdAverageFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdAverageFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_ASC', + AssetTransactionsByCreatedBlockIdAverageFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_DESC', + AssetTransactionsByCreatedBlockIdAverageIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetTransactionsByCreatedBlockIdAverageIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetTransactionsByCreatedBlockIdAverageInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC', + AssetTransactionsByCreatedBlockIdAverageInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC', + AssetTransactionsByCreatedBlockIdAverageInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByCreatedBlockIdAverageInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByCreatedBlockIdAverageNftIdsAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_NFT_IDS_ASC', + AssetTransactionsByCreatedBlockIdAverageNftIdsDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_NFT_IDS_DESC', + AssetTransactionsByCreatedBlockIdAverageToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdAverageToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdCountAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_COUNT_ASC', + AssetTransactionsByCreatedBlockIdCountDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_COUNT_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountAmountAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountAmountDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountAssetIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountAssetIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountDatetimeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountDatetimeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountEventIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountEventIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountEventIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountEventIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountNftIdsAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountNftIdsDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdMaxAmountAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + AssetTransactionsByCreatedBlockIdMaxAmountDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + AssetTransactionsByCreatedBlockIdMaxAssetIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + AssetTransactionsByCreatedBlockIdMaxAssetIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + AssetTransactionsByCreatedBlockIdMaxBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetTransactionsByCreatedBlockIdMaxBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetTransactionsByCreatedBlockIdMaxCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetTransactionsByCreatedBlockIdMaxCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetTransactionsByCreatedBlockIdMaxCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdMaxCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdMaxDatetimeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + AssetTransactionsByCreatedBlockIdMaxDatetimeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + AssetTransactionsByCreatedBlockIdMaxEventIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + AssetTransactionsByCreatedBlockIdMaxEventIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + AssetTransactionsByCreatedBlockIdMaxEventIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_ASC', + AssetTransactionsByCreatedBlockIdMaxEventIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_DESC', + AssetTransactionsByCreatedBlockIdMaxExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EXTRINSIC_IDX_ASC', + AssetTransactionsByCreatedBlockIdMaxExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EXTRINSIC_IDX_DESC', + AssetTransactionsByCreatedBlockIdMaxFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdMaxFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdMaxFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_FUNDING_ROUND_ASC', + AssetTransactionsByCreatedBlockIdMaxFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_FUNDING_ROUND_DESC', + AssetTransactionsByCreatedBlockIdMaxIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + AssetTransactionsByCreatedBlockIdMaxIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + AssetTransactionsByCreatedBlockIdMaxInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC', + AssetTransactionsByCreatedBlockIdMaxInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC', + AssetTransactionsByCreatedBlockIdMaxInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_MEMO_ASC', + AssetTransactionsByCreatedBlockIdMaxInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_MEMO_DESC', + AssetTransactionsByCreatedBlockIdMaxNftIdsAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_NFT_IDS_ASC', + AssetTransactionsByCreatedBlockIdMaxNftIdsDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_NFT_IDS_DESC', + AssetTransactionsByCreatedBlockIdMaxToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdMaxToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdMinAmountAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + AssetTransactionsByCreatedBlockIdMinAmountDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + AssetTransactionsByCreatedBlockIdMinAssetIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + AssetTransactionsByCreatedBlockIdMinAssetIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + AssetTransactionsByCreatedBlockIdMinBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetTransactionsByCreatedBlockIdMinBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetTransactionsByCreatedBlockIdMinCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetTransactionsByCreatedBlockIdMinCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetTransactionsByCreatedBlockIdMinCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdMinCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdMinDatetimeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + AssetTransactionsByCreatedBlockIdMinDatetimeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + AssetTransactionsByCreatedBlockIdMinEventIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + AssetTransactionsByCreatedBlockIdMinEventIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + AssetTransactionsByCreatedBlockIdMinEventIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_ASC', + AssetTransactionsByCreatedBlockIdMinEventIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_DESC', + AssetTransactionsByCreatedBlockIdMinExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EXTRINSIC_IDX_ASC', + AssetTransactionsByCreatedBlockIdMinExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EXTRINSIC_IDX_DESC', + AssetTransactionsByCreatedBlockIdMinFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdMinFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdMinFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_FUNDING_ROUND_ASC', + AssetTransactionsByCreatedBlockIdMinFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_FUNDING_ROUND_DESC', + AssetTransactionsByCreatedBlockIdMinIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + AssetTransactionsByCreatedBlockIdMinIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + AssetTransactionsByCreatedBlockIdMinInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC', + AssetTransactionsByCreatedBlockIdMinInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC', + AssetTransactionsByCreatedBlockIdMinInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_MEMO_ASC', + AssetTransactionsByCreatedBlockIdMinInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_MEMO_DESC', + AssetTransactionsByCreatedBlockIdMinNftIdsAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_NFT_IDS_ASC', + AssetTransactionsByCreatedBlockIdMinNftIdsDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_NFT_IDS_DESC', + AssetTransactionsByCreatedBlockIdMinToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdMinToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdMinUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdMinUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationAmountAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationAmountDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationAssetIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationAssetIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationDatetimeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationDatetimeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationEventIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationEventIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationEventIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationEventIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationNftIdsAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationNftIdsDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleAmountAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleAmountDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleAssetIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleAssetIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleDatetimeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleDatetimeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleEventIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleEventIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleEventIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleEventIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleNftIdsAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleNftIdsDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdSumAmountAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + AssetTransactionsByCreatedBlockIdSumAmountDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + AssetTransactionsByCreatedBlockIdSumAssetIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + AssetTransactionsByCreatedBlockIdSumAssetIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + AssetTransactionsByCreatedBlockIdSumBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetTransactionsByCreatedBlockIdSumBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetTransactionsByCreatedBlockIdSumCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetTransactionsByCreatedBlockIdSumCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetTransactionsByCreatedBlockIdSumCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdSumCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdSumDatetimeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + AssetTransactionsByCreatedBlockIdSumDatetimeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + AssetTransactionsByCreatedBlockIdSumEventIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + AssetTransactionsByCreatedBlockIdSumEventIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + AssetTransactionsByCreatedBlockIdSumEventIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_ASC', + AssetTransactionsByCreatedBlockIdSumEventIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_DESC', + AssetTransactionsByCreatedBlockIdSumExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EXTRINSIC_IDX_ASC', + AssetTransactionsByCreatedBlockIdSumExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EXTRINSIC_IDX_DESC', + AssetTransactionsByCreatedBlockIdSumFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdSumFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdSumFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_FUNDING_ROUND_ASC', + AssetTransactionsByCreatedBlockIdSumFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_FUNDING_ROUND_DESC', + AssetTransactionsByCreatedBlockIdSumIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + AssetTransactionsByCreatedBlockIdSumIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + AssetTransactionsByCreatedBlockIdSumInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC', + AssetTransactionsByCreatedBlockIdSumInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC', + AssetTransactionsByCreatedBlockIdSumInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_MEMO_ASC', + AssetTransactionsByCreatedBlockIdSumInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_MEMO_DESC', + AssetTransactionsByCreatedBlockIdSumNftIdsAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_NFT_IDS_ASC', + AssetTransactionsByCreatedBlockIdSumNftIdsDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_NFT_IDS_DESC', + AssetTransactionsByCreatedBlockIdSumToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdSumToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdSumUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdSumUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationAmountAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationAmountDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationAssetIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationAssetIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationDatetimeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationDatetimeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationEventIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationEventIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationEventIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationEventIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationNftIdsAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationNftIdsDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleAmountAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleAmountDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleAssetIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleAssetIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleDatetimeAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleDatetimeDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleEventIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleEventIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleEventIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleEventIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleNftIdsAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleNftIdsDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdAverageAmountAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + AssetTransactionsByUpdatedBlockIdAverageAmountDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + AssetTransactionsByUpdatedBlockIdAverageAssetIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + AssetTransactionsByUpdatedBlockIdAverageAssetIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + AssetTransactionsByUpdatedBlockIdAverageBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetTransactionsByUpdatedBlockIdAverageBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetTransactionsByUpdatedBlockIdAverageCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AssetTransactionsByUpdatedBlockIdAverageCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AssetTransactionsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdAverageDatetimeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + AssetTransactionsByUpdatedBlockIdAverageDatetimeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + AssetTransactionsByUpdatedBlockIdAverageEventIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + AssetTransactionsByUpdatedBlockIdAverageEventIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + AssetTransactionsByUpdatedBlockIdAverageEventIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + AssetTransactionsByUpdatedBlockIdAverageEventIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + AssetTransactionsByUpdatedBlockIdAverageExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_ASC', + AssetTransactionsByUpdatedBlockIdAverageExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_DESC', + AssetTransactionsByUpdatedBlockIdAverageFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdAverageFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdAverageFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_ASC', + AssetTransactionsByUpdatedBlockIdAverageFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_DESC', + AssetTransactionsByUpdatedBlockIdAverageIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + AssetTransactionsByUpdatedBlockIdAverageIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + AssetTransactionsByUpdatedBlockIdAverageInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC', + AssetTransactionsByUpdatedBlockIdAverageInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC', + AssetTransactionsByUpdatedBlockIdAverageInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByUpdatedBlockIdAverageInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByUpdatedBlockIdAverageNftIdsAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_NFT_IDS_ASC', + AssetTransactionsByUpdatedBlockIdAverageNftIdsDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_NFT_IDS_DESC', + AssetTransactionsByUpdatedBlockIdAverageToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdAverageToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdCountAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + AssetTransactionsByUpdatedBlockIdCountDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountAmountAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountAmountDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountAssetIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountAssetIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountDatetimeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountDatetimeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountEventIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountEventIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountEventIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountEventIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountNftIdsAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountNftIdsDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdMaxAmountAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + AssetTransactionsByUpdatedBlockIdMaxAmountDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + AssetTransactionsByUpdatedBlockIdMaxAssetIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + AssetTransactionsByUpdatedBlockIdMaxAssetIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + AssetTransactionsByUpdatedBlockIdMaxBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AssetTransactionsByUpdatedBlockIdMaxBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AssetTransactionsByUpdatedBlockIdMaxCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AssetTransactionsByUpdatedBlockIdMaxCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AssetTransactionsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdMaxDatetimeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + AssetTransactionsByUpdatedBlockIdMaxDatetimeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + AssetTransactionsByUpdatedBlockIdMaxEventIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + AssetTransactionsByUpdatedBlockIdMaxEventIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + AssetTransactionsByUpdatedBlockIdMaxEventIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_ASC', + AssetTransactionsByUpdatedBlockIdMaxEventIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_DESC', + AssetTransactionsByUpdatedBlockIdMaxExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EXTRINSIC_IDX_ASC', + AssetTransactionsByUpdatedBlockIdMaxExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EXTRINSIC_IDX_DESC', + AssetTransactionsByUpdatedBlockIdMaxFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdMaxFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdMaxFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_FUNDING_ROUND_ASC', + AssetTransactionsByUpdatedBlockIdMaxFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_FUNDING_ROUND_DESC', + AssetTransactionsByUpdatedBlockIdMaxIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + AssetTransactionsByUpdatedBlockIdMaxIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + AssetTransactionsByUpdatedBlockIdMaxInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC', + AssetTransactionsByUpdatedBlockIdMaxInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC', + AssetTransactionsByUpdatedBlockIdMaxInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_MEMO_ASC', + AssetTransactionsByUpdatedBlockIdMaxInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_MEMO_DESC', + AssetTransactionsByUpdatedBlockIdMaxNftIdsAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_NFT_IDS_ASC', + AssetTransactionsByUpdatedBlockIdMaxNftIdsDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_NFT_IDS_DESC', + AssetTransactionsByUpdatedBlockIdMaxToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdMaxToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdMinAmountAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + AssetTransactionsByUpdatedBlockIdMinAmountDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + AssetTransactionsByUpdatedBlockIdMinAssetIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + AssetTransactionsByUpdatedBlockIdMinAssetIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + AssetTransactionsByUpdatedBlockIdMinBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AssetTransactionsByUpdatedBlockIdMinBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AssetTransactionsByUpdatedBlockIdMinCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AssetTransactionsByUpdatedBlockIdMinCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AssetTransactionsByUpdatedBlockIdMinCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdMinCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdMinDatetimeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + AssetTransactionsByUpdatedBlockIdMinDatetimeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + AssetTransactionsByUpdatedBlockIdMinEventIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + AssetTransactionsByUpdatedBlockIdMinEventIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + AssetTransactionsByUpdatedBlockIdMinEventIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_ASC', + AssetTransactionsByUpdatedBlockIdMinEventIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_DESC', + AssetTransactionsByUpdatedBlockIdMinExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EXTRINSIC_IDX_ASC', + AssetTransactionsByUpdatedBlockIdMinExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EXTRINSIC_IDX_DESC', + AssetTransactionsByUpdatedBlockIdMinFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdMinFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdMinFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_FUNDING_ROUND_ASC', + AssetTransactionsByUpdatedBlockIdMinFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_FUNDING_ROUND_DESC', + AssetTransactionsByUpdatedBlockIdMinIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + AssetTransactionsByUpdatedBlockIdMinIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + AssetTransactionsByUpdatedBlockIdMinInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC', + AssetTransactionsByUpdatedBlockIdMinInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC', + AssetTransactionsByUpdatedBlockIdMinInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_MEMO_ASC', + AssetTransactionsByUpdatedBlockIdMinInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_MEMO_DESC', + AssetTransactionsByUpdatedBlockIdMinNftIdsAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_NFT_IDS_ASC', + AssetTransactionsByUpdatedBlockIdMinNftIdsDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_NFT_IDS_DESC', + AssetTransactionsByUpdatedBlockIdMinToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdMinToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationAmountAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationAmountDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationDatetimeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationDatetimeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationEventIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationEventIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationNftIdsAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationNftIdsDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleAmountAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleAmountDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleAssetIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleAssetIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleDatetimeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleDatetimeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleEventIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleEventIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleEventIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleEventIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleNftIdsAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleNftIdsDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdSumAmountAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + AssetTransactionsByUpdatedBlockIdSumAmountDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + AssetTransactionsByUpdatedBlockIdSumAssetIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + AssetTransactionsByUpdatedBlockIdSumAssetIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + AssetTransactionsByUpdatedBlockIdSumBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AssetTransactionsByUpdatedBlockIdSumBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AssetTransactionsByUpdatedBlockIdSumCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AssetTransactionsByUpdatedBlockIdSumCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AssetTransactionsByUpdatedBlockIdSumCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdSumCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdSumDatetimeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + AssetTransactionsByUpdatedBlockIdSumDatetimeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + AssetTransactionsByUpdatedBlockIdSumEventIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + AssetTransactionsByUpdatedBlockIdSumEventIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + AssetTransactionsByUpdatedBlockIdSumEventIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_ASC', + AssetTransactionsByUpdatedBlockIdSumEventIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_DESC', + AssetTransactionsByUpdatedBlockIdSumExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EXTRINSIC_IDX_ASC', + AssetTransactionsByUpdatedBlockIdSumExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EXTRINSIC_IDX_DESC', + AssetTransactionsByUpdatedBlockIdSumFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdSumFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdSumFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_FUNDING_ROUND_ASC', + AssetTransactionsByUpdatedBlockIdSumFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_FUNDING_ROUND_DESC', + AssetTransactionsByUpdatedBlockIdSumIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + AssetTransactionsByUpdatedBlockIdSumIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + AssetTransactionsByUpdatedBlockIdSumInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC', + AssetTransactionsByUpdatedBlockIdSumInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC', + AssetTransactionsByUpdatedBlockIdSumInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_MEMO_ASC', + AssetTransactionsByUpdatedBlockIdSumInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_MEMO_DESC', + AssetTransactionsByUpdatedBlockIdSumNftIdsAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_NFT_IDS_ASC', + AssetTransactionsByUpdatedBlockIdSumNftIdsDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_NFT_IDS_DESC', + AssetTransactionsByUpdatedBlockIdSumToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdSumToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationAmountAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationAmountDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationDatetimeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationDatetimeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationEventIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationEventIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationNftIdsAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationNftIdsDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleAmountAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleAmountDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleDatetimeAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleDatetimeDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleEventIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleEventIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleNftIdsAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleNftIdsDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdAverageBlockRangeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AuthorizationsByCreatedBlockIdAverageBlockRangeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AuthorizationsByCreatedBlockIdAverageCreatedAtAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AuthorizationsByCreatedBlockIdAverageCreatedAtDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AuthorizationsByCreatedBlockIdAverageCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdAverageCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdAverageDataAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_DATA_ASC', + AuthorizationsByCreatedBlockIdAverageDataDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_DATA_DESC', + AuthorizationsByCreatedBlockIdAverageExpiryAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXPIRY_ASC', + AuthorizationsByCreatedBlockIdAverageExpiryDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXPIRY_DESC', + AuthorizationsByCreatedBlockIdAverageFromIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_ID_ASC', + AuthorizationsByCreatedBlockIdAverageFromIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_ID_DESC', + AuthorizationsByCreatedBlockIdAverageIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + AuthorizationsByCreatedBlockIdAverageIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + AuthorizationsByCreatedBlockIdAverageStatusAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_ASC', + AuthorizationsByCreatedBlockIdAverageStatusDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_DESC', + AuthorizationsByCreatedBlockIdAverageToIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_TO_ID_ASC', + AuthorizationsByCreatedBlockIdAverageToIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_TO_ID_DESC', + AuthorizationsByCreatedBlockIdAverageToKeyAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_TO_KEY_ASC', + AuthorizationsByCreatedBlockIdAverageToKeyDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_TO_KEY_DESC', + AuthorizationsByCreatedBlockIdAverageTypeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_ASC', + AuthorizationsByCreatedBlockIdAverageTypeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_DESC', + AuthorizationsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdCountAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_COUNT_ASC', + AuthorizationsByCreatedBlockIdCountDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_COUNT_DESC', + AuthorizationsByCreatedBlockIdDistinctCountBlockRangeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AuthorizationsByCreatedBlockIdDistinctCountBlockRangeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AuthorizationsByCreatedBlockIdDistinctCountCreatedAtAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AuthorizationsByCreatedBlockIdDistinctCountCreatedAtDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AuthorizationsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdDistinctCountDataAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATA_ASC', + AuthorizationsByCreatedBlockIdDistinctCountDataDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATA_DESC', + AuthorizationsByCreatedBlockIdDistinctCountExpiryAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_ASC', + AuthorizationsByCreatedBlockIdDistinctCountExpiryDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_DESC', + AuthorizationsByCreatedBlockIdDistinctCountFromIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_ASC', + AuthorizationsByCreatedBlockIdDistinctCountFromIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_DESC', + AuthorizationsByCreatedBlockIdDistinctCountIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AuthorizationsByCreatedBlockIdDistinctCountIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AuthorizationsByCreatedBlockIdDistinctCountStatusAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + AuthorizationsByCreatedBlockIdDistinctCountStatusDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + AuthorizationsByCreatedBlockIdDistinctCountToIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_ASC', + AuthorizationsByCreatedBlockIdDistinctCountToIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_DESC', + AuthorizationsByCreatedBlockIdDistinctCountToKeyAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_KEY_ASC', + AuthorizationsByCreatedBlockIdDistinctCountToKeyDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_KEY_DESC', + AuthorizationsByCreatedBlockIdDistinctCountTypeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + AuthorizationsByCreatedBlockIdDistinctCountTypeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + AuthorizationsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdMaxBlockRangeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AuthorizationsByCreatedBlockIdMaxBlockRangeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AuthorizationsByCreatedBlockIdMaxCreatedAtAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AuthorizationsByCreatedBlockIdMaxCreatedAtDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AuthorizationsByCreatedBlockIdMaxCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdMaxCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdMaxDataAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_DATA_ASC', + AuthorizationsByCreatedBlockIdMaxDataDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_DATA_DESC', + AuthorizationsByCreatedBlockIdMaxExpiryAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_EXPIRY_ASC', + AuthorizationsByCreatedBlockIdMaxExpiryDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_EXPIRY_DESC', + AuthorizationsByCreatedBlockIdMaxFromIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_FROM_ID_ASC', + AuthorizationsByCreatedBlockIdMaxFromIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_FROM_ID_DESC', + AuthorizationsByCreatedBlockIdMaxIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + AuthorizationsByCreatedBlockIdMaxIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + AuthorizationsByCreatedBlockIdMaxStatusAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_STATUS_ASC', + AuthorizationsByCreatedBlockIdMaxStatusDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_STATUS_DESC', + AuthorizationsByCreatedBlockIdMaxToIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_TO_ID_ASC', + AuthorizationsByCreatedBlockIdMaxToIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_TO_ID_DESC', + AuthorizationsByCreatedBlockIdMaxToKeyAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_TO_KEY_ASC', + AuthorizationsByCreatedBlockIdMaxToKeyDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_TO_KEY_DESC', + AuthorizationsByCreatedBlockIdMaxTypeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_TYPE_ASC', + AuthorizationsByCreatedBlockIdMaxTypeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_TYPE_DESC', + AuthorizationsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdMinBlockRangeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AuthorizationsByCreatedBlockIdMinBlockRangeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AuthorizationsByCreatedBlockIdMinCreatedAtAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AuthorizationsByCreatedBlockIdMinCreatedAtDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AuthorizationsByCreatedBlockIdMinCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdMinCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdMinDataAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_DATA_ASC', + AuthorizationsByCreatedBlockIdMinDataDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_DATA_DESC', + AuthorizationsByCreatedBlockIdMinExpiryAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_EXPIRY_ASC', + AuthorizationsByCreatedBlockIdMinExpiryDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_EXPIRY_DESC', + AuthorizationsByCreatedBlockIdMinFromIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_FROM_ID_ASC', + AuthorizationsByCreatedBlockIdMinFromIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_FROM_ID_DESC', + AuthorizationsByCreatedBlockIdMinIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + AuthorizationsByCreatedBlockIdMinIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + AuthorizationsByCreatedBlockIdMinStatusAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_STATUS_ASC', + AuthorizationsByCreatedBlockIdMinStatusDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_STATUS_DESC', + AuthorizationsByCreatedBlockIdMinToIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_TO_ID_ASC', + AuthorizationsByCreatedBlockIdMinToIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_TO_ID_DESC', + AuthorizationsByCreatedBlockIdMinToKeyAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_TO_KEY_ASC', + AuthorizationsByCreatedBlockIdMinToKeyDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_TO_KEY_DESC', + AuthorizationsByCreatedBlockIdMinTypeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_TYPE_ASC', + AuthorizationsByCreatedBlockIdMinTypeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_TYPE_DESC', + AuthorizationsByCreatedBlockIdMinUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdMinUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationDataAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATA_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationDataDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATA_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationExpiryAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationExpiryDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationFromIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationFromIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationStatusAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationStatusDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationToIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationToIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationToKeyAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_KEY_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationToKeyDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_KEY_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationTypeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationTypeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + AuthorizationsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdStddevSampleBlockRangeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AuthorizationsByCreatedBlockIdStddevSampleBlockRangeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AuthorizationsByCreatedBlockIdStddevSampleCreatedAtAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AuthorizationsByCreatedBlockIdStddevSampleCreatedAtDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AuthorizationsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdStddevSampleDataAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATA_ASC', + AuthorizationsByCreatedBlockIdStddevSampleDataDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATA_DESC', + AuthorizationsByCreatedBlockIdStddevSampleExpiryAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_ASC', + AuthorizationsByCreatedBlockIdStddevSampleExpiryDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_DESC', + AuthorizationsByCreatedBlockIdStddevSampleFromIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_ASC', + AuthorizationsByCreatedBlockIdStddevSampleFromIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_DESC', + AuthorizationsByCreatedBlockIdStddevSampleIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AuthorizationsByCreatedBlockIdStddevSampleIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AuthorizationsByCreatedBlockIdStddevSampleStatusAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + AuthorizationsByCreatedBlockIdStddevSampleStatusDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + AuthorizationsByCreatedBlockIdStddevSampleToIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_ASC', + AuthorizationsByCreatedBlockIdStddevSampleToIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_DESC', + AuthorizationsByCreatedBlockIdStddevSampleToKeyAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_KEY_ASC', + AuthorizationsByCreatedBlockIdStddevSampleToKeyDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_KEY_DESC', + AuthorizationsByCreatedBlockIdStddevSampleTypeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + AuthorizationsByCreatedBlockIdStddevSampleTypeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + AuthorizationsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdSumBlockRangeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AuthorizationsByCreatedBlockIdSumBlockRangeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AuthorizationsByCreatedBlockIdSumCreatedAtAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AuthorizationsByCreatedBlockIdSumCreatedAtDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AuthorizationsByCreatedBlockIdSumCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdSumCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdSumDataAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_DATA_ASC', + AuthorizationsByCreatedBlockIdSumDataDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_DATA_DESC', + AuthorizationsByCreatedBlockIdSumExpiryAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_EXPIRY_ASC', + AuthorizationsByCreatedBlockIdSumExpiryDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_EXPIRY_DESC', + AuthorizationsByCreatedBlockIdSumFromIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_FROM_ID_ASC', + AuthorizationsByCreatedBlockIdSumFromIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_FROM_ID_DESC', + AuthorizationsByCreatedBlockIdSumIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + AuthorizationsByCreatedBlockIdSumIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + AuthorizationsByCreatedBlockIdSumStatusAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_STATUS_ASC', + AuthorizationsByCreatedBlockIdSumStatusDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_STATUS_DESC', + AuthorizationsByCreatedBlockIdSumToIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_TO_ID_ASC', + AuthorizationsByCreatedBlockIdSumToIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_TO_ID_DESC', + AuthorizationsByCreatedBlockIdSumToKeyAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_TO_KEY_ASC', + AuthorizationsByCreatedBlockIdSumToKeyDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_TO_KEY_DESC', + AuthorizationsByCreatedBlockIdSumTypeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_TYPE_ASC', + AuthorizationsByCreatedBlockIdSumTypeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_TYPE_DESC', + AuthorizationsByCreatedBlockIdSumUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdSumUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationDataAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATA_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationDataDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATA_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationExpiryAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationExpiryDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationFromIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationFromIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationStatusAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationStatusDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationToIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationToIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationToKeyAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_KEY_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationToKeyDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_KEY_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationTypeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationTypeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + AuthorizationsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleDataAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleDataDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleExpiryAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleExpiryDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleFromIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleFromIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleStatusAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleStatusDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleToIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleToIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleToKeyAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_KEY_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleToKeyDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_KEY_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleTypeAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleTypeDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + AuthorizationsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AuthorizationsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdAverageBlockRangeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + AuthorizationsByUpdatedBlockIdAverageBlockRangeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + AuthorizationsByUpdatedBlockIdAverageCreatedAtAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + AuthorizationsByUpdatedBlockIdAverageCreatedAtDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + AuthorizationsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdAverageDataAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_DATA_ASC', + AuthorizationsByUpdatedBlockIdAverageDataDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_DATA_DESC', + AuthorizationsByUpdatedBlockIdAverageExpiryAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXPIRY_ASC', + AuthorizationsByUpdatedBlockIdAverageExpiryDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXPIRY_DESC', + AuthorizationsByUpdatedBlockIdAverageFromIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_ID_ASC', + AuthorizationsByUpdatedBlockIdAverageFromIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_ID_DESC', + AuthorizationsByUpdatedBlockIdAverageIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + AuthorizationsByUpdatedBlockIdAverageIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + AuthorizationsByUpdatedBlockIdAverageStatusAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_ASC', + AuthorizationsByUpdatedBlockIdAverageStatusDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_DESC', + AuthorizationsByUpdatedBlockIdAverageToIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ID_ASC', + AuthorizationsByUpdatedBlockIdAverageToIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ID_DESC', + AuthorizationsByUpdatedBlockIdAverageToKeyAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_KEY_ASC', + AuthorizationsByUpdatedBlockIdAverageToKeyDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_KEY_DESC', + AuthorizationsByUpdatedBlockIdAverageTypeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_ASC', + AuthorizationsByUpdatedBlockIdAverageTypeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_DESC', + AuthorizationsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdCountAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + AuthorizationsByUpdatedBlockIdCountDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountDataAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATA_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountDataDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATA_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountExpiryAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountExpiryDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountFromIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountFromIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountStatusAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountStatusDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountToIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountToIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountToKeyAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_KEY_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountToKeyDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_KEY_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountTypeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountTypeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + AuthorizationsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdMaxBlockRangeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + AuthorizationsByUpdatedBlockIdMaxBlockRangeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + AuthorizationsByUpdatedBlockIdMaxCreatedAtAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + AuthorizationsByUpdatedBlockIdMaxCreatedAtDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + AuthorizationsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdMaxDataAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_DATA_ASC', + AuthorizationsByUpdatedBlockIdMaxDataDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_DATA_DESC', + AuthorizationsByUpdatedBlockIdMaxExpiryAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_EXPIRY_ASC', + AuthorizationsByUpdatedBlockIdMaxExpiryDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_EXPIRY_DESC', + AuthorizationsByUpdatedBlockIdMaxFromIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_FROM_ID_ASC', + AuthorizationsByUpdatedBlockIdMaxFromIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_FROM_ID_DESC', + AuthorizationsByUpdatedBlockIdMaxIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + AuthorizationsByUpdatedBlockIdMaxIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + AuthorizationsByUpdatedBlockIdMaxStatusAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_STATUS_ASC', + AuthorizationsByUpdatedBlockIdMaxStatusDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_STATUS_DESC', + AuthorizationsByUpdatedBlockIdMaxToIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_TO_ID_ASC', + AuthorizationsByUpdatedBlockIdMaxToIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_TO_ID_DESC', + AuthorizationsByUpdatedBlockIdMaxToKeyAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_TO_KEY_ASC', + AuthorizationsByUpdatedBlockIdMaxToKeyDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_TO_KEY_DESC', + AuthorizationsByUpdatedBlockIdMaxTypeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_TYPE_ASC', + AuthorizationsByUpdatedBlockIdMaxTypeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_TYPE_DESC', + AuthorizationsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdMinBlockRangeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + AuthorizationsByUpdatedBlockIdMinBlockRangeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + AuthorizationsByUpdatedBlockIdMinCreatedAtAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + AuthorizationsByUpdatedBlockIdMinCreatedAtDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + AuthorizationsByUpdatedBlockIdMinCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdMinCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdMinDataAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_DATA_ASC', + AuthorizationsByUpdatedBlockIdMinDataDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_DATA_DESC', + AuthorizationsByUpdatedBlockIdMinExpiryAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_EXPIRY_ASC', + AuthorizationsByUpdatedBlockIdMinExpiryDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_EXPIRY_DESC', + AuthorizationsByUpdatedBlockIdMinFromIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_FROM_ID_ASC', + AuthorizationsByUpdatedBlockIdMinFromIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_FROM_ID_DESC', + AuthorizationsByUpdatedBlockIdMinIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + AuthorizationsByUpdatedBlockIdMinIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + AuthorizationsByUpdatedBlockIdMinStatusAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_STATUS_ASC', + AuthorizationsByUpdatedBlockIdMinStatusDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_STATUS_DESC', + AuthorizationsByUpdatedBlockIdMinToIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_TO_ID_ASC', + AuthorizationsByUpdatedBlockIdMinToIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_TO_ID_DESC', + AuthorizationsByUpdatedBlockIdMinToKeyAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_TO_KEY_ASC', + AuthorizationsByUpdatedBlockIdMinToKeyDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_TO_KEY_DESC', + AuthorizationsByUpdatedBlockIdMinTypeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_TYPE_ASC', + AuthorizationsByUpdatedBlockIdMinTypeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_TYPE_DESC', + AuthorizationsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationDataAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATA_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationDataDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATA_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationExpiryAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationExpiryDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationFromIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationFromIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationStatusAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationStatusDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationToIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationToIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationToKeyAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_KEY_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationToKeyDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_KEY_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationTypeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationTypeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + AuthorizationsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleDataAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATA_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleDataDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATA_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleExpiryAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleExpiryDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleFromIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleFromIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleStatusAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleStatusDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleToIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleToIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleToKeyAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_KEY_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleToKeyDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_KEY_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleTypeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleTypeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + AuthorizationsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdSumBlockRangeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + AuthorizationsByUpdatedBlockIdSumBlockRangeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + AuthorizationsByUpdatedBlockIdSumCreatedAtAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + AuthorizationsByUpdatedBlockIdSumCreatedAtDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + AuthorizationsByUpdatedBlockIdSumCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdSumCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdSumDataAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_DATA_ASC', + AuthorizationsByUpdatedBlockIdSumDataDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_DATA_DESC', + AuthorizationsByUpdatedBlockIdSumExpiryAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_EXPIRY_ASC', + AuthorizationsByUpdatedBlockIdSumExpiryDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_EXPIRY_DESC', + AuthorizationsByUpdatedBlockIdSumFromIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_FROM_ID_ASC', + AuthorizationsByUpdatedBlockIdSumFromIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_FROM_ID_DESC', + AuthorizationsByUpdatedBlockIdSumIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + AuthorizationsByUpdatedBlockIdSumIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + AuthorizationsByUpdatedBlockIdSumStatusAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_STATUS_ASC', + AuthorizationsByUpdatedBlockIdSumStatusDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_STATUS_DESC', + AuthorizationsByUpdatedBlockIdSumToIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_TO_ID_ASC', + AuthorizationsByUpdatedBlockIdSumToIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_TO_ID_DESC', + AuthorizationsByUpdatedBlockIdSumToKeyAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_TO_KEY_ASC', + AuthorizationsByUpdatedBlockIdSumToKeyDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_TO_KEY_DESC', + AuthorizationsByUpdatedBlockIdSumTypeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_TYPE_ASC', + AuthorizationsByUpdatedBlockIdSumTypeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_TYPE_DESC', + AuthorizationsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationDataAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATA_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationDataDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATA_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationExpiryAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationExpiryDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationFromIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationFromIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationStatusAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationStatusDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationToIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationToIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationToKeyAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_KEY_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationToKeyDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_KEY_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationTypeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationTypeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + AuthorizationsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleDataAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleDataDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleExpiryAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleExpiryDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleFromIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleFromIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleStatusAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleStatusDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleToIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleToIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleToKeyAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_KEY_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleToKeyDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_KEY_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleTypeAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleTypeDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + AuthorizationsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AuthorizationsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + BlockIdAsc = 'BLOCK_ID_ASC', + BlockIdDesc = 'BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdAverageAmountAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + BridgeEventsByCreatedBlockIdAverageAmountDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + BridgeEventsByCreatedBlockIdAverageBlockRangeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + BridgeEventsByCreatedBlockIdAverageBlockRangeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + BridgeEventsByCreatedBlockIdAverageCreatedAtAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + BridgeEventsByCreatedBlockIdAverageCreatedAtDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + BridgeEventsByCreatedBlockIdAverageCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdAverageCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdAverageDatetimeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + BridgeEventsByCreatedBlockIdAverageDatetimeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + BridgeEventsByCreatedBlockIdAverageEventIdxAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + BridgeEventsByCreatedBlockIdAverageEventIdxDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + BridgeEventsByCreatedBlockIdAverageIdentityIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + BridgeEventsByCreatedBlockIdAverageIdentityIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + BridgeEventsByCreatedBlockIdAverageIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + BridgeEventsByCreatedBlockIdAverageIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + BridgeEventsByCreatedBlockIdAverageRecipientAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_RECIPIENT_ASC', + BridgeEventsByCreatedBlockIdAverageRecipientDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_RECIPIENT_DESC', + BridgeEventsByCreatedBlockIdAverageTxHashAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_TX_HASH_ASC', + BridgeEventsByCreatedBlockIdAverageTxHashDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_TX_HASH_DESC', + BridgeEventsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdCountAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + BridgeEventsByCreatedBlockIdCountDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + BridgeEventsByCreatedBlockIdDistinctCountAmountAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + BridgeEventsByCreatedBlockIdDistinctCountAmountDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + BridgeEventsByCreatedBlockIdDistinctCountBlockRangeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + BridgeEventsByCreatedBlockIdDistinctCountBlockRangeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + BridgeEventsByCreatedBlockIdDistinctCountCreatedAtAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + BridgeEventsByCreatedBlockIdDistinctCountCreatedAtDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + BridgeEventsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdDistinctCountDatetimeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + BridgeEventsByCreatedBlockIdDistinctCountDatetimeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + BridgeEventsByCreatedBlockIdDistinctCountEventIdxAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + BridgeEventsByCreatedBlockIdDistinctCountEventIdxDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + BridgeEventsByCreatedBlockIdDistinctCountIdentityIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + BridgeEventsByCreatedBlockIdDistinctCountIdentityIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + BridgeEventsByCreatedBlockIdDistinctCountIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + BridgeEventsByCreatedBlockIdDistinctCountIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + BridgeEventsByCreatedBlockIdDistinctCountRecipientAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RECIPIENT_ASC', + BridgeEventsByCreatedBlockIdDistinctCountRecipientDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RECIPIENT_DESC', + BridgeEventsByCreatedBlockIdDistinctCountTxHashAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TX_HASH_ASC', + BridgeEventsByCreatedBlockIdDistinctCountTxHashDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TX_HASH_DESC', + BridgeEventsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdMaxAmountAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + BridgeEventsByCreatedBlockIdMaxAmountDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + BridgeEventsByCreatedBlockIdMaxBlockRangeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + BridgeEventsByCreatedBlockIdMaxBlockRangeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + BridgeEventsByCreatedBlockIdMaxCreatedAtAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + BridgeEventsByCreatedBlockIdMaxCreatedAtDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + BridgeEventsByCreatedBlockIdMaxCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdMaxCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdMaxDatetimeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + BridgeEventsByCreatedBlockIdMaxDatetimeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + BridgeEventsByCreatedBlockIdMaxEventIdxAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + BridgeEventsByCreatedBlockIdMaxEventIdxDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + BridgeEventsByCreatedBlockIdMaxIdentityIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + BridgeEventsByCreatedBlockIdMaxIdentityIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + BridgeEventsByCreatedBlockIdMaxIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + BridgeEventsByCreatedBlockIdMaxIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + BridgeEventsByCreatedBlockIdMaxRecipientAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_RECIPIENT_ASC', + BridgeEventsByCreatedBlockIdMaxRecipientDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_RECIPIENT_DESC', + BridgeEventsByCreatedBlockIdMaxTxHashAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_TX_HASH_ASC', + BridgeEventsByCreatedBlockIdMaxTxHashDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_TX_HASH_DESC', + BridgeEventsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdMinAmountAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + BridgeEventsByCreatedBlockIdMinAmountDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + BridgeEventsByCreatedBlockIdMinBlockRangeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + BridgeEventsByCreatedBlockIdMinBlockRangeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + BridgeEventsByCreatedBlockIdMinCreatedAtAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + BridgeEventsByCreatedBlockIdMinCreatedAtDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + BridgeEventsByCreatedBlockIdMinCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdMinCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdMinDatetimeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + BridgeEventsByCreatedBlockIdMinDatetimeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + BridgeEventsByCreatedBlockIdMinEventIdxAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + BridgeEventsByCreatedBlockIdMinEventIdxDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + BridgeEventsByCreatedBlockIdMinIdentityIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + BridgeEventsByCreatedBlockIdMinIdentityIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + BridgeEventsByCreatedBlockIdMinIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + BridgeEventsByCreatedBlockIdMinIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + BridgeEventsByCreatedBlockIdMinRecipientAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_RECIPIENT_ASC', + BridgeEventsByCreatedBlockIdMinRecipientDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_RECIPIENT_DESC', + BridgeEventsByCreatedBlockIdMinTxHashAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_TX_HASH_ASC', + BridgeEventsByCreatedBlockIdMinTxHashDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_TX_HASH_DESC', + BridgeEventsByCreatedBlockIdMinUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdMinUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdStddevPopulationAmountAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + BridgeEventsByCreatedBlockIdStddevPopulationAmountDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + BridgeEventsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + BridgeEventsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + BridgeEventsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + BridgeEventsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + BridgeEventsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdStddevPopulationDatetimeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + BridgeEventsByCreatedBlockIdStddevPopulationDatetimeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + BridgeEventsByCreatedBlockIdStddevPopulationEventIdxAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + BridgeEventsByCreatedBlockIdStddevPopulationEventIdxDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + BridgeEventsByCreatedBlockIdStddevPopulationIdentityIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + BridgeEventsByCreatedBlockIdStddevPopulationIdentityIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + BridgeEventsByCreatedBlockIdStddevPopulationIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + BridgeEventsByCreatedBlockIdStddevPopulationIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + BridgeEventsByCreatedBlockIdStddevPopulationRecipientAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RECIPIENT_ASC', + BridgeEventsByCreatedBlockIdStddevPopulationRecipientDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RECIPIENT_DESC', + BridgeEventsByCreatedBlockIdStddevPopulationTxHashAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TX_HASH_ASC', + BridgeEventsByCreatedBlockIdStddevPopulationTxHashDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TX_HASH_DESC', + BridgeEventsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdStddevSampleAmountAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + BridgeEventsByCreatedBlockIdStddevSampleAmountDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + BridgeEventsByCreatedBlockIdStddevSampleBlockRangeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + BridgeEventsByCreatedBlockIdStddevSampleBlockRangeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + BridgeEventsByCreatedBlockIdStddevSampleCreatedAtAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + BridgeEventsByCreatedBlockIdStddevSampleCreatedAtDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + BridgeEventsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdStddevSampleDatetimeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + BridgeEventsByCreatedBlockIdStddevSampleDatetimeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + BridgeEventsByCreatedBlockIdStddevSampleEventIdxAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + BridgeEventsByCreatedBlockIdStddevSampleEventIdxDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + BridgeEventsByCreatedBlockIdStddevSampleIdentityIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + BridgeEventsByCreatedBlockIdStddevSampleIdentityIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + BridgeEventsByCreatedBlockIdStddevSampleIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + BridgeEventsByCreatedBlockIdStddevSampleIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + BridgeEventsByCreatedBlockIdStddevSampleRecipientAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RECIPIENT_ASC', + BridgeEventsByCreatedBlockIdStddevSampleRecipientDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RECIPIENT_DESC', + BridgeEventsByCreatedBlockIdStddevSampleTxHashAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TX_HASH_ASC', + BridgeEventsByCreatedBlockIdStddevSampleTxHashDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TX_HASH_DESC', + BridgeEventsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdSumAmountAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + BridgeEventsByCreatedBlockIdSumAmountDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + BridgeEventsByCreatedBlockIdSumBlockRangeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + BridgeEventsByCreatedBlockIdSumBlockRangeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + BridgeEventsByCreatedBlockIdSumCreatedAtAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + BridgeEventsByCreatedBlockIdSumCreatedAtDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + BridgeEventsByCreatedBlockIdSumCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdSumCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdSumDatetimeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + BridgeEventsByCreatedBlockIdSumDatetimeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + BridgeEventsByCreatedBlockIdSumEventIdxAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + BridgeEventsByCreatedBlockIdSumEventIdxDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + BridgeEventsByCreatedBlockIdSumIdentityIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + BridgeEventsByCreatedBlockIdSumIdentityIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + BridgeEventsByCreatedBlockIdSumIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + BridgeEventsByCreatedBlockIdSumIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + BridgeEventsByCreatedBlockIdSumRecipientAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_RECIPIENT_ASC', + BridgeEventsByCreatedBlockIdSumRecipientDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_RECIPIENT_DESC', + BridgeEventsByCreatedBlockIdSumTxHashAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_TX_HASH_ASC', + BridgeEventsByCreatedBlockIdSumTxHashDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_TX_HASH_DESC', + BridgeEventsByCreatedBlockIdSumUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdSumUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdVariancePopulationAmountAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + BridgeEventsByCreatedBlockIdVariancePopulationAmountDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + BridgeEventsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + BridgeEventsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + BridgeEventsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + BridgeEventsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + BridgeEventsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdVariancePopulationDatetimeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + BridgeEventsByCreatedBlockIdVariancePopulationDatetimeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + BridgeEventsByCreatedBlockIdVariancePopulationEventIdxAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + BridgeEventsByCreatedBlockIdVariancePopulationEventIdxDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + BridgeEventsByCreatedBlockIdVariancePopulationIdentityIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + BridgeEventsByCreatedBlockIdVariancePopulationIdentityIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + BridgeEventsByCreatedBlockIdVariancePopulationIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + BridgeEventsByCreatedBlockIdVariancePopulationIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + BridgeEventsByCreatedBlockIdVariancePopulationRecipientAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RECIPIENT_ASC', + BridgeEventsByCreatedBlockIdVariancePopulationRecipientDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RECIPIENT_DESC', + BridgeEventsByCreatedBlockIdVariancePopulationTxHashAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TX_HASH_ASC', + BridgeEventsByCreatedBlockIdVariancePopulationTxHashDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TX_HASH_DESC', + BridgeEventsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdVarianceSampleAmountAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + BridgeEventsByCreatedBlockIdVarianceSampleAmountDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + BridgeEventsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + BridgeEventsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + BridgeEventsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + BridgeEventsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + BridgeEventsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + BridgeEventsByCreatedBlockIdVarianceSampleDatetimeAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + BridgeEventsByCreatedBlockIdVarianceSampleDatetimeDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + BridgeEventsByCreatedBlockIdVarianceSampleEventIdxAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + BridgeEventsByCreatedBlockIdVarianceSampleEventIdxDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + BridgeEventsByCreatedBlockIdVarianceSampleIdentityIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + BridgeEventsByCreatedBlockIdVarianceSampleIdentityIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + BridgeEventsByCreatedBlockIdVarianceSampleIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + BridgeEventsByCreatedBlockIdVarianceSampleIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + BridgeEventsByCreatedBlockIdVarianceSampleRecipientAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RECIPIENT_ASC', + BridgeEventsByCreatedBlockIdVarianceSampleRecipientDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RECIPIENT_DESC', + BridgeEventsByCreatedBlockIdVarianceSampleTxHashAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TX_HASH_ASC', + BridgeEventsByCreatedBlockIdVarianceSampleTxHashDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TX_HASH_DESC', + BridgeEventsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + BridgeEventsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdAverageAmountAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + BridgeEventsByUpdatedBlockIdAverageAmountDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + BridgeEventsByUpdatedBlockIdAverageBlockRangeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + BridgeEventsByUpdatedBlockIdAverageBlockRangeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + BridgeEventsByUpdatedBlockIdAverageCreatedAtAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + BridgeEventsByUpdatedBlockIdAverageCreatedAtDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + BridgeEventsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdAverageDatetimeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + BridgeEventsByUpdatedBlockIdAverageDatetimeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + BridgeEventsByUpdatedBlockIdAverageEventIdxAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + BridgeEventsByUpdatedBlockIdAverageEventIdxDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + BridgeEventsByUpdatedBlockIdAverageIdentityIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + BridgeEventsByUpdatedBlockIdAverageIdentityIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + BridgeEventsByUpdatedBlockIdAverageIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + BridgeEventsByUpdatedBlockIdAverageIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + BridgeEventsByUpdatedBlockIdAverageRecipientAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_RECIPIENT_ASC', + BridgeEventsByUpdatedBlockIdAverageRecipientDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_RECIPIENT_DESC', + BridgeEventsByUpdatedBlockIdAverageTxHashAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TX_HASH_ASC', + BridgeEventsByUpdatedBlockIdAverageTxHashDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TX_HASH_DESC', + BridgeEventsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdCountAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + BridgeEventsByUpdatedBlockIdCountDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + BridgeEventsByUpdatedBlockIdDistinctCountAmountAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + BridgeEventsByUpdatedBlockIdDistinctCountAmountDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + BridgeEventsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + BridgeEventsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + BridgeEventsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + BridgeEventsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + BridgeEventsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdDistinctCountDatetimeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + BridgeEventsByUpdatedBlockIdDistinctCountDatetimeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + BridgeEventsByUpdatedBlockIdDistinctCountEventIdxAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + BridgeEventsByUpdatedBlockIdDistinctCountEventIdxDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + BridgeEventsByUpdatedBlockIdDistinctCountIdentityIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + BridgeEventsByUpdatedBlockIdDistinctCountIdentityIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + BridgeEventsByUpdatedBlockIdDistinctCountIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + BridgeEventsByUpdatedBlockIdDistinctCountIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + BridgeEventsByUpdatedBlockIdDistinctCountRecipientAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RECIPIENT_ASC', + BridgeEventsByUpdatedBlockIdDistinctCountRecipientDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RECIPIENT_DESC', + BridgeEventsByUpdatedBlockIdDistinctCountTxHashAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TX_HASH_ASC', + BridgeEventsByUpdatedBlockIdDistinctCountTxHashDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TX_HASH_DESC', + BridgeEventsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdMaxAmountAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + BridgeEventsByUpdatedBlockIdMaxAmountDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + BridgeEventsByUpdatedBlockIdMaxBlockRangeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + BridgeEventsByUpdatedBlockIdMaxBlockRangeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + BridgeEventsByUpdatedBlockIdMaxCreatedAtAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + BridgeEventsByUpdatedBlockIdMaxCreatedAtDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + BridgeEventsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdMaxDatetimeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + BridgeEventsByUpdatedBlockIdMaxDatetimeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + BridgeEventsByUpdatedBlockIdMaxEventIdxAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + BridgeEventsByUpdatedBlockIdMaxEventIdxDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + BridgeEventsByUpdatedBlockIdMaxIdentityIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + BridgeEventsByUpdatedBlockIdMaxIdentityIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + BridgeEventsByUpdatedBlockIdMaxIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + BridgeEventsByUpdatedBlockIdMaxIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + BridgeEventsByUpdatedBlockIdMaxRecipientAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_RECIPIENT_ASC', + BridgeEventsByUpdatedBlockIdMaxRecipientDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_RECIPIENT_DESC', + BridgeEventsByUpdatedBlockIdMaxTxHashAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_TX_HASH_ASC', + BridgeEventsByUpdatedBlockIdMaxTxHashDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_TX_HASH_DESC', + BridgeEventsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdMinAmountAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + BridgeEventsByUpdatedBlockIdMinAmountDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + BridgeEventsByUpdatedBlockIdMinBlockRangeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + BridgeEventsByUpdatedBlockIdMinBlockRangeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + BridgeEventsByUpdatedBlockIdMinCreatedAtAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + BridgeEventsByUpdatedBlockIdMinCreatedAtDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + BridgeEventsByUpdatedBlockIdMinCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdMinCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdMinDatetimeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + BridgeEventsByUpdatedBlockIdMinDatetimeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + BridgeEventsByUpdatedBlockIdMinEventIdxAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + BridgeEventsByUpdatedBlockIdMinEventIdxDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + BridgeEventsByUpdatedBlockIdMinIdentityIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + BridgeEventsByUpdatedBlockIdMinIdentityIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + BridgeEventsByUpdatedBlockIdMinIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + BridgeEventsByUpdatedBlockIdMinIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + BridgeEventsByUpdatedBlockIdMinRecipientAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_RECIPIENT_ASC', + BridgeEventsByUpdatedBlockIdMinRecipientDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_RECIPIENT_DESC', + BridgeEventsByUpdatedBlockIdMinTxHashAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_TX_HASH_ASC', + BridgeEventsByUpdatedBlockIdMinTxHashDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_TX_HASH_DESC', + BridgeEventsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdStddevPopulationAmountAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + BridgeEventsByUpdatedBlockIdStddevPopulationAmountDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + BridgeEventsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + BridgeEventsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + BridgeEventsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + BridgeEventsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + BridgeEventsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdStddevPopulationDatetimeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + BridgeEventsByUpdatedBlockIdStddevPopulationDatetimeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + BridgeEventsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + BridgeEventsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + BridgeEventsByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + BridgeEventsByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + BridgeEventsByUpdatedBlockIdStddevPopulationIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + BridgeEventsByUpdatedBlockIdStddevPopulationIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + BridgeEventsByUpdatedBlockIdStddevPopulationRecipientAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RECIPIENT_ASC', + BridgeEventsByUpdatedBlockIdStddevPopulationRecipientDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RECIPIENT_DESC', + BridgeEventsByUpdatedBlockIdStddevPopulationTxHashAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TX_HASH_ASC', + BridgeEventsByUpdatedBlockIdStddevPopulationTxHashDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TX_HASH_DESC', + BridgeEventsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdStddevSampleAmountAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + BridgeEventsByUpdatedBlockIdStddevSampleAmountDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + BridgeEventsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + BridgeEventsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + BridgeEventsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + BridgeEventsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + BridgeEventsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdStddevSampleDatetimeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + BridgeEventsByUpdatedBlockIdStddevSampleDatetimeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + BridgeEventsByUpdatedBlockIdStddevSampleEventIdxAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + BridgeEventsByUpdatedBlockIdStddevSampleEventIdxDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + BridgeEventsByUpdatedBlockIdStddevSampleIdentityIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + BridgeEventsByUpdatedBlockIdStddevSampleIdentityIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + BridgeEventsByUpdatedBlockIdStddevSampleIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + BridgeEventsByUpdatedBlockIdStddevSampleIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + BridgeEventsByUpdatedBlockIdStddevSampleRecipientAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RECIPIENT_ASC', + BridgeEventsByUpdatedBlockIdStddevSampleRecipientDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RECIPIENT_DESC', + BridgeEventsByUpdatedBlockIdStddevSampleTxHashAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TX_HASH_ASC', + BridgeEventsByUpdatedBlockIdStddevSampleTxHashDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TX_HASH_DESC', + BridgeEventsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdSumAmountAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + BridgeEventsByUpdatedBlockIdSumAmountDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + BridgeEventsByUpdatedBlockIdSumBlockRangeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + BridgeEventsByUpdatedBlockIdSumBlockRangeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + BridgeEventsByUpdatedBlockIdSumCreatedAtAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + BridgeEventsByUpdatedBlockIdSumCreatedAtDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + BridgeEventsByUpdatedBlockIdSumCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdSumCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdSumDatetimeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + BridgeEventsByUpdatedBlockIdSumDatetimeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + BridgeEventsByUpdatedBlockIdSumEventIdxAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + BridgeEventsByUpdatedBlockIdSumEventIdxDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + BridgeEventsByUpdatedBlockIdSumIdentityIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + BridgeEventsByUpdatedBlockIdSumIdentityIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + BridgeEventsByUpdatedBlockIdSumIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + BridgeEventsByUpdatedBlockIdSumIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + BridgeEventsByUpdatedBlockIdSumRecipientAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_RECIPIENT_ASC', + BridgeEventsByUpdatedBlockIdSumRecipientDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_RECIPIENT_DESC', + BridgeEventsByUpdatedBlockIdSumTxHashAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_TX_HASH_ASC', + BridgeEventsByUpdatedBlockIdSumTxHashDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_TX_HASH_DESC', + BridgeEventsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdVariancePopulationAmountAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + BridgeEventsByUpdatedBlockIdVariancePopulationAmountDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + BridgeEventsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + BridgeEventsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + BridgeEventsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + BridgeEventsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + BridgeEventsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdVariancePopulationDatetimeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + BridgeEventsByUpdatedBlockIdVariancePopulationDatetimeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + BridgeEventsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + BridgeEventsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + BridgeEventsByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + BridgeEventsByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + BridgeEventsByUpdatedBlockIdVariancePopulationIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + BridgeEventsByUpdatedBlockIdVariancePopulationIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + BridgeEventsByUpdatedBlockIdVariancePopulationRecipientAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RECIPIENT_ASC', + BridgeEventsByUpdatedBlockIdVariancePopulationRecipientDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RECIPIENT_DESC', + BridgeEventsByUpdatedBlockIdVariancePopulationTxHashAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TX_HASH_ASC', + BridgeEventsByUpdatedBlockIdVariancePopulationTxHashDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TX_HASH_DESC', + BridgeEventsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdVarianceSampleAmountAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + BridgeEventsByUpdatedBlockIdVarianceSampleAmountDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + BridgeEventsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + BridgeEventsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + BridgeEventsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + BridgeEventsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + BridgeEventsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + BridgeEventsByUpdatedBlockIdVarianceSampleDatetimeAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + BridgeEventsByUpdatedBlockIdVarianceSampleDatetimeDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + BridgeEventsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + BridgeEventsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + BridgeEventsByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + BridgeEventsByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + BridgeEventsByUpdatedBlockIdVarianceSampleIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + BridgeEventsByUpdatedBlockIdVarianceSampleIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + BridgeEventsByUpdatedBlockIdVarianceSampleRecipientAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RECIPIENT_ASC', + BridgeEventsByUpdatedBlockIdVarianceSampleRecipientDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RECIPIENT_DESC', + BridgeEventsByUpdatedBlockIdVarianceSampleTxHashAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TX_HASH_ASC', + BridgeEventsByUpdatedBlockIdVarianceSampleTxHashDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TX_HASH_DESC', + BridgeEventsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + BridgeEventsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'BRIDGE_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdAverageBlockRangeAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ChildIdentitiesByCreatedBlockIdAverageBlockRangeDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ChildIdentitiesByCreatedBlockIdAverageChildIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_CHILD_ID_ASC', + ChildIdentitiesByCreatedBlockIdAverageChildIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_CHILD_ID_DESC', + ChildIdentitiesByCreatedBlockIdAverageCreatedAtAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ChildIdentitiesByCreatedBlockIdAverageCreatedAtDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ChildIdentitiesByCreatedBlockIdAverageCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdAverageCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdAverageIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ChildIdentitiesByCreatedBlockIdAverageIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ChildIdentitiesByCreatedBlockIdAverageParentIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_PARENT_ID_ASC', + ChildIdentitiesByCreatedBlockIdAverageParentIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_PARENT_ID_DESC', + ChildIdentitiesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdCountAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_COUNT_ASC', + ChildIdentitiesByCreatedBlockIdCountDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_COUNT_DESC', + ChildIdentitiesByCreatedBlockIdDistinctCountBlockRangeAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ChildIdentitiesByCreatedBlockIdDistinctCountBlockRangeDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ChildIdentitiesByCreatedBlockIdDistinctCountChildIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CHILD_ID_ASC', + ChildIdentitiesByCreatedBlockIdDistinctCountChildIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CHILD_ID_DESC', + ChildIdentitiesByCreatedBlockIdDistinctCountCreatedAtAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ChildIdentitiesByCreatedBlockIdDistinctCountCreatedAtDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ChildIdentitiesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdDistinctCountIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ChildIdentitiesByCreatedBlockIdDistinctCountIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ChildIdentitiesByCreatedBlockIdDistinctCountParentIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PARENT_ID_ASC', + ChildIdentitiesByCreatedBlockIdDistinctCountParentIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PARENT_ID_DESC', + ChildIdentitiesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdMaxBlockRangeAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ChildIdentitiesByCreatedBlockIdMaxBlockRangeDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ChildIdentitiesByCreatedBlockIdMaxChildIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_CHILD_ID_ASC', + ChildIdentitiesByCreatedBlockIdMaxChildIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_CHILD_ID_DESC', + ChildIdentitiesByCreatedBlockIdMaxCreatedAtAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ChildIdentitiesByCreatedBlockIdMaxCreatedAtDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ChildIdentitiesByCreatedBlockIdMaxCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdMaxCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdMaxIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ChildIdentitiesByCreatedBlockIdMaxIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ChildIdentitiesByCreatedBlockIdMaxParentIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_PARENT_ID_ASC', + ChildIdentitiesByCreatedBlockIdMaxParentIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_PARENT_ID_DESC', + ChildIdentitiesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdMinBlockRangeAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ChildIdentitiesByCreatedBlockIdMinBlockRangeDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ChildIdentitiesByCreatedBlockIdMinChildIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_CHILD_ID_ASC', + ChildIdentitiesByCreatedBlockIdMinChildIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_CHILD_ID_DESC', + ChildIdentitiesByCreatedBlockIdMinCreatedAtAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ChildIdentitiesByCreatedBlockIdMinCreatedAtDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ChildIdentitiesByCreatedBlockIdMinCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdMinCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdMinIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ChildIdentitiesByCreatedBlockIdMinIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ChildIdentitiesByCreatedBlockIdMinParentIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_PARENT_ID_ASC', + ChildIdentitiesByCreatedBlockIdMinParentIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_PARENT_ID_DESC', + ChildIdentitiesByCreatedBlockIdMinUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdMinUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ChildIdentitiesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ChildIdentitiesByCreatedBlockIdStddevPopulationChildIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CHILD_ID_ASC', + ChildIdentitiesByCreatedBlockIdStddevPopulationChildIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CHILD_ID_DESC', + ChildIdentitiesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ChildIdentitiesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ChildIdentitiesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdStddevPopulationIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ChildIdentitiesByCreatedBlockIdStddevPopulationIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ChildIdentitiesByCreatedBlockIdStddevPopulationParentIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PARENT_ID_ASC', + ChildIdentitiesByCreatedBlockIdStddevPopulationParentIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PARENT_ID_DESC', + ChildIdentitiesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdStddevSampleBlockRangeAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ChildIdentitiesByCreatedBlockIdStddevSampleBlockRangeDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ChildIdentitiesByCreatedBlockIdStddevSampleChildIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CHILD_ID_ASC', + ChildIdentitiesByCreatedBlockIdStddevSampleChildIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CHILD_ID_DESC', + ChildIdentitiesByCreatedBlockIdStddevSampleCreatedAtAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ChildIdentitiesByCreatedBlockIdStddevSampleCreatedAtDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ChildIdentitiesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdStddevSampleIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ChildIdentitiesByCreatedBlockIdStddevSampleIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ChildIdentitiesByCreatedBlockIdStddevSampleParentIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PARENT_ID_ASC', + ChildIdentitiesByCreatedBlockIdStddevSampleParentIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PARENT_ID_DESC', + ChildIdentitiesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdSumBlockRangeAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ChildIdentitiesByCreatedBlockIdSumBlockRangeDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ChildIdentitiesByCreatedBlockIdSumChildIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_CHILD_ID_ASC', + ChildIdentitiesByCreatedBlockIdSumChildIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_CHILD_ID_DESC', + ChildIdentitiesByCreatedBlockIdSumCreatedAtAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ChildIdentitiesByCreatedBlockIdSumCreatedAtDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ChildIdentitiesByCreatedBlockIdSumCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdSumCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdSumIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ChildIdentitiesByCreatedBlockIdSumIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ChildIdentitiesByCreatedBlockIdSumParentIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_PARENT_ID_ASC', + ChildIdentitiesByCreatedBlockIdSumParentIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_PARENT_ID_DESC', + ChildIdentitiesByCreatedBlockIdSumUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdSumUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ChildIdentitiesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ChildIdentitiesByCreatedBlockIdVariancePopulationChildIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CHILD_ID_ASC', + ChildIdentitiesByCreatedBlockIdVariancePopulationChildIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CHILD_ID_DESC', + ChildIdentitiesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ChildIdentitiesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ChildIdentitiesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdVariancePopulationIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ChildIdentitiesByCreatedBlockIdVariancePopulationIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ChildIdentitiesByCreatedBlockIdVariancePopulationParentIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PARENT_ID_ASC', + ChildIdentitiesByCreatedBlockIdVariancePopulationParentIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PARENT_ID_DESC', + ChildIdentitiesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ChildIdentitiesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ChildIdentitiesByCreatedBlockIdVarianceSampleChildIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CHILD_ID_ASC', + ChildIdentitiesByCreatedBlockIdVarianceSampleChildIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CHILD_ID_DESC', + ChildIdentitiesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ChildIdentitiesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ChildIdentitiesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByCreatedBlockIdVarianceSampleIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ChildIdentitiesByCreatedBlockIdVarianceSampleIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ChildIdentitiesByCreatedBlockIdVarianceSampleParentIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PARENT_ID_ASC', + ChildIdentitiesByCreatedBlockIdVarianceSampleParentIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PARENT_ID_DESC', + ChildIdentitiesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdAverageBlockRangeAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ChildIdentitiesByUpdatedBlockIdAverageBlockRangeDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ChildIdentitiesByUpdatedBlockIdAverageChildIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_CHILD_ID_ASC', + ChildIdentitiesByUpdatedBlockIdAverageChildIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_CHILD_ID_DESC', + ChildIdentitiesByUpdatedBlockIdAverageCreatedAtAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ChildIdentitiesByUpdatedBlockIdAverageCreatedAtDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ChildIdentitiesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdAverageIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ChildIdentitiesByUpdatedBlockIdAverageIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ChildIdentitiesByUpdatedBlockIdAverageParentIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_PARENT_ID_ASC', + ChildIdentitiesByUpdatedBlockIdAverageParentIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_PARENT_ID_DESC', + ChildIdentitiesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdCountAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ChildIdentitiesByUpdatedBlockIdCountDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ChildIdentitiesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ChildIdentitiesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ChildIdentitiesByUpdatedBlockIdDistinctCountChildIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CHILD_ID_ASC', + ChildIdentitiesByUpdatedBlockIdDistinctCountChildIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CHILD_ID_DESC', + ChildIdentitiesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ChildIdentitiesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ChildIdentitiesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdDistinctCountIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ChildIdentitiesByUpdatedBlockIdDistinctCountIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ChildIdentitiesByUpdatedBlockIdDistinctCountParentIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PARENT_ID_ASC', + ChildIdentitiesByUpdatedBlockIdDistinctCountParentIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PARENT_ID_DESC', + ChildIdentitiesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdMaxBlockRangeAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ChildIdentitiesByUpdatedBlockIdMaxBlockRangeDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ChildIdentitiesByUpdatedBlockIdMaxChildIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_CHILD_ID_ASC', + ChildIdentitiesByUpdatedBlockIdMaxChildIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_CHILD_ID_DESC', + ChildIdentitiesByUpdatedBlockIdMaxCreatedAtAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ChildIdentitiesByUpdatedBlockIdMaxCreatedAtDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ChildIdentitiesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdMaxIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ChildIdentitiesByUpdatedBlockIdMaxIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ChildIdentitiesByUpdatedBlockIdMaxParentIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_PARENT_ID_ASC', + ChildIdentitiesByUpdatedBlockIdMaxParentIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_PARENT_ID_DESC', + ChildIdentitiesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdMinBlockRangeAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ChildIdentitiesByUpdatedBlockIdMinBlockRangeDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ChildIdentitiesByUpdatedBlockIdMinChildIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_CHILD_ID_ASC', + ChildIdentitiesByUpdatedBlockIdMinChildIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_CHILD_ID_DESC', + ChildIdentitiesByUpdatedBlockIdMinCreatedAtAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ChildIdentitiesByUpdatedBlockIdMinCreatedAtDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ChildIdentitiesByUpdatedBlockIdMinCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdMinCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdMinIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ChildIdentitiesByUpdatedBlockIdMinIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ChildIdentitiesByUpdatedBlockIdMinParentIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_PARENT_ID_ASC', + ChildIdentitiesByUpdatedBlockIdMinParentIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_PARENT_ID_DESC', + ChildIdentitiesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationChildIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CHILD_ID_ASC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationChildIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CHILD_ID_DESC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationParentIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PARENT_ID_ASC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationParentIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PARENT_ID_DESC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ChildIdentitiesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ChildIdentitiesByUpdatedBlockIdStddevSampleChildIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CHILD_ID_ASC', + ChildIdentitiesByUpdatedBlockIdStddevSampleChildIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CHILD_ID_DESC', + ChildIdentitiesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ChildIdentitiesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ChildIdentitiesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdStddevSampleIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ChildIdentitiesByUpdatedBlockIdStddevSampleIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ChildIdentitiesByUpdatedBlockIdStddevSampleParentIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PARENT_ID_ASC', + ChildIdentitiesByUpdatedBlockIdStddevSampleParentIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PARENT_ID_DESC', + ChildIdentitiesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdSumBlockRangeAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ChildIdentitiesByUpdatedBlockIdSumBlockRangeDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ChildIdentitiesByUpdatedBlockIdSumChildIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_CHILD_ID_ASC', + ChildIdentitiesByUpdatedBlockIdSumChildIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_CHILD_ID_DESC', + ChildIdentitiesByUpdatedBlockIdSumCreatedAtAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ChildIdentitiesByUpdatedBlockIdSumCreatedAtDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ChildIdentitiesByUpdatedBlockIdSumCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdSumCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdSumIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ChildIdentitiesByUpdatedBlockIdSumIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ChildIdentitiesByUpdatedBlockIdSumParentIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_PARENT_ID_ASC', + ChildIdentitiesByUpdatedBlockIdSumParentIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_PARENT_ID_DESC', + ChildIdentitiesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationChildIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CHILD_ID_ASC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationChildIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CHILD_ID_DESC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationParentIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PARENT_ID_ASC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationParentIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PARENT_ID_DESC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleChildIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CHILD_ID_ASC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleChildIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CHILD_ID_DESC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleParentIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PARENT_ID_ASC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleParentIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PARENT_ID_DESC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ChildIdentitiesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CHILD_IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdAverageBlockRangeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ClaimsByCreatedBlockIdAverageBlockRangeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ClaimsByCreatedBlockIdAverageCddIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_CDD_ID_ASC', + ClaimsByCreatedBlockIdAverageCddIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_CDD_ID_DESC', + ClaimsByCreatedBlockIdAverageCreatedAtAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ClaimsByCreatedBlockIdAverageCreatedAtDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ClaimsByCreatedBlockIdAverageCreatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdAverageCreatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdAverageCustomClaimTypeIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByCreatedBlockIdAverageCustomClaimTypeIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByCreatedBlockIdAverageEventIdxAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ClaimsByCreatedBlockIdAverageEventIdxDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ClaimsByCreatedBlockIdAverageExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_EXPIRY_ASC', + ClaimsByCreatedBlockIdAverageExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_EXPIRY_DESC', + ClaimsByCreatedBlockIdAverageFilterExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_FILTER_EXPIRY_ASC', + ClaimsByCreatedBlockIdAverageFilterExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_FILTER_EXPIRY_DESC', + ClaimsByCreatedBlockIdAverageIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ClaimsByCreatedBlockIdAverageIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ClaimsByCreatedBlockIdAverageIssuanceDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_ISSUANCE_DATE_ASC', + ClaimsByCreatedBlockIdAverageIssuanceDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_ISSUANCE_DATE_DESC', + ClaimsByCreatedBlockIdAverageIssuerIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_ISSUER_ID_ASC', + ClaimsByCreatedBlockIdAverageIssuerIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_ISSUER_ID_DESC', + ClaimsByCreatedBlockIdAverageJurisdictionAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_JURISDICTION_ASC', + ClaimsByCreatedBlockIdAverageJurisdictionDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_JURISDICTION_DESC', + ClaimsByCreatedBlockIdAverageLastUpdateDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_LAST_UPDATE_DATE_ASC', + ClaimsByCreatedBlockIdAverageLastUpdateDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_LAST_UPDATE_DATE_DESC', + ClaimsByCreatedBlockIdAverageRevokeDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_REVOKE_DATE_ASC', + ClaimsByCreatedBlockIdAverageRevokeDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_REVOKE_DATE_DESC', + ClaimsByCreatedBlockIdAverageScopeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_SCOPE_ASC', + ClaimsByCreatedBlockIdAverageScopeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_SCOPE_DESC', + ClaimsByCreatedBlockIdAverageTargetIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_TARGET_ID_ASC', + ClaimsByCreatedBlockIdAverageTargetIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_TARGET_ID_DESC', + ClaimsByCreatedBlockIdAverageTypeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_ASC', + ClaimsByCreatedBlockIdAverageTypeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_DESC', + ClaimsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdCountAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_COUNT_ASC', + ClaimsByCreatedBlockIdCountDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_COUNT_DESC', + ClaimsByCreatedBlockIdDistinctCountBlockRangeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ClaimsByCreatedBlockIdDistinctCountBlockRangeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ClaimsByCreatedBlockIdDistinctCountCddIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CDD_ID_ASC', + ClaimsByCreatedBlockIdDistinctCountCddIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CDD_ID_DESC', + ClaimsByCreatedBlockIdDistinctCountCreatedAtAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ClaimsByCreatedBlockIdDistinctCountCreatedAtDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ClaimsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdDistinctCountCustomClaimTypeIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByCreatedBlockIdDistinctCountCustomClaimTypeIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByCreatedBlockIdDistinctCountEventIdxAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ClaimsByCreatedBlockIdDistinctCountEventIdxDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ClaimsByCreatedBlockIdDistinctCountExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_ASC', + ClaimsByCreatedBlockIdDistinctCountExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_DESC', + ClaimsByCreatedBlockIdDistinctCountFilterExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FILTER_EXPIRY_ASC', + ClaimsByCreatedBlockIdDistinctCountFilterExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FILTER_EXPIRY_DESC', + ClaimsByCreatedBlockIdDistinctCountIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ClaimsByCreatedBlockIdDistinctCountIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ClaimsByCreatedBlockIdDistinctCountIssuanceDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ISSUANCE_DATE_ASC', + ClaimsByCreatedBlockIdDistinctCountIssuanceDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ISSUANCE_DATE_DESC', + ClaimsByCreatedBlockIdDistinctCountIssuerIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ISSUER_ID_ASC', + ClaimsByCreatedBlockIdDistinctCountIssuerIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ISSUER_ID_DESC', + ClaimsByCreatedBlockIdDistinctCountJurisdictionAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_JURISDICTION_ASC', + ClaimsByCreatedBlockIdDistinctCountJurisdictionDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_JURISDICTION_DESC', + ClaimsByCreatedBlockIdDistinctCountLastUpdateDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LAST_UPDATE_DATE_ASC', + ClaimsByCreatedBlockIdDistinctCountLastUpdateDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LAST_UPDATE_DATE_DESC', + ClaimsByCreatedBlockIdDistinctCountRevokeDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_REVOKE_DATE_ASC', + ClaimsByCreatedBlockIdDistinctCountRevokeDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_REVOKE_DATE_DESC', + ClaimsByCreatedBlockIdDistinctCountScopeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SCOPE_ASC', + ClaimsByCreatedBlockIdDistinctCountScopeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SCOPE_DESC', + ClaimsByCreatedBlockIdDistinctCountTargetIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TARGET_ID_ASC', + ClaimsByCreatedBlockIdDistinctCountTargetIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TARGET_ID_DESC', + ClaimsByCreatedBlockIdDistinctCountTypeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + ClaimsByCreatedBlockIdDistinctCountTypeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + ClaimsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdMaxBlockRangeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ClaimsByCreatedBlockIdMaxBlockRangeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ClaimsByCreatedBlockIdMaxCddIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_CDD_ID_ASC', + ClaimsByCreatedBlockIdMaxCddIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_CDD_ID_DESC', + ClaimsByCreatedBlockIdMaxCreatedAtAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ClaimsByCreatedBlockIdMaxCreatedAtDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ClaimsByCreatedBlockIdMaxCreatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdMaxCreatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdMaxCustomClaimTypeIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByCreatedBlockIdMaxCustomClaimTypeIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByCreatedBlockIdMaxEventIdxAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ClaimsByCreatedBlockIdMaxEventIdxDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ClaimsByCreatedBlockIdMaxExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_EXPIRY_ASC', + ClaimsByCreatedBlockIdMaxExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_EXPIRY_DESC', + ClaimsByCreatedBlockIdMaxFilterExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_FILTER_EXPIRY_ASC', + ClaimsByCreatedBlockIdMaxFilterExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_FILTER_EXPIRY_DESC', + ClaimsByCreatedBlockIdMaxIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ClaimsByCreatedBlockIdMaxIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ClaimsByCreatedBlockIdMaxIssuanceDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_ISSUANCE_DATE_ASC', + ClaimsByCreatedBlockIdMaxIssuanceDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_ISSUANCE_DATE_DESC', + ClaimsByCreatedBlockIdMaxIssuerIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_ISSUER_ID_ASC', + ClaimsByCreatedBlockIdMaxIssuerIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_ISSUER_ID_DESC', + ClaimsByCreatedBlockIdMaxJurisdictionAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_JURISDICTION_ASC', + ClaimsByCreatedBlockIdMaxJurisdictionDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_JURISDICTION_DESC', + ClaimsByCreatedBlockIdMaxLastUpdateDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_LAST_UPDATE_DATE_ASC', + ClaimsByCreatedBlockIdMaxLastUpdateDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_LAST_UPDATE_DATE_DESC', + ClaimsByCreatedBlockIdMaxRevokeDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_REVOKE_DATE_ASC', + ClaimsByCreatedBlockIdMaxRevokeDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_REVOKE_DATE_DESC', + ClaimsByCreatedBlockIdMaxScopeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_SCOPE_ASC', + ClaimsByCreatedBlockIdMaxScopeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_SCOPE_DESC', + ClaimsByCreatedBlockIdMaxTargetIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_TARGET_ID_ASC', + ClaimsByCreatedBlockIdMaxTargetIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_TARGET_ID_DESC', + ClaimsByCreatedBlockIdMaxTypeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_TYPE_ASC', + ClaimsByCreatedBlockIdMaxTypeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_TYPE_DESC', + ClaimsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdMinBlockRangeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ClaimsByCreatedBlockIdMinBlockRangeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ClaimsByCreatedBlockIdMinCddIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_CDD_ID_ASC', + ClaimsByCreatedBlockIdMinCddIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_CDD_ID_DESC', + ClaimsByCreatedBlockIdMinCreatedAtAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ClaimsByCreatedBlockIdMinCreatedAtDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ClaimsByCreatedBlockIdMinCreatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdMinCreatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdMinCustomClaimTypeIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByCreatedBlockIdMinCustomClaimTypeIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByCreatedBlockIdMinEventIdxAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ClaimsByCreatedBlockIdMinEventIdxDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ClaimsByCreatedBlockIdMinExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_EXPIRY_ASC', + ClaimsByCreatedBlockIdMinExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_EXPIRY_DESC', + ClaimsByCreatedBlockIdMinFilterExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_FILTER_EXPIRY_ASC', + ClaimsByCreatedBlockIdMinFilterExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_FILTER_EXPIRY_DESC', + ClaimsByCreatedBlockIdMinIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ClaimsByCreatedBlockIdMinIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ClaimsByCreatedBlockIdMinIssuanceDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_ISSUANCE_DATE_ASC', + ClaimsByCreatedBlockIdMinIssuanceDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_ISSUANCE_DATE_DESC', + ClaimsByCreatedBlockIdMinIssuerIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_ISSUER_ID_ASC', + ClaimsByCreatedBlockIdMinIssuerIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_ISSUER_ID_DESC', + ClaimsByCreatedBlockIdMinJurisdictionAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_JURISDICTION_ASC', + ClaimsByCreatedBlockIdMinJurisdictionDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_JURISDICTION_DESC', + ClaimsByCreatedBlockIdMinLastUpdateDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_LAST_UPDATE_DATE_ASC', + ClaimsByCreatedBlockIdMinLastUpdateDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_LAST_UPDATE_DATE_DESC', + ClaimsByCreatedBlockIdMinRevokeDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_REVOKE_DATE_ASC', + ClaimsByCreatedBlockIdMinRevokeDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_REVOKE_DATE_DESC', + ClaimsByCreatedBlockIdMinScopeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_SCOPE_ASC', + ClaimsByCreatedBlockIdMinScopeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_SCOPE_DESC', + ClaimsByCreatedBlockIdMinTargetIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_TARGET_ID_ASC', + ClaimsByCreatedBlockIdMinTargetIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_TARGET_ID_DESC', + ClaimsByCreatedBlockIdMinTypeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_TYPE_ASC', + ClaimsByCreatedBlockIdMinTypeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_TYPE_DESC', + ClaimsByCreatedBlockIdMinUpdatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdMinUpdatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ClaimsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ClaimsByCreatedBlockIdStddevPopulationCddIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CDD_ID_ASC', + ClaimsByCreatedBlockIdStddevPopulationCddIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CDD_ID_DESC', + ClaimsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ClaimsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ClaimsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdStddevPopulationCustomClaimTypeIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByCreatedBlockIdStddevPopulationCustomClaimTypeIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByCreatedBlockIdStddevPopulationEventIdxAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ClaimsByCreatedBlockIdStddevPopulationEventIdxDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ClaimsByCreatedBlockIdStddevPopulationExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_ASC', + ClaimsByCreatedBlockIdStddevPopulationExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_DESC', + ClaimsByCreatedBlockIdStddevPopulationFilterExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FILTER_EXPIRY_ASC', + ClaimsByCreatedBlockIdStddevPopulationFilterExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FILTER_EXPIRY_DESC', + ClaimsByCreatedBlockIdStddevPopulationIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ClaimsByCreatedBlockIdStddevPopulationIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ClaimsByCreatedBlockIdStddevPopulationIssuanceDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ISSUANCE_DATE_ASC', + ClaimsByCreatedBlockIdStddevPopulationIssuanceDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ISSUANCE_DATE_DESC', + ClaimsByCreatedBlockIdStddevPopulationIssuerIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ISSUER_ID_ASC', + ClaimsByCreatedBlockIdStddevPopulationIssuerIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ISSUER_ID_DESC', + ClaimsByCreatedBlockIdStddevPopulationJurisdictionAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_JURISDICTION_ASC', + ClaimsByCreatedBlockIdStddevPopulationJurisdictionDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_JURISDICTION_DESC', + ClaimsByCreatedBlockIdStddevPopulationLastUpdateDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LAST_UPDATE_DATE_ASC', + ClaimsByCreatedBlockIdStddevPopulationLastUpdateDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LAST_UPDATE_DATE_DESC', + ClaimsByCreatedBlockIdStddevPopulationRevokeDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_REVOKE_DATE_ASC', + ClaimsByCreatedBlockIdStddevPopulationRevokeDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_REVOKE_DATE_DESC', + ClaimsByCreatedBlockIdStddevPopulationScopeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SCOPE_ASC', + ClaimsByCreatedBlockIdStddevPopulationScopeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SCOPE_DESC', + ClaimsByCreatedBlockIdStddevPopulationTargetIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TARGET_ID_ASC', + ClaimsByCreatedBlockIdStddevPopulationTargetIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TARGET_ID_DESC', + ClaimsByCreatedBlockIdStddevPopulationTypeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + ClaimsByCreatedBlockIdStddevPopulationTypeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + ClaimsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdStddevSampleBlockRangeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ClaimsByCreatedBlockIdStddevSampleBlockRangeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ClaimsByCreatedBlockIdStddevSampleCddIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CDD_ID_ASC', + ClaimsByCreatedBlockIdStddevSampleCddIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CDD_ID_DESC', + ClaimsByCreatedBlockIdStddevSampleCreatedAtAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ClaimsByCreatedBlockIdStddevSampleCreatedAtDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ClaimsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdStddevSampleCustomClaimTypeIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByCreatedBlockIdStddevSampleCustomClaimTypeIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByCreatedBlockIdStddevSampleEventIdxAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ClaimsByCreatedBlockIdStddevSampleEventIdxDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ClaimsByCreatedBlockIdStddevSampleExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_ASC', + ClaimsByCreatedBlockIdStddevSampleExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_DESC', + ClaimsByCreatedBlockIdStddevSampleFilterExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FILTER_EXPIRY_ASC', + ClaimsByCreatedBlockIdStddevSampleFilterExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FILTER_EXPIRY_DESC', + ClaimsByCreatedBlockIdStddevSampleIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ClaimsByCreatedBlockIdStddevSampleIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ClaimsByCreatedBlockIdStddevSampleIssuanceDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ISSUANCE_DATE_ASC', + ClaimsByCreatedBlockIdStddevSampleIssuanceDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ISSUANCE_DATE_DESC', + ClaimsByCreatedBlockIdStddevSampleIssuerIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ISSUER_ID_ASC', + ClaimsByCreatedBlockIdStddevSampleIssuerIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ISSUER_ID_DESC', + ClaimsByCreatedBlockIdStddevSampleJurisdictionAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_JURISDICTION_ASC', + ClaimsByCreatedBlockIdStddevSampleJurisdictionDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_JURISDICTION_DESC', + ClaimsByCreatedBlockIdStddevSampleLastUpdateDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LAST_UPDATE_DATE_ASC', + ClaimsByCreatedBlockIdStddevSampleLastUpdateDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LAST_UPDATE_DATE_DESC', + ClaimsByCreatedBlockIdStddevSampleRevokeDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_REVOKE_DATE_ASC', + ClaimsByCreatedBlockIdStddevSampleRevokeDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_REVOKE_DATE_DESC', + ClaimsByCreatedBlockIdStddevSampleScopeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SCOPE_ASC', + ClaimsByCreatedBlockIdStddevSampleScopeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SCOPE_DESC', + ClaimsByCreatedBlockIdStddevSampleTargetIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_ID_ASC', + ClaimsByCreatedBlockIdStddevSampleTargetIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_ID_DESC', + ClaimsByCreatedBlockIdStddevSampleTypeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + ClaimsByCreatedBlockIdStddevSampleTypeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + ClaimsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdSumBlockRangeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ClaimsByCreatedBlockIdSumBlockRangeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ClaimsByCreatedBlockIdSumCddIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_CDD_ID_ASC', + ClaimsByCreatedBlockIdSumCddIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_CDD_ID_DESC', + ClaimsByCreatedBlockIdSumCreatedAtAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ClaimsByCreatedBlockIdSumCreatedAtDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ClaimsByCreatedBlockIdSumCreatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdSumCreatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdSumCustomClaimTypeIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByCreatedBlockIdSumCustomClaimTypeIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByCreatedBlockIdSumEventIdxAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ClaimsByCreatedBlockIdSumEventIdxDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ClaimsByCreatedBlockIdSumExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_EXPIRY_ASC', + ClaimsByCreatedBlockIdSumExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_EXPIRY_DESC', + ClaimsByCreatedBlockIdSumFilterExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_FILTER_EXPIRY_ASC', + ClaimsByCreatedBlockIdSumFilterExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_FILTER_EXPIRY_DESC', + ClaimsByCreatedBlockIdSumIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ClaimsByCreatedBlockIdSumIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ClaimsByCreatedBlockIdSumIssuanceDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_ISSUANCE_DATE_ASC', + ClaimsByCreatedBlockIdSumIssuanceDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_ISSUANCE_DATE_DESC', + ClaimsByCreatedBlockIdSumIssuerIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_ISSUER_ID_ASC', + ClaimsByCreatedBlockIdSumIssuerIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_ISSUER_ID_DESC', + ClaimsByCreatedBlockIdSumJurisdictionAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_JURISDICTION_ASC', + ClaimsByCreatedBlockIdSumJurisdictionDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_JURISDICTION_DESC', + ClaimsByCreatedBlockIdSumLastUpdateDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_LAST_UPDATE_DATE_ASC', + ClaimsByCreatedBlockIdSumLastUpdateDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_LAST_UPDATE_DATE_DESC', + ClaimsByCreatedBlockIdSumRevokeDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_REVOKE_DATE_ASC', + ClaimsByCreatedBlockIdSumRevokeDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_REVOKE_DATE_DESC', + ClaimsByCreatedBlockIdSumScopeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_SCOPE_ASC', + ClaimsByCreatedBlockIdSumScopeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_SCOPE_DESC', + ClaimsByCreatedBlockIdSumTargetIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_TARGET_ID_ASC', + ClaimsByCreatedBlockIdSumTargetIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_TARGET_ID_DESC', + ClaimsByCreatedBlockIdSumTypeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_TYPE_ASC', + ClaimsByCreatedBlockIdSumTypeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_TYPE_DESC', + ClaimsByCreatedBlockIdSumUpdatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdSumUpdatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ClaimsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ClaimsByCreatedBlockIdVariancePopulationCddIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CDD_ID_ASC', + ClaimsByCreatedBlockIdVariancePopulationCddIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CDD_ID_DESC', + ClaimsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ClaimsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ClaimsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdVariancePopulationCustomClaimTypeIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByCreatedBlockIdVariancePopulationCustomClaimTypeIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByCreatedBlockIdVariancePopulationEventIdxAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ClaimsByCreatedBlockIdVariancePopulationEventIdxDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ClaimsByCreatedBlockIdVariancePopulationExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_ASC', + ClaimsByCreatedBlockIdVariancePopulationExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_DESC', + ClaimsByCreatedBlockIdVariancePopulationFilterExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FILTER_EXPIRY_ASC', + ClaimsByCreatedBlockIdVariancePopulationFilterExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FILTER_EXPIRY_DESC', + ClaimsByCreatedBlockIdVariancePopulationIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ClaimsByCreatedBlockIdVariancePopulationIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ClaimsByCreatedBlockIdVariancePopulationIssuanceDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ISSUANCE_DATE_ASC', + ClaimsByCreatedBlockIdVariancePopulationIssuanceDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ISSUANCE_DATE_DESC', + ClaimsByCreatedBlockIdVariancePopulationIssuerIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ISSUER_ID_ASC', + ClaimsByCreatedBlockIdVariancePopulationIssuerIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ISSUER_ID_DESC', + ClaimsByCreatedBlockIdVariancePopulationJurisdictionAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_JURISDICTION_ASC', + ClaimsByCreatedBlockIdVariancePopulationJurisdictionDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_JURISDICTION_DESC', + ClaimsByCreatedBlockIdVariancePopulationLastUpdateDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LAST_UPDATE_DATE_ASC', + ClaimsByCreatedBlockIdVariancePopulationLastUpdateDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LAST_UPDATE_DATE_DESC', + ClaimsByCreatedBlockIdVariancePopulationRevokeDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_REVOKE_DATE_ASC', + ClaimsByCreatedBlockIdVariancePopulationRevokeDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_REVOKE_DATE_DESC', + ClaimsByCreatedBlockIdVariancePopulationScopeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SCOPE_ASC', + ClaimsByCreatedBlockIdVariancePopulationScopeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SCOPE_DESC', + ClaimsByCreatedBlockIdVariancePopulationTargetIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_ID_ASC', + ClaimsByCreatedBlockIdVariancePopulationTargetIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_ID_DESC', + ClaimsByCreatedBlockIdVariancePopulationTypeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + ClaimsByCreatedBlockIdVariancePopulationTypeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + ClaimsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ClaimsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ClaimsByCreatedBlockIdVarianceSampleCddIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CDD_ID_ASC', + ClaimsByCreatedBlockIdVarianceSampleCddIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CDD_ID_DESC', + ClaimsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ClaimsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ClaimsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimsByCreatedBlockIdVarianceSampleCustomClaimTypeIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByCreatedBlockIdVarianceSampleCustomClaimTypeIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByCreatedBlockIdVarianceSampleEventIdxAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ClaimsByCreatedBlockIdVarianceSampleEventIdxDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ClaimsByCreatedBlockIdVarianceSampleExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_ASC', + ClaimsByCreatedBlockIdVarianceSampleExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_DESC', + ClaimsByCreatedBlockIdVarianceSampleFilterExpiryAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FILTER_EXPIRY_ASC', + ClaimsByCreatedBlockIdVarianceSampleFilterExpiryDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FILTER_EXPIRY_DESC', + ClaimsByCreatedBlockIdVarianceSampleIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ClaimsByCreatedBlockIdVarianceSampleIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ClaimsByCreatedBlockIdVarianceSampleIssuanceDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUANCE_DATE_ASC', + ClaimsByCreatedBlockIdVarianceSampleIssuanceDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUANCE_DATE_DESC', + ClaimsByCreatedBlockIdVarianceSampleIssuerIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUER_ID_ASC', + ClaimsByCreatedBlockIdVarianceSampleIssuerIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUER_ID_DESC', + ClaimsByCreatedBlockIdVarianceSampleJurisdictionAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_JURISDICTION_ASC', + ClaimsByCreatedBlockIdVarianceSampleJurisdictionDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_JURISDICTION_DESC', + ClaimsByCreatedBlockIdVarianceSampleLastUpdateDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LAST_UPDATE_DATE_ASC', + ClaimsByCreatedBlockIdVarianceSampleLastUpdateDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LAST_UPDATE_DATE_DESC', + ClaimsByCreatedBlockIdVarianceSampleRevokeDateAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_REVOKE_DATE_ASC', + ClaimsByCreatedBlockIdVarianceSampleRevokeDateDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_REVOKE_DATE_DESC', + ClaimsByCreatedBlockIdVarianceSampleScopeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SCOPE_ASC', + ClaimsByCreatedBlockIdVarianceSampleScopeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SCOPE_DESC', + ClaimsByCreatedBlockIdVarianceSampleTargetIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_ID_ASC', + ClaimsByCreatedBlockIdVarianceSampleTargetIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_ID_DESC', + ClaimsByCreatedBlockIdVarianceSampleTypeAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + ClaimsByCreatedBlockIdVarianceSampleTypeDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + ClaimsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CLAIMS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdAverageBlockRangeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ClaimsByUpdatedBlockIdAverageBlockRangeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ClaimsByUpdatedBlockIdAverageCddIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_CDD_ID_ASC', + ClaimsByUpdatedBlockIdAverageCddIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_CDD_ID_DESC', + ClaimsByUpdatedBlockIdAverageCreatedAtAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ClaimsByUpdatedBlockIdAverageCreatedAtDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ClaimsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdAverageCustomClaimTypeIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByUpdatedBlockIdAverageCustomClaimTypeIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByUpdatedBlockIdAverageEventIdxAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ClaimsByUpdatedBlockIdAverageEventIdxDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ClaimsByUpdatedBlockIdAverageExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_EXPIRY_ASC', + ClaimsByUpdatedBlockIdAverageExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_EXPIRY_DESC', + ClaimsByUpdatedBlockIdAverageFilterExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_FILTER_EXPIRY_ASC', + ClaimsByUpdatedBlockIdAverageFilterExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_FILTER_EXPIRY_DESC', + ClaimsByUpdatedBlockIdAverageIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ClaimsByUpdatedBlockIdAverageIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ClaimsByUpdatedBlockIdAverageIssuanceDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_ISSUANCE_DATE_ASC', + ClaimsByUpdatedBlockIdAverageIssuanceDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_ISSUANCE_DATE_DESC', + ClaimsByUpdatedBlockIdAverageIssuerIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_ISSUER_ID_ASC', + ClaimsByUpdatedBlockIdAverageIssuerIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_ISSUER_ID_DESC', + ClaimsByUpdatedBlockIdAverageJurisdictionAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_JURISDICTION_ASC', + ClaimsByUpdatedBlockIdAverageJurisdictionDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_JURISDICTION_DESC', + ClaimsByUpdatedBlockIdAverageLastUpdateDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_LAST_UPDATE_DATE_ASC', + ClaimsByUpdatedBlockIdAverageLastUpdateDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_LAST_UPDATE_DATE_DESC', + ClaimsByUpdatedBlockIdAverageRevokeDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_REVOKE_DATE_ASC', + ClaimsByUpdatedBlockIdAverageRevokeDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_REVOKE_DATE_DESC', + ClaimsByUpdatedBlockIdAverageScopeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_SCOPE_ASC', + ClaimsByUpdatedBlockIdAverageScopeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_SCOPE_DESC', + ClaimsByUpdatedBlockIdAverageTargetIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_TARGET_ID_ASC', + ClaimsByUpdatedBlockIdAverageTargetIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_TARGET_ID_DESC', + ClaimsByUpdatedBlockIdAverageTypeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_ASC', + ClaimsByUpdatedBlockIdAverageTypeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_DESC', + ClaimsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdCountAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ClaimsByUpdatedBlockIdCountDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ClaimsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ClaimsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ClaimsByUpdatedBlockIdDistinctCountCddIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CDD_ID_ASC', + ClaimsByUpdatedBlockIdDistinctCountCddIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CDD_ID_DESC', + ClaimsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ClaimsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ClaimsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdDistinctCountCustomClaimTypeIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByUpdatedBlockIdDistinctCountCustomClaimTypeIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByUpdatedBlockIdDistinctCountEventIdxAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ClaimsByUpdatedBlockIdDistinctCountEventIdxDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ClaimsByUpdatedBlockIdDistinctCountExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_ASC', + ClaimsByUpdatedBlockIdDistinctCountExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_DESC', + ClaimsByUpdatedBlockIdDistinctCountFilterExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FILTER_EXPIRY_ASC', + ClaimsByUpdatedBlockIdDistinctCountFilterExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FILTER_EXPIRY_DESC', + ClaimsByUpdatedBlockIdDistinctCountIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ClaimsByUpdatedBlockIdDistinctCountIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ClaimsByUpdatedBlockIdDistinctCountIssuanceDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ISSUANCE_DATE_ASC', + ClaimsByUpdatedBlockIdDistinctCountIssuanceDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ISSUANCE_DATE_DESC', + ClaimsByUpdatedBlockIdDistinctCountIssuerIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ISSUER_ID_ASC', + ClaimsByUpdatedBlockIdDistinctCountIssuerIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ISSUER_ID_DESC', + ClaimsByUpdatedBlockIdDistinctCountJurisdictionAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_JURISDICTION_ASC', + ClaimsByUpdatedBlockIdDistinctCountJurisdictionDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_JURISDICTION_DESC', + ClaimsByUpdatedBlockIdDistinctCountLastUpdateDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LAST_UPDATE_DATE_ASC', + ClaimsByUpdatedBlockIdDistinctCountLastUpdateDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LAST_UPDATE_DATE_DESC', + ClaimsByUpdatedBlockIdDistinctCountRevokeDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_REVOKE_DATE_ASC', + ClaimsByUpdatedBlockIdDistinctCountRevokeDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_REVOKE_DATE_DESC', + ClaimsByUpdatedBlockIdDistinctCountScopeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SCOPE_ASC', + ClaimsByUpdatedBlockIdDistinctCountScopeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SCOPE_DESC', + ClaimsByUpdatedBlockIdDistinctCountTargetIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TARGET_ID_ASC', + ClaimsByUpdatedBlockIdDistinctCountTargetIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TARGET_ID_DESC', + ClaimsByUpdatedBlockIdDistinctCountTypeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + ClaimsByUpdatedBlockIdDistinctCountTypeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + ClaimsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdMaxBlockRangeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ClaimsByUpdatedBlockIdMaxBlockRangeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ClaimsByUpdatedBlockIdMaxCddIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_CDD_ID_ASC', + ClaimsByUpdatedBlockIdMaxCddIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_CDD_ID_DESC', + ClaimsByUpdatedBlockIdMaxCreatedAtAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ClaimsByUpdatedBlockIdMaxCreatedAtDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ClaimsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdMaxCustomClaimTypeIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByUpdatedBlockIdMaxCustomClaimTypeIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByUpdatedBlockIdMaxEventIdxAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ClaimsByUpdatedBlockIdMaxEventIdxDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ClaimsByUpdatedBlockIdMaxExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_EXPIRY_ASC', + ClaimsByUpdatedBlockIdMaxExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_EXPIRY_DESC', + ClaimsByUpdatedBlockIdMaxFilterExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_FILTER_EXPIRY_ASC', + ClaimsByUpdatedBlockIdMaxFilterExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_FILTER_EXPIRY_DESC', + ClaimsByUpdatedBlockIdMaxIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ClaimsByUpdatedBlockIdMaxIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ClaimsByUpdatedBlockIdMaxIssuanceDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_ISSUANCE_DATE_ASC', + ClaimsByUpdatedBlockIdMaxIssuanceDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_ISSUANCE_DATE_DESC', + ClaimsByUpdatedBlockIdMaxIssuerIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_ISSUER_ID_ASC', + ClaimsByUpdatedBlockIdMaxIssuerIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_ISSUER_ID_DESC', + ClaimsByUpdatedBlockIdMaxJurisdictionAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_JURISDICTION_ASC', + ClaimsByUpdatedBlockIdMaxJurisdictionDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_JURISDICTION_DESC', + ClaimsByUpdatedBlockIdMaxLastUpdateDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_LAST_UPDATE_DATE_ASC', + ClaimsByUpdatedBlockIdMaxLastUpdateDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_LAST_UPDATE_DATE_DESC', + ClaimsByUpdatedBlockIdMaxRevokeDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_REVOKE_DATE_ASC', + ClaimsByUpdatedBlockIdMaxRevokeDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_REVOKE_DATE_DESC', + ClaimsByUpdatedBlockIdMaxScopeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_SCOPE_ASC', + ClaimsByUpdatedBlockIdMaxScopeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_SCOPE_DESC', + ClaimsByUpdatedBlockIdMaxTargetIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_TARGET_ID_ASC', + ClaimsByUpdatedBlockIdMaxTargetIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_TARGET_ID_DESC', + ClaimsByUpdatedBlockIdMaxTypeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_TYPE_ASC', + ClaimsByUpdatedBlockIdMaxTypeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_TYPE_DESC', + ClaimsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdMinBlockRangeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ClaimsByUpdatedBlockIdMinBlockRangeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ClaimsByUpdatedBlockIdMinCddIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_CDD_ID_ASC', + ClaimsByUpdatedBlockIdMinCddIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_CDD_ID_DESC', + ClaimsByUpdatedBlockIdMinCreatedAtAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ClaimsByUpdatedBlockIdMinCreatedAtDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ClaimsByUpdatedBlockIdMinCreatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdMinCreatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdMinCustomClaimTypeIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByUpdatedBlockIdMinCustomClaimTypeIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByUpdatedBlockIdMinEventIdxAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ClaimsByUpdatedBlockIdMinEventIdxDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ClaimsByUpdatedBlockIdMinExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_EXPIRY_ASC', + ClaimsByUpdatedBlockIdMinExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_EXPIRY_DESC', + ClaimsByUpdatedBlockIdMinFilterExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_FILTER_EXPIRY_ASC', + ClaimsByUpdatedBlockIdMinFilterExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_FILTER_EXPIRY_DESC', + ClaimsByUpdatedBlockIdMinIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ClaimsByUpdatedBlockIdMinIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ClaimsByUpdatedBlockIdMinIssuanceDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_ISSUANCE_DATE_ASC', + ClaimsByUpdatedBlockIdMinIssuanceDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_ISSUANCE_DATE_DESC', + ClaimsByUpdatedBlockIdMinIssuerIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_ISSUER_ID_ASC', + ClaimsByUpdatedBlockIdMinIssuerIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_ISSUER_ID_DESC', + ClaimsByUpdatedBlockIdMinJurisdictionAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_JURISDICTION_ASC', + ClaimsByUpdatedBlockIdMinJurisdictionDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_JURISDICTION_DESC', + ClaimsByUpdatedBlockIdMinLastUpdateDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_LAST_UPDATE_DATE_ASC', + ClaimsByUpdatedBlockIdMinLastUpdateDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_LAST_UPDATE_DATE_DESC', + ClaimsByUpdatedBlockIdMinRevokeDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_REVOKE_DATE_ASC', + ClaimsByUpdatedBlockIdMinRevokeDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_REVOKE_DATE_DESC', + ClaimsByUpdatedBlockIdMinScopeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_SCOPE_ASC', + ClaimsByUpdatedBlockIdMinScopeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_SCOPE_DESC', + ClaimsByUpdatedBlockIdMinTargetIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_TARGET_ID_ASC', + ClaimsByUpdatedBlockIdMinTargetIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_TARGET_ID_DESC', + ClaimsByUpdatedBlockIdMinTypeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_TYPE_ASC', + ClaimsByUpdatedBlockIdMinTypeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_TYPE_DESC', + ClaimsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ClaimsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ClaimsByUpdatedBlockIdStddevPopulationCddIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CDD_ID_ASC', + ClaimsByUpdatedBlockIdStddevPopulationCddIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CDD_ID_DESC', + ClaimsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ClaimsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ClaimsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdStddevPopulationCustomClaimTypeIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByUpdatedBlockIdStddevPopulationCustomClaimTypeIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ClaimsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ClaimsByUpdatedBlockIdStddevPopulationExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_ASC', + ClaimsByUpdatedBlockIdStddevPopulationExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_DESC', + ClaimsByUpdatedBlockIdStddevPopulationFilterExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FILTER_EXPIRY_ASC', + ClaimsByUpdatedBlockIdStddevPopulationFilterExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FILTER_EXPIRY_DESC', + ClaimsByUpdatedBlockIdStddevPopulationIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ClaimsByUpdatedBlockIdStddevPopulationIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ClaimsByUpdatedBlockIdStddevPopulationIssuanceDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ISSUANCE_DATE_ASC', + ClaimsByUpdatedBlockIdStddevPopulationIssuanceDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ISSUANCE_DATE_DESC', + ClaimsByUpdatedBlockIdStddevPopulationIssuerIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ISSUER_ID_ASC', + ClaimsByUpdatedBlockIdStddevPopulationIssuerIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ISSUER_ID_DESC', + ClaimsByUpdatedBlockIdStddevPopulationJurisdictionAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_JURISDICTION_ASC', + ClaimsByUpdatedBlockIdStddevPopulationJurisdictionDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_JURISDICTION_DESC', + ClaimsByUpdatedBlockIdStddevPopulationLastUpdateDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LAST_UPDATE_DATE_ASC', + ClaimsByUpdatedBlockIdStddevPopulationLastUpdateDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LAST_UPDATE_DATE_DESC', + ClaimsByUpdatedBlockIdStddevPopulationRevokeDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_REVOKE_DATE_ASC', + ClaimsByUpdatedBlockIdStddevPopulationRevokeDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_REVOKE_DATE_DESC', + ClaimsByUpdatedBlockIdStddevPopulationScopeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SCOPE_ASC', + ClaimsByUpdatedBlockIdStddevPopulationScopeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SCOPE_DESC', + ClaimsByUpdatedBlockIdStddevPopulationTargetIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TARGET_ID_ASC', + ClaimsByUpdatedBlockIdStddevPopulationTargetIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TARGET_ID_DESC', + ClaimsByUpdatedBlockIdStddevPopulationTypeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + ClaimsByUpdatedBlockIdStddevPopulationTypeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + ClaimsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ClaimsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ClaimsByUpdatedBlockIdStddevSampleCddIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CDD_ID_ASC', + ClaimsByUpdatedBlockIdStddevSampleCddIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CDD_ID_DESC', + ClaimsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ClaimsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ClaimsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdStddevSampleCustomClaimTypeIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByUpdatedBlockIdStddevSampleCustomClaimTypeIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByUpdatedBlockIdStddevSampleEventIdxAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ClaimsByUpdatedBlockIdStddevSampleEventIdxDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ClaimsByUpdatedBlockIdStddevSampleExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_ASC', + ClaimsByUpdatedBlockIdStddevSampleExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_DESC', + ClaimsByUpdatedBlockIdStddevSampleFilterExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FILTER_EXPIRY_ASC', + ClaimsByUpdatedBlockIdStddevSampleFilterExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FILTER_EXPIRY_DESC', + ClaimsByUpdatedBlockIdStddevSampleIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ClaimsByUpdatedBlockIdStddevSampleIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ClaimsByUpdatedBlockIdStddevSampleIssuanceDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ISSUANCE_DATE_ASC', + ClaimsByUpdatedBlockIdStddevSampleIssuanceDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ISSUANCE_DATE_DESC', + ClaimsByUpdatedBlockIdStddevSampleIssuerIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ISSUER_ID_ASC', + ClaimsByUpdatedBlockIdStddevSampleIssuerIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ISSUER_ID_DESC', + ClaimsByUpdatedBlockIdStddevSampleJurisdictionAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_JURISDICTION_ASC', + ClaimsByUpdatedBlockIdStddevSampleJurisdictionDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_JURISDICTION_DESC', + ClaimsByUpdatedBlockIdStddevSampleLastUpdateDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LAST_UPDATE_DATE_ASC', + ClaimsByUpdatedBlockIdStddevSampleLastUpdateDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LAST_UPDATE_DATE_DESC', + ClaimsByUpdatedBlockIdStddevSampleRevokeDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_REVOKE_DATE_ASC', + ClaimsByUpdatedBlockIdStddevSampleRevokeDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_REVOKE_DATE_DESC', + ClaimsByUpdatedBlockIdStddevSampleScopeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SCOPE_ASC', + ClaimsByUpdatedBlockIdStddevSampleScopeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SCOPE_DESC', + ClaimsByUpdatedBlockIdStddevSampleTargetIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_ID_ASC', + ClaimsByUpdatedBlockIdStddevSampleTargetIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_ID_DESC', + ClaimsByUpdatedBlockIdStddevSampleTypeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + ClaimsByUpdatedBlockIdStddevSampleTypeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + ClaimsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdSumBlockRangeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ClaimsByUpdatedBlockIdSumBlockRangeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ClaimsByUpdatedBlockIdSumCddIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_CDD_ID_ASC', + ClaimsByUpdatedBlockIdSumCddIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_CDD_ID_DESC', + ClaimsByUpdatedBlockIdSumCreatedAtAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ClaimsByUpdatedBlockIdSumCreatedAtDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ClaimsByUpdatedBlockIdSumCreatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdSumCreatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdSumCustomClaimTypeIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByUpdatedBlockIdSumCustomClaimTypeIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByUpdatedBlockIdSumEventIdxAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ClaimsByUpdatedBlockIdSumEventIdxDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ClaimsByUpdatedBlockIdSumExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_EXPIRY_ASC', + ClaimsByUpdatedBlockIdSumExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_EXPIRY_DESC', + ClaimsByUpdatedBlockIdSumFilterExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_FILTER_EXPIRY_ASC', + ClaimsByUpdatedBlockIdSumFilterExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_FILTER_EXPIRY_DESC', + ClaimsByUpdatedBlockIdSumIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ClaimsByUpdatedBlockIdSumIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ClaimsByUpdatedBlockIdSumIssuanceDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_ISSUANCE_DATE_ASC', + ClaimsByUpdatedBlockIdSumIssuanceDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_ISSUANCE_DATE_DESC', + ClaimsByUpdatedBlockIdSumIssuerIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_ISSUER_ID_ASC', + ClaimsByUpdatedBlockIdSumIssuerIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_ISSUER_ID_DESC', + ClaimsByUpdatedBlockIdSumJurisdictionAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_JURISDICTION_ASC', + ClaimsByUpdatedBlockIdSumJurisdictionDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_JURISDICTION_DESC', + ClaimsByUpdatedBlockIdSumLastUpdateDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_LAST_UPDATE_DATE_ASC', + ClaimsByUpdatedBlockIdSumLastUpdateDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_LAST_UPDATE_DATE_DESC', + ClaimsByUpdatedBlockIdSumRevokeDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_REVOKE_DATE_ASC', + ClaimsByUpdatedBlockIdSumRevokeDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_REVOKE_DATE_DESC', + ClaimsByUpdatedBlockIdSumScopeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_SCOPE_ASC', + ClaimsByUpdatedBlockIdSumScopeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_SCOPE_DESC', + ClaimsByUpdatedBlockIdSumTargetIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_TARGET_ID_ASC', + ClaimsByUpdatedBlockIdSumTargetIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_TARGET_ID_DESC', + ClaimsByUpdatedBlockIdSumTypeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_TYPE_ASC', + ClaimsByUpdatedBlockIdSumTypeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_TYPE_DESC', + ClaimsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ClaimsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ClaimsByUpdatedBlockIdVariancePopulationCddIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CDD_ID_ASC', + ClaimsByUpdatedBlockIdVariancePopulationCddIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CDD_ID_DESC', + ClaimsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ClaimsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ClaimsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdVariancePopulationCustomClaimTypeIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByUpdatedBlockIdVariancePopulationCustomClaimTypeIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ClaimsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ClaimsByUpdatedBlockIdVariancePopulationExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_ASC', + ClaimsByUpdatedBlockIdVariancePopulationExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_DESC', + ClaimsByUpdatedBlockIdVariancePopulationFilterExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FILTER_EXPIRY_ASC', + ClaimsByUpdatedBlockIdVariancePopulationFilterExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FILTER_EXPIRY_DESC', + ClaimsByUpdatedBlockIdVariancePopulationIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ClaimsByUpdatedBlockIdVariancePopulationIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ClaimsByUpdatedBlockIdVariancePopulationIssuanceDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ISSUANCE_DATE_ASC', + ClaimsByUpdatedBlockIdVariancePopulationIssuanceDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ISSUANCE_DATE_DESC', + ClaimsByUpdatedBlockIdVariancePopulationIssuerIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ISSUER_ID_ASC', + ClaimsByUpdatedBlockIdVariancePopulationIssuerIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ISSUER_ID_DESC', + ClaimsByUpdatedBlockIdVariancePopulationJurisdictionAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_JURISDICTION_ASC', + ClaimsByUpdatedBlockIdVariancePopulationJurisdictionDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_JURISDICTION_DESC', + ClaimsByUpdatedBlockIdVariancePopulationLastUpdateDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LAST_UPDATE_DATE_ASC', + ClaimsByUpdatedBlockIdVariancePopulationLastUpdateDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LAST_UPDATE_DATE_DESC', + ClaimsByUpdatedBlockIdVariancePopulationRevokeDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_REVOKE_DATE_ASC', + ClaimsByUpdatedBlockIdVariancePopulationRevokeDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_REVOKE_DATE_DESC', + ClaimsByUpdatedBlockIdVariancePopulationScopeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SCOPE_ASC', + ClaimsByUpdatedBlockIdVariancePopulationScopeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SCOPE_DESC', + ClaimsByUpdatedBlockIdVariancePopulationTargetIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_ID_ASC', + ClaimsByUpdatedBlockIdVariancePopulationTargetIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_ID_DESC', + ClaimsByUpdatedBlockIdVariancePopulationTypeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + ClaimsByUpdatedBlockIdVariancePopulationTypeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + ClaimsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ClaimsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ClaimsByUpdatedBlockIdVarianceSampleCddIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CDD_ID_ASC', + ClaimsByUpdatedBlockIdVarianceSampleCddIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CDD_ID_DESC', + ClaimsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ClaimsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ClaimsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimsByUpdatedBlockIdVarianceSampleCustomClaimTypeIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByUpdatedBlockIdVarianceSampleCustomClaimTypeIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ClaimsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ClaimsByUpdatedBlockIdVarianceSampleExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_ASC', + ClaimsByUpdatedBlockIdVarianceSampleExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_DESC', + ClaimsByUpdatedBlockIdVarianceSampleFilterExpiryAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FILTER_EXPIRY_ASC', + ClaimsByUpdatedBlockIdVarianceSampleFilterExpiryDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FILTER_EXPIRY_DESC', + ClaimsByUpdatedBlockIdVarianceSampleIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ClaimsByUpdatedBlockIdVarianceSampleIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ClaimsByUpdatedBlockIdVarianceSampleIssuanceDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUANCE_DATE_ASC', + ClaimsByUpdatedBlockIdVarianceSampleIssuanceDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUANCE_DATE_DESC', + ClaimsByUpdatedBlockIdVarianceSampleIssuerIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUER_ID_ASC', + ClaimsByUpdatedBlockIdVarianceSampleIssuerIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUER_ID_DESC', + ClaimsByUpdatedBlockIdVarianceSampleJurisdictionAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_JURISDICTION_ASC', + ClaimsByUpdatedBlockIdVarianceSampleJurisdictionDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_JURISDICTION_DESC', + ClaimsByUpdatedBlockIdVarianceSampleLastUpdateDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LAST_UPDATE_DATE_ASC', + ClaimsByUpdatedBlockIdVarianceSampleLastUpdateDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LAST_UPDATE_DATE_DESC', + ClaimsByUpdatedBlockIdVarianceSampleRevokeDateAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_REVOKE_DATE_ASC', + ClaimsByUpdatedBlockIdVarianceSampleRevokeDateDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_REVOKE_DATE_DESC', + ClaimsByUpdatedBlockIdVarianceSampleScopeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SCOPE_ASC', + ClaimsByUpdatedBlockIdVarianceSampleScopeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SCOPE_DESC', + ClaimsByUpdatedBlockIdVarianceSampleTargetIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_ID_ASC', + ClaimsByUpdatedBlockIdVarianceSampleTargetIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_ID_DESC', + ClaimsByUpdatedBlockIdVarianceSampleTypeAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + ClaimsByUpdatedBlockIdVarianceSampleTypeDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + ClaimsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CLAIMS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdAverageAssetIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + ClaimScopesByCreatedBlockIdAverageAssetIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + ClaimScopesByCreatedBlockIdAverageBlockRangeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ClaimScopesByCreatedBlockIdAverageBlockRangeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ClaimScopesByCreatedBlockIdAverageCreatedAtAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ClaimScopesByCreatedBlockIdAverageCreatedAtDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ClaimScopesByCreatedBlockIdAverageCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdAverageCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdAverageIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ClaimScopesByCreatedBlockIdAverageIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ClaimScopesByCreatedBlockIdAverageScopeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_SCOPE_ASC', + ClaimScopesByCreatedBlockIdAverageScopeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_SCOPE_DESC', + ClaimScopesByCreatedBlockIdAverageTargetAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_TARGET_ASC', + ClaimScopesByCreatedBlockIdAverageTargetDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_TARGET_DESC', + ClaimScopesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdCountAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_COUNT_ASC', + ClaimScopesByCreatedBlockIdCountDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_COUNT_DESC', + ClaimScopesByCreatedBlockIdDistinctCountAssetIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ClaimScopesByCreatedBlockIdDistinctCountAssetIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ClaimScopesByCreatedBlockIdDistinctCountBlockRangeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ClaimScopesByCreatedBlockIdDistinctCountBlockRangeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ClaimScopesByCreatedBlockIdDistinctCountCreatedAtAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ClaimScopesByCreatedBlockIdDistinctCountCreatedAtDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ClaimScopesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdDistinctCountIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ClaimScopesByCreatedBlockIdDistinctCountIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ClaimScopesByCreatedBlockIdDistinctCountScopeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SCOPE_ASC', + ClaimScopesByCreatedBlockIdDistinctCountScopeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SCOPE_DESC', + ClaimScopesByCreatedBlockIdDistinctCountTargetAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TARGET_ASC', + ClaimScopesByCreatedBlockIdDistinctCountTargetDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TARGET_DESC', + ClaimScopesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdMaxAssetIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + ClaimScopesByCreatedBlockIdMaxAssetIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + ClaimScopesByCreatedBlockIdMaxBlockRangeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ClaimScopesByCreatedBlockIdMaxBlockRangeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ClaimScopesByCreatedBlockIdMaxCreatedAtAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ClaimScopesByCreatedBlockIdMaxCreatedAtDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ClaimScopesByCreatedBlockIdMaxCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdMaxCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdMaxIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ClaimScopesByCreatedBlockIdMaxIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ClaimScopesByCreatedBlockIdMaxScopeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_SCOPE_ASC', + ClaimScopesByCreatedBlockIdMaxScopeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_SCOPE_DESC', + ClaimScopesByCreatedBlockIdMaxTargetAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_TARGET_ASC', + ClaimScopesByCreatedBlockIdMaxTargetDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_TARGET_DESC', + ClaimScopesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdMinAssetIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + ClaimScopesByCreatedBlockIdMinAssetIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + ClaimScopesByCreatedBlockIdMinBlockRangeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ClaimScopesByCreatedBlockIdMinBlockRangeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ClaimScopesByCreatedBlockIdMinCreatedAtAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ClaimScopesByCreatedBlockIdMinCreatedAtDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ClaimScopesByCreatedBlockIdMinCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdMinCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdMinIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ClaimScopesByCreatedBlockIdMinIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ClaimScopesByCreatedBlockIdMinScopeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_SCOPE_ASC', + ClaimScopesByCreatedBlockIdMinScopeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_SCOPE_DESC', + ClaimScopesByCreatedBlockIdMinTargetAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_TARGET_ASC', + ClaimScopesByCreatedBlockIdMinTargetDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_TARGET_DESC', + ClaimScopesByCreatedBlockIdMinUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdMinUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdStddevPopulationAssetIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ClaimScopesByCreatedBlockIdStddevPopulationAssetIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ClaimScopesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ClaimScopesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ClaimScopesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ClaimScopesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ClaimScopesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdStddevPopulationIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ClaimScopesByCreatedBlockIdStddevPopulationIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ClaimScopesByCreatedBlockIdStddevPopulationScopeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SCOPE_ASC', + ClaimScopesByCreatedBlockIdStddevPopulationScopeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SCOPE_DESC', + ClaimScopesByCreatedBlockIdStddevPopulationTargetAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TARGET_ASC', + ClaimScopesByCreatedBlockIdStddevPopulationTargetDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TARGET_DESC', + ClaimScopesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdStddevSampleAssetIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ClaimScopesByCreatedBlockIdStddevSampleAssetIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ClaimScopesByCreatedBlockIdStddevSampleBlockRangeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ClaimScopesByCreatedBlockIdStddevSampleBlockRangeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ClaimScopesByCreatedBlockIdStddevSampleCreatedAtAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ClaimScopesByCreatedBlockIdStddevSampleCreatedAtDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ClaimScopesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdStddevSampleIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ClaimScopesByCreatedBlockIdStddevSampleIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ClaimScopesByCreatedBlockIdStddevSampleScopeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SCOPE_ASC', + ClaimScopesByCreatedBlockIdStddevSampleScopeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SCOPE_DESC', + ClaimScopesByCreatedBlockIdStddevSampleTargetAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_ASC', + ClaimScopesByCreatedBlockIdStddevSampleTargetDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_DESC', + ClaimScopesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdSumAssetIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + ClaimScopesByCreatedBlockIdSumAssetIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + ClaimScopesByCreatedBlockIdSumBlockRangeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ClaimScopesByCreatedBlockIdSumBlockRangeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ClaimScopesByCreatedBlockIdSumCreatedAtAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ClaimScopesByCreatedBlockIdSumCreatedAtDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ClaimScopesByCreatedBlockIdSumCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdSumCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdSumIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ClaimScopesByCreatedBlockIdSumIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ClaimScopesByCreatedBlockIdSumScopeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_SCOPE_ASC', + ClaimScopesByCreatedBlockIdSumScopeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_SCOPE_DESC', + ClaimScopesByCreatedBlockIdSumTargetAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_TARGET_ASC', + ClaimScopesByCreatedBlockIdSumTargetDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_TARGET_DESC', + ClaimScopesByCreatedBlockIdSumUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdSumUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdVariancePopulationAssetIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ClaimScopesByCreatedBlockIdVariancePopulationAssetIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ClaimScopesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ClaimScopesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ClaimScopesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ClaimScopesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ClaimScopesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdVariancePopulationIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ClaimScopesByCreatedBlockIdVariancePopulationIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ClaimScopesByCreatedBlockIdVariancePopulationScopeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SCOPE_ASC', + ClaimScopesByCreatedBlockIdVariancePopulationScopeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SCOPE_DESC', + ClaimScopesByCreatedBlockIdVariancePopulationTargetAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_ASC', + ClaimScopesByCreatedBlockIdVariancePopulationTargetDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_DESC', + ClaimScopesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdVarianceSampleAssetIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ClaimScopesByCreatedBlockIdVarianceSampleAssetIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ClaimScopesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ClaimScopesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ClaimScopesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ClaimScopesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ClaimScopesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimScopesByCreatedBlockIdVarianceSampleIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ClaimScopesByCreatedBlockIdVarianceSampleIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ClaimScopesByCreatedBlockIdVarianceSampleScopeAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SCOPE_ASC', + ClaimScopesByCreatedBlockIdVarianceSampleScopeDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SCOPE_DESC', + ClaimScopesByCreatedBlockIdVarianceSampleTargetAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_ASC', + ClaimScopesByCreatedBlockIdVarianceSampleTargetDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_DESC', + ClaimScopesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimScopesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdAverageAssetIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + ClaimScopesByUpdatedBlockIdAverageAssetIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + ClaimScopesByUpdatedBlockIdAverageBlockRangeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ClaimScopesByUpdatedBlockIdAverageBlockRangeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ClaimScopesByUpdatedBlockIdAverageCreatedAtAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ClaimScopesByUpdatedBlockIdAverageCreatedAtDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ClaimScopesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdAverageIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ClaimScopesByUpdatedBlockIdAverageIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ClaimScopesByUpdatedBlockIdAverageScopeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_SCOPE_ASC', + ClaimScopesByUpdatedBlockIdAverageScopeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_SCOPE_DESC', + ClaimScopesByUpdatedBlockIdAverageTargetAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_TARGET_ASC', + ClaimScopesByUpdatedBlockIdAverageTargetDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_TARGET_DESC', + ClaimScopesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdCountAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ClaimScopesByUpdatedBlockIdCountDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ClaimScopesByUpdatedBlockIdDistinctCountAssetIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ClaimScopesByUpdatedBlockIdDistinctCountAssetIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ClaimScopesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ClaimScopesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ClaimScopesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ClaimScopesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ClaimScopesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdDistinctCountIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ClaimScopesByUpdatedBlockIdDistinctCountIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ClaimScopesByUpdatedBlockIdDistinctCountScopeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SCOPE_ASC', + ClaimScopesByUpdatedBlockIdDistinctCountScopeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SCOPE_DESC', + ClaimScopesByUpdatedBlockIdDistinctCountTargetAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TARGET_ASC', + ClaimScopesByUpdatedBlockIdDistinctCountTargetDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TARGET_DESC', + ClaimScopesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdMaxAssetIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + ClaimScopesByUpdatedBlockIdMaxAssetIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + ClaimScopesByUpdatedBlockIdMaxBlockRangeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ClaimScopesByUpdatedBlockIdMaxBlockRangeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ClaimScopesByUpdatedBlockIdMaxCreatedAtAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ClaimScopesByUpdatedBlockIdMaxCreatedAtDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ClaimScopesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdMaxIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ClaimScopesByUpdatedBlockIdMaxIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ClaimScopesByUpdatedBlockIdMaxScopeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_SCOPE_ASC', + ClaimScopesByUpdatedBlockIdMaxScopeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_SCOPE_DESC', + ClaimScopesByUpdatedBlockIdMaxTargetAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_TARGET_ASC', + ClaimScopesByUpdatedBlockIdMaxTargetDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_TARGET_DESC', + ClaimScopesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdMinAssetIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + ClaimScopesByUpdatedBlockIdMinAssetIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + ClaimScopesByUpdatedBlockIdMinBlockRangeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ClaimScopesByUpdatedBlockIdMinBlockRangeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ClaimScopesByUpdatedBlockIdMinCreatedAtAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ClaimScopesByUpdatedBlockIdMinCreatedAtDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ClaimScopesByUpdatedBlockIdMinCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdMinCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdMinIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ClaimScopesByUpdatedBlockIdMinIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ClaimScopesByUpdatedBlockIdMinScopeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_SCOPE_ASC', + ClaimScopesByUpdatedBlockIdMinScopeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_SCOPE_DESC', + ClaimScopesByUpdatedBlockIdMinTargetAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_TARGET_ASC', + ClaimScopesByUpdatedBlockIdMinTargetDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_TARGET_DESC', + ClaimScopesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdStddevPopulationAssetIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ClaimScopesByUpdatedBlockIdStddevPopulationAssetIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ClaimScopesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ClaimScopesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ClaimScopesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ClaimScopesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ClaimScopesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdStddevPopulationIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ClaimScopesByUpdatedBlockIdStddevPopulationIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ClaimScopesByUpdatedBlockIdStddevPopulationScopeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SCOPE_ASC', + ClaimScopesByUpdatedBlockIdStddevPopulationScopeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SCOPE_DESC', + ClaimScopesByUpdatedBlockIdStddevPopulationTargetAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TARGET_ASC', + ClaimScopesByUpdatedBlockIdStddevPopulationTargetDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TARGET_DESC', + ClaimScopesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdStddevSampleAssetIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ClaimScopesByUpdatedBlockIdStddevSampleAssetIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ClaimScopesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ClaimScopesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ClaimScopesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ClaimScopesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ClaimScopesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdStddevSampleIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ClaimScopesByUpdatedBlockIdStddevSampleIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ClaimScopesByUpdatedBlockIdStddevSampleScopeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SCOPE_ASC', + ClaimScopesByUpdatedBlockIdStddevSampleScopeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SCOPE_DESC', + ClaimScopesByUpdatedBlockIdStddevSampleTargetAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_ASC', + ClaimScopesByUpdatedBlockIdStddevSampleTargetDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_DESC', + ClaimScopesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdSumAssetIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + ClaimScopesByUpdatedBlockIdSumAssetIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + ClaimScopesByUpdatedBlockIdSumBlockRangeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ClaimScopesByUpdatedBlockIdSumBlockRangeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ClaimScopesByUpdatedBlockIdSumCreatedAtAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ClaimScopesByUpdatedBlockIdSumCreatedAtDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ClaimScopesByUpdatedBlockIdSumCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdSumCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdSumIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ClaimScopesByUpdatedBlockIdSumIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ClaimScopesByUpdatedBlockIdSumScopeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_SCOPE_ASC', + ClaimScopesByUpdatedBlockIdSumScopeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_SCOPE_DESC', + ClaimScopesByUpdatedBlockIdSumTargetAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_TARGET_ASC', + ClaimScopesByUpdatedBlockIdSumTargetDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_TARGET_DESC', + ClaimScopesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdVariancePopulationAssetIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ClaimScopesByUpdatedBlockIdVariancePopulationAssetIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ClaimScopesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ClaimScopesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ClaimScopesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ClaimScopesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ClaimScopesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdVariancePopulationIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ClaimScopesByUpdatedBlockIdVariancePopulationIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ClaimScopesByUpdatedBlockIdVariancePopulationScopeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SCOPE_ASC', + ClaimScopesByUpdatedBlockIdVariancePopulationScopeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SCOPE_DESC', + ClaimScopesByUpdatedBlockIdVariancePopulationTargetAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_ASC', + ClaimScopesByUpdatedBlockIdVariancePopulationTargetDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_DESC', + ClaimScopesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdVarianceSampleAssetIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ClaimScopesByUpdatedBlockIdVarianceSampleAssetIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ClaimScopesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ClaimScopesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ClaimScopesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ClaimScopesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ClaimScopesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimScopesByUpdatedBlockIdVarianceSampleIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ClaimScopesByUpdatedBlockIdVarianceSampleIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ClaimScopesByUpdatedBlockIdVarianceSampleScopeAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SCOPE_ASC', + ClaimScopesByUpdatedBlockIdVarianceSampleScopeDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SCOPE_DESC', + ClaimScopesByUpdatedBlockIdVarianceSampleTargetAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_ASC', + ClaimScopesByUpdatedBlockIdVarianceSampleTargetDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_DESC', + ClaimScopesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimScopesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CLAIM_SCOPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdAverageAssetIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + CompliancesByCreatedBlockIdAverageAssetIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + CompliancesByCreatedBlockIdAverageBlockRangeAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + CompliancesByCreatedBlockIdAverageBlockRangeDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + CompliancesByCreatedBlockIdAverageComplianceIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_COMPLIANCE_ID_ASC', + CompliancesByCreatedBlockIdAverageComplianceIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_COMPLIANCE_ID_DESC', + CompliancesByCreatedBlockIdAverageCreatedAtAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + CompliancesByCreatedBlockIdAverageCreatedAtDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + CompliancesByCreatedBlockIdAverageCreatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdAverageCreatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdAverageDataAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_DATA_ASC', + CompliancesByCreatedBlockIdAverageDataDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_DATA_DESC', + CompliancesByCreatedBlockIdAverageIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + CompliancesByCreatedBlockIdAverageIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + CompliancesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdCountAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_COUNT_ASC', + CompliancesByCreatedBlockIdCountDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_COUNT_DESC', + CompliancesByCreatedBlockIdDistinctCountAssetIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + CompliancesByCreatedBlockIdDistinctCountAssetIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + CompliancesByCreatedBlockIdDistinctCountBlockRangeAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + CompliancesByCreatedBlockIdDistinctCountBlockRangeDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + CompliancesByCreatedBlockIdDistinctCountComplianceIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_COMPLIANCE_ID_ASC', + CompliancesByCreatedBlockIdDistinctCountComplianceIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_COMPLIANCE_ID_DESC', + CompliancesByCreatedBlockIdDistinctCountCreatedAtAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + CompliancesByCreatedBlockIdDistinctCountCreatedAtDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + CompliancesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdDistinctCountDataAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATA_ASC', + CompliancesByCreatedBlockIdDistinctCountDataDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATA_DESC', + CompliancesByCreatedBlockIdDistinctCountIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + CompliancesByCreatedBlockIdDistinctCountIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + CompliancesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdMaxAssetIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + CompliancesByCreatedBlockIdMaxAssetIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + CompliancesByCreatedBlockIdMaxBlockRangeAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + CompliancesByCreatedBlockIdMaxBlockRangeDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + CompliancesByCreatedBlockIdMaxComplianceIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_COMPLIANCE_ID_ASC', + CompliancesByCreatedBlockIdMaxComplianceIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_COMPLIANCE_ID_DESC', + CompliancesByCreatedBlockIdMaxCreatedAtAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + CompliancesByCreatedBlockIdMaxCreatedAtDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + CompliancesByCreatedBlockIdMaxCreatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdMaxCreatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdMaxDataAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_DATA_ASC', + CompliancesByCreatedBlockIdMaxDataDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_DATA_DESC', + CompliancesByCreatedBlockIdMaxIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + CompliancesByCreatedBlockIdMaxIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + CompliancesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdMinAssetIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + CompliancesByCreatedBlockIdMinAssetIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + CompliancesByCreatedBlockIdMinBlockRangeAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + CompliancesByCreatedBlockIdMinBlockRangeDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + CompliancesByCreatedBlockIdMinComplianceIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_COMPLIANCE_ID_ASC', + CompliancesByCreatedBlockIdMinComplianceIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_COMPLIANCE_ID_DESC', + CompliancesByCreatedBlockIdMinCreatedAtAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + CompliancesByCreatedBlockIdMinCreatedAtDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + CompliancesByCreatedBlockIdMinCreatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdMinCreatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdMinDataAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_DATA_ASC', + CompliancesByCreatedBlockIdMinDataDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_DATA_DESC', + CompliancesByCreatedBlockIdMinIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + CompliancesByCreatedBlockIdMinIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + CompliancesByCreatedBlockIdMinUpdatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdMinUpdatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdStddevPopulationAssetIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + CompliancesByCreatedBlockIdStddevPopulationAssetIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + CompliancesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + CompliancesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + CompliancesByCreatedBlockIdStddevPopulationComplianceIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_COMPLIANCE_ID_ASC', + CompliancesByCreatedBlockIdStddevPopulationComplianceIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_COMPLIANCE_ID_DESC', + CompliancesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + CompliancesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + CompliancesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdStddevPopulationDataAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATA_ASC', + CompliancesByCreatedBlockIdStddevPopulationDataDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATA_DESC', + CompliancesByCreatedBlockIdStddevPopulationIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + CompliancesByCreatedBlockIdStddevPopulationIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + CompliancesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdStddevSampleAssetIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + CompliancesByCreatedBlockIdStddevSampleAssetIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + CompliancesByCreatedBlockIdStddevSampleBlockRangeAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + CompliancesByCreatedBlockIdStddevSampleBlockRangeDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + CompliancesByCreatedBlockIdStddevSampleComplianceIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_COMPLIANCE_ID_ASC', + CompliancesByCreatedBlockIdStddevSampleComplianceIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_COMPLIANCE_ID_DESC', + CompliancesByCreatedBlockIdStddevSampleCreatedAtAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + CompliancesByCreatedBlockIdStddevSampleCreatedAtDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + CompliancesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdStddevSampleDataAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATA_ASC', + CompliancesByCreatedBlockIdStddevSampleDataDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATA_DESC', + CompliancesByCreatedBlockIdStddevSampleIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + CompliancesByCreatedBlockIdStddevSampleIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + CompliancesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdSumAssetIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + CompliancesByCreatedBlockIdSumAssetIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + CompliancesByCreatedBlockIdSumBlockRangeAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + CompliancesByCreatedBlockIdSumBlockRangeDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + CompliancesByCreatedBlockIdSumComplianceIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_COMPLIANCE_ID_ASC', + CompliancesByCreatedBlockIdSumComplianceIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_COMPLIANCE_ID_DESC', + CompliancesByCreatedBlockIdSumCreatedAtAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + CompliancesByCreatedBlockIdSumCreatedAtDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + CompliancesByCreatedBlockIdSumCreatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdSumCreatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdSumDataAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_DATA_ASC', + CompliancesByCreatedBlockIdSumDataDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_DATA_DESC', + CompliancesByCreatedBlockIdSumIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + CompliancesByCreatedBlockIdSumIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + CompliancesByCreatedBlockIdSumUpdatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdSumUpdatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdVariancePopulationAssetIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + CompliancesByCreatedBlockIdVariancePopulationAssetIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + CompliancesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + CompliancesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + CompliancesByCreatedBlockIdVariancePopulationComplianceIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_COMPLIANCE_ID_ASC', + CompliancesByCreatedBlockIdVariancePopulationComplianceIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_COMPLIANCE_ID_DESC', + CompliancesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + CompliancesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + CompliancesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdVariancePopulationDataAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATA_ASC', + CompliancesByCreatedBlockIdVariancePopulationDataDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATA_DESC', + CompliancesByCreatedBlockIdVariancePopulationIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + CompliancesByCreatedBlockIdVariancePopulationIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + CompliancesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdVarianceSampleAssetIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + CompliancesByCreatedBlockIdVarianceSampleAssetIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + CompliancesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + CompliancesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + CompliancesByCreatedBlockIdVarianceSampleComplianceIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_COMPLIANCE_ID_ASC', + CompliancesByCreatedBlockIdVarianceSampleComplianceIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_COMPLIANCE_ID_DESC', + CompliancesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + CompliancesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + CompliancesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + CompliancesByCreatedBlockIdVarianceSampleDataAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_ASC', + CompliancesByCreatedBlockIdVarianceSampleDataDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_DESC', + CompliancesByCreatedBlockIdVarianceSampleIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + CompliancesByCreatedBlockIdVarianceSampleIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + CompliancesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + CompliancesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdAverageAssetIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + CompliancesByUpdatedBlockIdAverageAssetIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + CompliancesByUpdatedBlockIdAverageBlockRangeAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + CompliancesByUpdatedBlockIdAverageBlockRangeDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + CompliancesByUpdatedBlockIdAverageComplianceIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_COMPLIANCE_ID_ASC', + CompliancesByUpdatedBlockIdAverageComplianceIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_COMPLIANCE_ID_DESC', + CompliancesByUpdatedBlockIdAverageCreatedAtAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + CompliancesByUpdatedBlockIdAverageCreatedAtDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + CompliancesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdAverageDataAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_DATA_ASC', + CompliancesByUpdatedBlockIdAverageDataDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_DATA_DESC', + CompliancesByUpdatedBlockIdAverageIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + CompliancesByUpdatedBlockIdAverageIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + CompliancesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdCountAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + CompliancesByUpdatedBlockIdCountDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + CompliancesByUpdatedBlockIdDistinctCountAssetIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + CompliancesByUpdatedBlockIdDistinctCountAssetIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + CompliancesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + CompliancesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + CompliancesByUpdatedBlockIdDistinctCountComplianceIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_COMPLIANCE_ID_ASC', + CompliancesByUpdatedBlockIdDistinctCountComplianceIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_COMPLIANCE_ID_DESC', + CompliancesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + CompliancesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + CompliancesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdDistinctCountDataAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATA_ASC', + CompliancesByUpdatedBlockIdDistinctCountDataDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATA_DESC', + CompliancesByUpdatedBlockIdDistinctCountIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + CompliancesByUpdatedBlockIdDistinctCountIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + CompliancesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdMaxAssetIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + CompliancesByUpdatedBlockIdMaxAssetIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + CompliancesByUpdatedBlockIdMaxBlockRangeAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + CompliancesByUpdatedBlockIdMaxBlockRangeDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + CompliancesByUpdatedBlockIdMaxComplianceIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_COMPLIANCE_ID_ASC', + CompliancesByUpdatedBlockIdMaxComplianceIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_COMPLIANCE_ID_DESC', + CompliancesByUpdatedBlockIdMaxCreatedAtAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + CompliancesByUpdatedBlockIdMaxCreatedAtDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + CompliancesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdMaxDataAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_DATA_ASC', + CompliancesByUpdatedBlockIdMaxDataDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_DATA_DESC', + CompliancesByUpdatedBlockIdMaxIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + CompliancesByUpdatedBlockIdMaxIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + CompliancesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdMinAssetIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + CompliancesByUpdatedBlockIdMinAssetIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + CompliancesByUpdatedBlockIdMinBlockRangeAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + CompliancesByUpdatedBlockIdMinBlockRangeDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + CompliancesByUpdatedBlockIdMinComplianceIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_COMPLIANCE_ID_ASC', + CompliancesByUpdatedBlockIdMinComplianceIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_COMPLIANCE_ID_DESC', + CompliancesByUpdatedBlockIdMinCreatedAtAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + CompliancesByUpdatedBlockIdMinCreatedAtDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + CompliancesByUpdatedBlockIdMinCreatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdMinCreatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdMinDataAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_DATA_ASC', + CompliancesByUpdatedBlockIdMinDataDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_DATA_DESC', + CompliancesByUpdatedBlockIdMinIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + CompliancesByUpdatedBlockIdMinIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + CompliancesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdStddevPopulationAssetIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + CompliancesByUpdatedBlockIdStddevPopulationAssetIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + CompliancesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + CompliancesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + CompliancesByUpdatedBlockIdStddevPopulationComplianceIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_COMPLIANCE_ID_ASC', + CompliancesByUpdatedBlockIdStddevPopulationComplianceIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_COMPLIANCE_ID_DESC', + CompliancesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + CompliancesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + CompliancesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdStddevPopulationDataAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATA_ASC', + CompliancesByUpdatedBlockIdStddevPopulationDataDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATA_DESC', + CompliancesByUpdatedBlockIdStddevPopulationIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + CompliancesByUpdatedBlockIdStddevPopulationIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + CompliancesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdStddevSampleAssetIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + CompliancesByUpdatedBlockIdStddevSampleAssetIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + CompliancesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + CompliancesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + CompliancesByUpdatedBlockIdStddevSampleComplianceIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_COMPLIANCE_ID_ASC', + CompliancesByUpdatedBlockIdStddevSampleComplianceIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_COMPLIANCE_ID_DESC', + CompliancesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + CompliancesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + CompliancesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdStddevSampleDataAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATA_ASC', + CompliancesByUpdatedBlockIdStddevSampleDataDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATA_DESC', + CompliancesByUpdatedBlockIdStddevSampleIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + CompliancesByUpdatedBlockIdStddevSampleIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + CompliancesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdSumAssetIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + CompliancesByUpdatedBlockIdSumAssetIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + CompliancesByUpdatedBlockIdSumBlockRangeAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + CompliancesByUpdatedBlockIdSumBlockRangeDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + CompliancesByUpdatedBlockIdSumComplianceIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_COMPLIANCE_ID_ASC', + CompliancesByUpdatedBlockIdSumComplianceIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_COMPLIANCE_ID_DESC', + CompliancesByUpdatedBlockIdSumCreatedAtAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + CompliancesByUpdatedBlockIdSumCreatedAtDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + CompliancesByUpdatedBlockIdSumCreatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdSumCreatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdSumDataAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_DATA_ASC', + CompliancesByUpdatedBlockIdSumDataDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_DATA_DESC', + CompliancesByUpdatedBlockIdSumIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + CompliancesByUpdatedBlockIdSumIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + CompliancesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdVariancePopulationAssetIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + CompliancesByUpdatedBlockIdVariancePopulationAssetIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + CompliancesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + CompliancesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + CompliancesByUpdatedBlockIdVariancePopulationComplianceIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_COMPLIANCE_ID_ASC', + CompliancesByUpdatedBlockIdVariancePopulationComplianceIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_COMPLIANCE_ID_DESC', + CompliancesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + CompliancesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + CompliancesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdVariancePopulationDataAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATA_ASC', + CompliancesByUpdatedBlockIdVariancePopulationDataDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATA_DESC', + CompliancesByUpdatedBlockIdVariancePopulationIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + CompliancesByUpdatedBlockIdVariancePopulationIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + CompliancesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdVarianceSampleAssetIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + CompliancesByUpdatedBlockIdVarianceSampleAssetIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + CompliancesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + CompliancesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + CompliancesByUpdatedBlockIdVarianceSampleComplianceIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_COMPLIANCE_ID_ASC', + CompliancesByUpdatedBlockIdVarianceSampleComplianceIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_COMPLIANCE_ID_DESC', + CompliancesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + CompliancesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + CompliancesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + CompliancesByUpdatedBlockIdVarianceSampleDataAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_ASC', + CompliancesByUpdatedBlockIdVarianceSampleDataDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_DESC', + CompliancesByUpdatedBlockIdVarianceSampleIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + CompliancesByUpdatedBlockIdVarianceSampleIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + CompliancesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + CompliancesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdAverageAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_ACCOUNT_ASC', + ConfidentialAccountsByCreatedBlockIdAverageAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_ACCOUNT_DESC', + ConfidentialAccountsByCreatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAccountsByCreatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAccountsByCreatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdAverageCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + ConfidentialAccountsByCreatedBlockIdAverageCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + ConfidentialAccountsByCreatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAccountsByCreatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAccountsByCreatedBlockIdAverageFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatedBlockIdAverageFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatedBlockIdAverageIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialAccountsByCreatedBlockIdAverageIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialAccountsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdCountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + ConfidentialAccountsByCreatedBlockIdCountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + ConfidentialAccountsByCreatedBlockIdDistinctCountAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ASC', + ConfidentialAccountsByCreatedBlockIdDistinctCountAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_DESC', + ConfidentialAccountsByCreatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAccountsByCreatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAccountsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdDistinctCountCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + ConfidentialAccountsByCreatedBlockIdDistinctCountCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + ConfidentialAccountsByCreatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAccountsByCreatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAccountsByCreatedBlockIdDistinctCountFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatedBlockIdDistinctCountFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAccountsByCreatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAccountsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdMaxAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_ACCOUNT_ASC', + ConfidentialAccountsByCreatedBlockIdMaxAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_ACCOUNT_DESC', + ConfidentialAccountsByCreatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialAccountsByCreatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialAccountsByCreatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdMaxCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + ConfidentialAccountsByCreatedBlockIdMaxCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + ConfidentialAccountsByCreatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialAccountsByCreatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialAccountsByCreatedBlockIdMaxFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatedBlockIdMaxFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatedBlockIdMaxIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialAccountsByCreatedBlockIdMaxIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialAccountsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdMinAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_ACCOUNT_ASC', + ConfidentialAccountsByCreatedBlockIdMinAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_ACCOUNT_DESC', + ConfidentialAccountsByCreatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialAccountsByCreatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialAccountsByCreatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdMinCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + ConfidentialAccountsByCreatedBlockIdMinCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + ConfidentialAccountsByCreatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialAccountsByCreatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialAccountsByCreatedBlockIdMinFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatedBlockIdMinFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatedBlockIdMinIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialAccountsByCreatedBlockIdMinIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialAccountsByCreatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ASC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_DESC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdStddevSampleAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ASC', + ConfidentialAccountsByCreatedBlockIdStddevSampleAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_DESC', + ConfidentialAccountsByCreatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAccountsByCreatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAccountsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdStddevSampleCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + ConfidentialAccountsByCreatedBlockIdStddevSampleCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + ConfidentialAccountsByCreatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAccountsByCreatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAccountsByCreatedBlockIdStddevSampleFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatedBlockIdStddevSampleFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAccountsByCreatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAccountsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdSumAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_ACCOUNT_ASC', + ConfidentialAccountsByCreatedBlockIdSumAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_ACCOUNT_DESC', + ConfidentialAccountsByCreatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialAccountsByCreatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialAccountsByCreatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdSumCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + ConfidentialAccountsByCreatedBlockIdSumCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + ConfidentialAccountsByCreatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialAccountsByCreatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialAccountsByCreatedBlockIdSumFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatedBlockIdSumFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatedBlockIdSumIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialAccountsByCreatedBlockIdSumIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialAccountsByCreatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ASC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_DESC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ASC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_DESC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdAverageAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_ACCOUNT_ASC', + ConfidentialAccountsByUpdatedBlockIdAverageAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_ACCOUNT_DESC', + ConfidentialAccountsByUpdatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAccountsByUpdatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAccountsByUpdatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAccountsByUpdatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAccountsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdAverageCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdAverageCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAccountsByUpdatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAccountsByUpdatedBlockIdAverageFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByUpdatedBlockIdAverageFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByUpdatedBlockIdAverageIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdAverageIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdCountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ConfidentialAccountsByUpdatedBlockIdCountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ASC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_DESC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdMaxAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_ACCOUNT_ASC', + ConfidentialAccountsByUpdatedBlockIdMaxAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_ACCOUNT_DESC', + ConfidentialAccountsByUpdatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAccountsByUpdatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAccountsByUpdatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialAccountsByUpdatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialAccountsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdMaxCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdMaxCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialAccountsByUpdatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialAccountsByUpdatedBlockIdMaxFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByUpdatedBlockIdMaxFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByUpdatedBlockIdMaxIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdMaxIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdMinAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_ACCOUNT_ASC', + ConfidentialAccountsByUpdatedBlockIdMinAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_ACCOUNT_DESC', + ConfidentialAccountsByUpdatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAccountsByUpdatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAccountsByUpdatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialAccountsByUpdatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialAccountsByUpdatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdMinCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdMinCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialAccountsByUpdatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialAccountsByUpdatedBlockIdMinFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByUpdatedBlockIdMinFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByUpdatedBlockIdMinIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdMinIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdSumAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_ACCOUNT_ASC', + ConfidentialAccountsByUpdatedBlockIdSumAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_ACCOUNT_DESC', + ConfidentialAccountsByUpdatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAccountsByUpdatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAccountsByUpdatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialAccountsByUpdatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialAccountsByUpdatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdSumCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdSumCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialAccountsByUpdatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialAccountsByUpdatedBlockIdSumFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByUpdatedBlockIdSumFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByUpdatedBlockIdSumIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdSumIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ASC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_DESC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ASC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_DESC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdAverageAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatedBlockIdAverageAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatedBlockIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetsByCreatedBlockIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetsByCreatedBlockIdAverageAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_AUDITORS_ASC', + ConfidentialAssetsByCreatedBlockIdAverageAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_AUDITORS_DESC', + ConfidentialAssetsByCreatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetsByCreatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetsByCreatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdAverageCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + ConfidentialAssetsByCreatedBlockIdAverageCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + ConfidentialAssetsByCreatedBlockIdAverageDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_DATA_ASC', + ConfidentialAssetsByCreatedBlockIdAverageDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_DATA_DESC', + ConfidentialAssetsByCreatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetsByCreatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetsByCreatedBlockIdAverageIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialAssetsByCreatedBlockIdAverageIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialAssetsByCreatedBlockIdAverageIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_FROZEN_ASC', + ConfidentialAssetsByCreatedBlockIdAverageIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_IS_FROZEN_DESC', + ConfidentialAssetsByCreatedBlockIdAverageMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_MEDIATORS_ASC', + ConfidentialAssetsByCreatedBlockIdAverageMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_MEDIATORS_DESC', + ConfidentialAssetsByCreatedBlockIdAverageTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TICKER_ASC', + ConfidentialAssetsByCreatedBlockIdAverageTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TICKER_DESC', + ConfidentialAssetsByCreatedBlockIdAverageTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatedBlockIdAverageTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdAverageVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatedBlockIdAverageVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_AVERAGE_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatedBlockIdCountAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_COUNT_ASC', + ConfidentialAssetsByCreatedBlockIdCountDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_COUNT_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AUDITORS_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AUDITORS_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATA_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATA_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_FROZEN_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_FROZEN_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TICKER_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TICKER_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdDistinctCountVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatedBlockIdDistinctCountVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatedBlockIdMaxAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatedBlockIdMaxAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatedBlockIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetsByCreatedBlockIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetsByCreatedBlockIdMaxAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_AUDITORS_ASC', + ConfidentialAssetsByCreatedBlockIdMaxAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_AUDITORS_DESC', + ConfidentialAssetsByCreatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetsByCreatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetsByCreatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdMaxCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + ConfidentialAssetsByCreatedBlockIdMaxCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + ConfidentialAssetsByCreatedBlockIdMaxDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_DATA_ASC', + ConfidentialAssetsByCreatedBlockIdMaxDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_DATA_DESC', + ConfidentialAssetsByCreatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetsByCreatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetsByCreatedBlockIdMaxIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialAssetsByCreatedBlockIdMaxIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialAssetsByCreatedBlockIdMaxIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_FROZEN_ASC', + ConfidentialAssetsByCreatedBlockIdMaxIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_IS_FROZEN_DESC', + ConfidentialAssetsByCreatedBlockIdMaxMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_MEDIATORS_ASC', + ConfidentialAssetsByCreatedBlockIdMaxMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_MEDIATORS_DESC', + ConfidentialAssetsByCreatedBlockIdMaxTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_TICKER_ASC', + ConfidentialAssetsByCreatedBlockIdMaxTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_TICKER_DESC', + ConfidentialAssetsByCreatedBlockIdMaxTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatedBlockIdMaxTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdMaxVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatedBlockIdMaxVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MAX_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatedBlockIdMinAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatedBlockIdMinAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatedBlockIdMinAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetsByCreatedBlockIdMinAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetsByCreatedBlockIdMinAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_AUDITORS_ASC', + ConfidentialAssetsByCreatedBlockIdMinAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_AUDITORS_DESC', + ConfidentialAssetsByCreatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetsByCreatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetsByCreatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdMinCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + ConfidentialAssetsByCreatedBlockIdMinCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + ConfidentialAssetsByCreatedBlockIdMinDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_DATA_ASC', + ConfidentialAssetsByCreatedBlockIdMinDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_DATA_DESC', + ConfidentialAssetsByCreatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetsByCreatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetsByCreatedBlockIdMinIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialAssetsByCreatedBlockIdMinIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialAssetsByCreatedBlockIdMinIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_FROZEN_ASC', + ConfidentialAssetsByCreatedBlockIdMinIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_IS_FROZEN_DESC', + ConfidentialAssetsByCreatedBlockIdMinMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_MEDIATORS_ASC', + ConfidentialAssetsByCreatedBlockIdMinMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_MEDIATORS_DESC', + ConfidentialAssetsByCreatedBlockIdMinTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_TICKER_ASC', + ConfidentialAssetsByCreatedBlockIdMinTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_TICKER_DESC', + ConfidentialAssetsByCreatedBlockIdMinTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatedBlockIdMinTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdMinVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatedBlockIdMinVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_MIN_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AUDITORS_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AUDITORS_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATA_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATA_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_FROZEN_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_FROZEN_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TICKER_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TICKER_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatedBlockIdStddevPopulationVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AUDITORS_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AUDITORS_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATA_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATA_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_FROZEN_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_FROZEN_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdStddevSampleVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatedBlockIdStddevSampleVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatedBlockIdSumAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatedBlockIdSumAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatedBlockIdSumAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetsByCreatedBlockIdSumAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetsByCreatedBlockIdSumAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_AUDITORS_ASC', + ConfidentialAssetsByCreatedBlockIdSumAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_AUDITORS_DESC', + ConfidentialAssetsByCreatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetsByCreatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetsByCreatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdSumCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + ConfidentialAssetsByCreatedBlockIdSumCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + ConfidentialAssetsByCreatedBlockIdSumDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_DATA_ASC', + ConfidentialAssetsByCreatedBlockIdSumDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_DATA_DESC', + ConfidentialAssetsByCreatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetsByCreatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetsByCreatedBlockIdSumIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialAssetsByCreatedBlockIdSumIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialAssetsByCreatedBlockIdSumIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_FROZEN_ASC', + ConfidentialAssetsByCreatedBlockIdSumIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_IS_FROZEN_DESC', + ConfidentialAssetsByCreatedBlockIdSumMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_MEDIATORS_ASC', + ConfidentialAssetsByCreatedBlockIdSumMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_MEDIATORS_DESC', + ConfidentialAssetsByCreatedBlockIdSumTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_TICKER_ASC', + ConfidentialAssetsByCreatedBlockIdSumTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_TICKER_DESC', + ConfidentialAssetsByCreatedBlockIdSumTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatedBlockIdSumTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdSumVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatedBlockIdSumVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_SUM_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AUDITORS_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AUDITORS_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATA_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATA_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_FROZEN_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_FROZEN_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatedBlockIdVariancePopulationVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AUDITORS_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AUDITORS_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_FROZEN_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_FROZEN_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatedBlockIdVarianceSampleVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_FILTERING_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_ALLOWED_VENUES_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_ALLOWED_VENUES_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_AUDITORS_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_AUDITORS_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageDataAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_DATA_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageDataDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_DATA_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_FROZEN_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_FROZEN_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_MEDIATORS_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_MEDIATORS_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageTickerAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TICKER_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageTickerDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TICKER_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdAverageVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_VENUE_FILTERING_ASC', + ConfidentialAssetsByUpdatedBlockIdAverageVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_AVERAGE_VENUE_FILTERING_DESC', + ConfidentialAssetsByUpdatedBlockIdCountAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ConfidentialAssetsByUpdatedBlockIdCountDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ALLOWED_VENUES_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ALLOWED_VENUES_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AUDITORS_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AUDITORS_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountDataAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATA_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountDataDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATA_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_FROZEN_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_FROZEN_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountTickerAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TICKER_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountTickerDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TICKER_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VENUE_FILTERING_ASC', + ConfidentialAssetsByUpdatedBlockIdDistinctCountVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VENUE_FILTERING_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_ALLOWED_VENUES_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_ALLOWED_VENUES_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_AUDITORS_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_AUDITORS_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxDataAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_DATA_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxDataDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_DATA_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_FROZEN_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_IS_FROZEN_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_MEDIATORS_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_MEDIATORS_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxTickerAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_TICKER_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxTickerDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_TICKER_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdMaxVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_VENUE_FILTERING_ASC', + ConfidentialAssetsByUpdatedBlockIdMaxVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MAX_VENUE_FILTERING_DESC', + ConfidentialAssetsByUpdatedBlockIdMinAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_ALLOWED_VENUES_ASC', + ConfidentialAssetsByUpdatedBlockIdMinAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_ALLOWED_VENUES_DESC', + ConfidentialAssetsByUpdatedBlockIdMinAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdMinAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdMinAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_AUDITORS_ASC', + ConfidentialAssetsByUpdatedBlockIdMinAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_AUDITORS_DESC', + ConfidentialAssetsByUpdatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetsByUpdatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetsByUpdatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetsByUpdatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetsByUpdatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdMinCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdMinCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdMinDataAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_DATA_ASC', + ConfidentialAssetsByUpdatedBlockIdMinDataDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_DATA_DESC', + ConfidentialAssetsByUpdatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetsByUpdatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetsByUpdatedBlockIdMinIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdMinIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdMinIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_FROZEN_ASC', + ConfidentialAssetsByUpdatedBlockIdMinIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_IS_FROZEN_DESC', + ConfidentialAssetsByUpdatedBlockIdMinMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_MEDIATORS_ASC', + ConfidentialAssetsByUpdatedBlockIdMinMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_MEDIATORS_DESC', + ConfidentialAssetsByUpdatedBlockIdMinTickerAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_TICKER_ASC', + ConfidentialAssetsByUpdatedBlockIdMinTickerDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_TICKER_DESC', + ConfidentialAssetsByUpdatedBlockIdMinTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByUpdatedBlockIdMinTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdMinVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_VENUE_FILTERING_ASC', + ConfidentialAssetsByUpdatedBlockIdMinVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_MIN_VENUE_FILTERING_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ALLOWED_VENUES_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ALLOWED_VENUES_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AUDITORS_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AUDITORS_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationDataAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATA_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationDataDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATA_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_FROZEN_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_FROZEN_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationTickerAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TICKER_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationTickerDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TICKER_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VENUE_FILTERING_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevPopulationVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VENUE_FILTERING_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ALLOWED_VENUES_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ALLOWED_VENUES_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AUDITORS_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AUDITORS_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleDataAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATA_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleDataDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATA_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_FROZEN_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_FROZEN_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleTickerAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleTickerDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_FILTERING_ASC', + ConfidentialAssetsByUpdatedBlockIdStddevSampleVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_FILTERING_DESC', + ConfidentialAssetsByUpdatedBlockIdSumAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_ALLOWED_VENUES_ASC', + ConfidentialAssetsByUpdatedBlockIdSumAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_ALLOWED_VENUES_DESC', + ConfidentialAssetsByUpdatedBlockIdSumAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdSumAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdSumAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_AUDITORS_ASC', + ConfidentialAssetsByUpdatedBlockIdSumAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_AUDITORS_DESC', + ConfidentialAssetsByUpdatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetsByUpdatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetsByUpdatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetsByUpdatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetsByUpdatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdSumCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdSumCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdSumDataAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_DATA_ASC', + ConfidentialAssetsByUpdatedBlockIdSumDataDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_DATA_DESC', + ConfidentialAssetsByUpdatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetsByUpdatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetsByUpdatedBlockIdSumIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdSumIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdSumIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_FROZEN_ASC', + ConfidentialAssetsByUpdatedBlockIdSumIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_IS_FROZEN_DESC', + ConfidentialAssetsByUpdatedBlockIdSumMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_MEDIATORS_ASC', + ConfidentialAssetsByUpdatedBlockIdSumMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_MEDIATORS_DESC', + ConfidentialAssetsByUpdatedBlockIdSumTickerAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_TICKER_ASC', + ConfidentialAssetsByUpdatedBlockIdSumTickerDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_TICKER_DESC', + ConfidentialAssetsByUpdatedBlockIdSumTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByUpdatedBlockIdSumTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdSumVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_VENUE_FILTERING_ASC', + ConfidentialAssetsByUpdatedBlockIdSumVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_SUM_VENUE_FILTERING_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ALLOWED_VENUES_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ALLOWED_VENUES_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AUDITORS_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AUDITORS_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationDataAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATA_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationDataDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATA_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_FROZEN_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_FROZEN_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationTickerAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationTickerDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_FILTERING_ASC', + ConfidentialAssetsByUpdatedBlockIdVariancePopulationVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_FILTERING_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ALLOWED_VENUES_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ALLOWED_VENUES_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AUDITORS_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AUDITORS_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleDataAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleDataDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATA_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_FROZEN_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_FROZEN_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleTickerAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleTickerDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_FILTERING_ASC', + ConfidentialAssetsByUpdatedBlockIdVarianceSampleVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_FILTERING_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_FROM_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_FROM_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_MEMO_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_MEMO_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_TO_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_TO_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdCountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_COUNT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdCountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_COUNT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMO_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMO_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_FROM_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_FROM_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_MEMO_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_MEMO_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_TO_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_TO_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_FROM_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_FROM_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_MEMO_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_MEMO_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_TO_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_TO_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_FROM_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_FROM_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_MEMO_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_MEMO_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_TO_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_TO_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_MEMO_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_MEMO_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdCountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdCountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMO_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMO_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_FROM_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_FROM_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_MEMO_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_MEMO_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_TO_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_TO_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_FROM_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_FROM_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_MEMO_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_MEMO_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_TO_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_TO_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_FROM_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_FROM_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_MEMO_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_MEMO_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_TO_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_TO_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdAverageAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdAverageAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdAverageAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdAverageAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByCreatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByCreatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByCreatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByCreatedBlockIdAverageIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdAverageIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdCountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_COUNT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdCountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_COUNT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMaxAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMaxAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMaxAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMaxAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMaxIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMaxIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMinAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMinAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMinAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMinAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMinIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMinIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdSumAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdSumAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdSumAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdSumAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByCreatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByCreatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetHoldersByCreatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetHoldersByCreatedBlockIdSumIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdSumIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdCountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdCountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMinAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMinAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMinAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMinAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMinIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMinIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdSumAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdSumAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdSumAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdSumAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdSumIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdSumIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByCreatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByCreatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetMovementsByCreatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetMovementsByCreatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdAverageFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdAverageFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdAverageIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdAverageIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdAverageProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_PROOF_ASC', + ConfidentialAssetMovementsByCreatedBlockIdAverageProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_PROOF_DESC', + ConfidentialAssetMovementsByCreatedBlockIdAverageToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TO_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdAverageToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TO_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdCountAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + ConfidentialAssetMovementsByCreatedBlockIdCountDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROOF_ASC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROOF_DESC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMaxFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_FROM_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMaxFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_FROM_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMaxIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMaxIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMaxProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_PROOF_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMaxProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_PROOF_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMaxToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_TO_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMaxToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_TO_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMinFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_FROM_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMinFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_FROM_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMinIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMinIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMinProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_PROOF_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMinProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_PROOF_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMinToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_TO_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMinToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_TO_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROOF_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROOF_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROOF_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROOF_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByCreatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByCreatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetMovementsByCreatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetMovementsByCreatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdSumFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_FROM_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdSumFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_FROM_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdSumIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdSumIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdSumProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_PROOF_ASC', + ConfidentialAssetMovementsByCreatedBlockIdSumProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_PROOF_DESC', + ConfidentialAssetMovementsByCreatedBlockIdSumToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_TO_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdSumToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_TO_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROOF_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROOF_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROOF_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROOF_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_DESC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_PROOF_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_PROOF_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdCountAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdCountDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROOF_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROOF_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_FROM_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_FROM_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_PROOF_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_PROOF_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_TO_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_TO_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMinFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_FROM_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMinFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_FROM_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMinIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMinIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMinProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_PROOF_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMinProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_PROOF_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMinToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_TO_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMinToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_TO_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROOF_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROOF_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROOF_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROOF_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdSumFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_FROM_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdSumFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_FROM_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdSumIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdSumIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdSumProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_PROOF_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdSumProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_PROOF_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdSumToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_TO_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdSumToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_TO_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROOF_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROOF_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROOF_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROOF_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_DESC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdAverageAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_AUDITORS_ASC', + ConfidentialLegsByCreatedBlockIdAverageAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_AUDITORS_DESC', + ConfidentialLegsByCreatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialLegsByCreatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialLegsByCreatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialLegsByCreatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialLegsByCreatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdAverageIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialLegsByCreatedBlockIdAverageIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialLegsByCreatedBlockIdAverageMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_MEDIATORS_ASC', + ConfidentialLegsByCreatedBlockIdAverageMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_MEDIATORS_DESC', + ConfidentialLegsByCreatedBlockIdAverageReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_RECEIVER_ID_ASC', + ConfidentialLegsByCreatedBlockIdAverageReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_RECEIVER_ID_DESC', + ConfidentialLegsByCreatedBlockIdAverageSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_SENDER_ID_ASC', + ConfidentialLegsByCreatedBlockIdAverageSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_SENDER_ID_DESC', + ConfidentialLegsByCreatedBlockIdAverageTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialLegsByCreatedBlockIdAverageTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialLegsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdCountAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_COUNT_ASC', + ConfidentialLegsByCreatedBlockIdCountDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_COUNT_DESC', + ConfidentialLegsByCreatedBlockIdDistinctCountAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_AUDITORS_ASC', + ConfidentialLegsByCreatedBlockIdDistinctCountAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_AUDITORS_DESC', + ConfidentialLegsByCreatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialLegsByCreatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialLegsByCreatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialLegsByCreatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialLegsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialLegsByCreatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialLegsByCreatedBlockIdDistinctCountMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_ASC', + ConfidentialLegsByCreatedBlockIdDistinctCountMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_DESC', + ConfidentialLegsByCreatedBlockIdDistinctCountReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RECEIVER_ID_ASC', + ConfidentialLegsByCreatedBlockIdDistinctCountReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RECEIVER_ID_DESC', + ConfidentialLegsByCreatedBlockIdDistinctCountSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SENDER_ID_ASC', + ConfidentialLegsByCreatedBlockIdDistinctCountSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SENDER_ID_DESC', + ConfidentialLegsByCreatedBlockIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialLegsByCreatedBlockIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialLegsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdMaxAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_ASSET_AUDITORS_ASC', + ConfidentialLegsByCreatedBlockIdMaxAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_ASSET_AUDITORS_DESC', + ConfidentialLegsByCreatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialLegsByCreatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialLegsByCreatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialLegsByCreatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialLegsByCreatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdMaxIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialLegsByCreatedBlockIdMaxIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialLegsByCreatedBlockIdMaxMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_MEDIATORS_ASC', + ConfidentialLegsByCreatedBlockIdMaxMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_MEDIATORS_DESC', + ConfidentialLegsByCreatedBlockIdMaxReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_RECEIVER_ID_ASC', + ConfidentialLegsByCreatedBlockIdMaxReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_RECEIVER_ID_DESC', + ConfidentialLegsByCreatedBlockIdMaxSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_SENDER_ID_ASC', + ConfidentialLegsByCreatedBlockIdMaxSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_SENDER_ID_DESC', + ConfidentialLegsByCreatedBlockIdMaxTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialLegsByCreatedBlockIdMaxTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialLegsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdMinAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_ASSET_AUDITORS_ASC', + ConfidentialLegsByCreatedBlockIdMinAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_ASSET_AUDITORS_DESC', + ConfidentialLegsByCreatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialLegsByCreatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialLegsByCreatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialLegsByCreatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialLegsByCreatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdMinIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialLegsByCreatedBlockIdMinIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialLegsByCreatedBlockIdMinMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_MEDIATORS_ASC', + ConfidentialLegsByCreatedBlockIdMinMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_MEDIATORS_DESC', + ConfidentialLegsByCreatedBlockIdMinReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_RECEIVER_ID_ASC', + ConfidentialLegsByCreatedBlockIdMinReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_RECEIVER_ID_DESC', + ConfidentialLegsByCreatedBlockIdMinSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_SENDER_ID_ASC', + ConfidentialLegsByCreatedBlockIdMinSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_SENDER_ID_DESC', + ConfidentialLegsByCreatedBlockIdMinTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialLegsByCreatedBlockIdMinTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialLegsByCreatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevPopulationAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_AUDITORS_ASC', + ConfidentialLegsByCreatedBlockIdStddevPopulationAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_AUDITORS_DESC', + ConfidentialLegsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialLegsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialLegsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialLegsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialLegsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevPopulationMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_ASC', + ConfidentialLegsByCreatedBlockIdStddevPopulationMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_DESC', + ConfidentialLegsByCreatedBlockIdStddevPopulationReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RECEIVER_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevPopulationReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RECEIVER_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevPopulationSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SENDER_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevPopulationSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SENDER_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevSampleAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_AUDITORS_ASC', + ConfidentialLegsByCreatedBlockIdStddevSampleAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_AUDITORS_DESC', + ConfidentialLegsByCreatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialLegsByCreatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialLegsByCreatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialLegsByCreatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialLegsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevSampleMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_ASC', + ConfidentialLegsByCreatedBlockIdStddevSampleMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_DESC', + ConfidentialLegsByCreatedBlockIdStddevSampleReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RECEIVER_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevSampleReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RECEIVER_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevSampleSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SENDER_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevSampleSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SENDER_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialLegsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdSumAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_ASSET_AUDITORS_ASC', + ConfidentialLegsByCreatedBlockIdSumAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_ASSET_AUDITORS_DESC', + ConfidentialLegsByCreatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialLegsByCreatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialLegsByCreatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialLegsByCreatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialLegsByCreatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdSumIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialLegsByCreatedBlockIdSumIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialLegsByCreatedBlockIdSumMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_MEDIATORS_ASC', + ConfidentialLegsByCreatedBlockIdSumMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_MEDIATORS_DESC', + ConfidentialLegsByCreatedBlockIdSumReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_RECEIVER_ID_ASC', + ConfidentialLegsByCreatedBlockIdSumReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_RECEIVER_ID_DESC', + ConfidentialLegsByCreatedBlockIdSumSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_SENDER_ID_ASC', + ConfidentialLegsByCreatedBlockIdSumSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_SENDER_ID_DESC', + ConfidentialLegsByCreatedBlockIdSumTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialLegsByCreatedBlockIdSumTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialLegsByCreatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdVariancePopulationAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_AUDITORS_ASC', + ConfidentialLegsByCreatedBlockIdVariancePopulationAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_AUDITORS_DESC', + ConfidentialLegsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialLegsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialLegsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialLegsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialLegsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialLegsByCreatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialLegsByCreatedBlockIdVariancePopulationMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_ASC', + ConfidentialLegsByCreatedBlockIdVariancePopulationMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_DESC', + ConfidentialLegsByCreatedBlockIdVariancePopulationReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RECEIVER_ID_ASC', + ConfidentialLegsByCreatedBlockIdVariancePopulationReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RECEIVER_ID_DESC', + ConfidentialLegsByCreatedBlockIdVariancePopulationSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SENDER_ID_ASC', + ConfidentialLegsByCreatedBlockIdVariancePopulationSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SENDER_ID_DESC', + ConfidentialLegsByCreatedBlockIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialLegsByCreatedBlockIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialLegsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdVarianceSampleAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_AUDITORS_ASC', + ConfidentialLegsByCreatedBlockIdVarianceSampleAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_AUDITORS_DESC', + ConfidentialLegsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialLegsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialLegsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialLegsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialLegsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByCreatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialLegsByCreatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialLegsByCreatedBlockIdVarianceSampleMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_ASC', + ConfidentialLegsByCreatedBlockIdVarianceSampleMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_DESC', + ConfidentialLegsByCreatedBlockIdVarianceSampleReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RECEIVER_ID_ASC', + ConfidentialLegsByCreatedBlockIdVarianceSampleReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RECEIVER_ID_DESC', + ConfidentialLegsByCreatedBlockIdVarianceSampleSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SENDER_ID_ASC', + ConfidentialLegsByCreatedBlockIdVarianceSampleSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SENDER_ID_DESC', + ConfidentialLegsByCreatedBlockIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialLegsByCreatedBlockIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialLegsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdAverageAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_AUDITORS_ASC', + ConfidentialLegsByUpdatedBlockIdAverageAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_AUDITORS_DESC', + ConfidentialLegsByUpdatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialLegsByUpdatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialLegsByUpdatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialLegsByUpdatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialLegsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdAverageIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialLegsByUpdatedBlockIdAverageIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialLegsByUpdatedBlockIdAverageMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_MEDIATORS_ASC', + ConfidentialLegsByUpdatedBlockIdAverageMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_MEDIATORS_DESC', + ConfidentialLegsByUpdatedBlockIdAverageReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_RECEIVER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdAverageReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_RECEIVER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdAverageSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_SENDER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdAverageSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_SENDER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdAverageTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialLegsByUpdatedBlockIdAverageTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialLegsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdCountAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ConfidentialLegsByUpdatedBlockIdCountDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ConfidentialLegsByUpdatedBlockIdDistinctCountAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_AUDITORS_ASC', + ConfidentialLegsByUpdatedBlockIdDistinctCountAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_AUDITORS_DESC', + ConfidentialLegsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialLegsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialLegsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialLegsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialLegsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialLegsByUpdatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialLegsByUpdatedBlockIdDistinctCountMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_ASC', + ConfidentialLegsByUpdatedBlockIdDistinctCountMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_DESC', + ConfidentialLegsByUpdatedBlockIdDistinctCountReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RECEIVER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdDistinctCountReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RECEIVER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdDistinctCountSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SENDER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdDistinctCountSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SENDER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialLegsByUpdatedBlockIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialLegsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMaxAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_ASSET_AUDITORS_ASC', + ConfidentialLegsByUpdatedBlockIdMaxAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_ASSET_AUDITORS_DESC', + ConfidentialLegsByUpdatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialLegsByUpdatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialLegsByUpdatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialLegsByUpdatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialLegsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMaxIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMaxIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMaxMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_MEDIATORS_ASC', + ConfidentialLegsByUpdatedBlockIdMaxMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_MEDIATORS_DESC', + ConfidentialLegsByUpdatedBlockIdMaxReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_RECEIVER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMaxReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_RECEIVER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMaxSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_SENDER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMaxSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_SENDER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMaxTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMaxTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMinAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_ASSET_AUDITORS_ASC', + ConfidentialLegsByUpdatedBlockIdMinAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_ASSET_AUDITORS_DESC', + ConfidentialLegsByUpdatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialLegsByUpdatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialLegsByUpdatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialLegsByUpdatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialLegsByUpdatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMinIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMinIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMinMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_MEDIATORS_ASC', + ConfidentialLegsByUpdatedBlockIdMinMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_MEDIATORS_DESC', + ConfidentialLegsByUpdatedBlockIdMinReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_RECEIVER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMinReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_RECEIVER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMinSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_SENDER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMinSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_SENDER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMinTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMinTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialLegsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_AUDITORS_ASC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_AUDITORS_DESC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_ASC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_DESC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RECEIVER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RECEIVER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SENDER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SENDER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevSampleAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_AUDITORS_ASC', + ConfidentialLegsByUpdatedBlockIdStddevSampleAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_AUDITORS_DESC', + ConfidentialLegsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialLegsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialLegsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialLegsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialLegsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevSampleMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_ASC', + ConfidentialLegsByUpdatedBlockIdStddevSampleMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_DESC', + ConfidentialLegsByUpdatedBlockIdStddevSampleReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RECEIVER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevSampleReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RECEIVER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevSampleSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SENDER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevSampleSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SENDER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialLegsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdSumAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_ASSET_AUDITORS_ASC', + ConfidentialLegsByUpdatedBlockIdSumAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_ASSET_AUDITORS_DESC', + ConfidentialLegsByUpdatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialLegsByUpdatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialLegsByUpdatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialLegsByUpdatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialLegsByUpdatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdSumIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialLegsByUpdatedBlockIdSumIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialLegsByUpdatedBlockIdSumMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_MEDIATORS_ASC', + ConfidentialLegsByUpdatedBlockIdSumMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_MEDIATORS_DESC', + ConfidentialLegsByUpdatedBlockIdSumReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_RECEIVER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdSumReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_RECEIVER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdSumSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_SENDER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdSumSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_SENDER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdSumTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialLegsByUpdatedBlockIdSumTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialLegsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_AUDITORS_ASC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_AUDITORS_DESC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_ASC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_DESC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RECEIVER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RECEIVER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SENDER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SENDER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_AUDITORS_ASC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_AUDITORS_DESC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_ASC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_DESC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RECEIVER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RECEIVER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SENDER_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SENDER_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialTransactionsByCreatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialTransactionsByCreatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialTransactionsByCreatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialTransactionsByCreatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialTransactionsByCreatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialTransactionsByCreatedBlockIdAverageEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdAverageEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdAverageIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdAverageIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdAverageMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_MEMO_ASC', + ConfidentialTransactionsByCreatedBlockIdAverageMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_MEMO_DESC', + ConfidentialTransactionsByCreatedBlockIdAveragePendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByCreatedBlockIdAveragePendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByCreatedBlockIdAverageStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_ASC', + ConfidentialTransactionsByCreatedBlockIdAverageStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_DESC', + ConfidentialTransactionsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdAverageVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_VENUE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdAverageVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_VENUE_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdCountAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_COUNT_ASC', + ConfidentialTransactionsByCreatedBlockIdCountDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_COUNT_DESC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMO_ASC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMO_DESC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdDistinctCountVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialTransactionsByCreatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialTransactionsByCreatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialTransactionsByCreatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialTransactionsByCreatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialTransactionsByCreatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialTransactionsByCreatedBlockIdMaxEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdMaxEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdMaxIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdMaxIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdMaxMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_MEMO_ASC', + ConfidentialTransactionsByCreatedBlockIdMaxMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_MEMO_DESC', + ConfidentialTransactionsByCreatedBlockIdMaxPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByCreatedBlockIdMaxPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByCreatedBlockIdMaxStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_STATUS_ASC', + ConfidentialTransactionsByCreatedBlockIdMaxStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_STATUS_DESC', + ConfidentialTransactionsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdMaxVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_VENUE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdMaxVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_VENUE_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialTransactionsByCreatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialTransactionsByCreatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialTransactionsByCreatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialTransactionsByCreatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialTransactionsByCreatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialTransactionsByCreatedBlockIdMinEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdMinEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdMinIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdMinIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdMinMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_MEMO_ASC', + ConfidentialTransactionsByCreatedBlockIdMinMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_MEMO_DESC', + ConfidentialTransactionsByCreatedBlockIdMinPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByCreatedBlockIdMinPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByCreatedBlockIdMinStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_STATUS_ASC', + ConfidentialTransactionsByCreatedBlockIdMinStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_STATUS_DESC', + ConfidentialTransactionsByCreatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdMinVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_VENUE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdMinVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_VENUE_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMO_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMO_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevPopulationVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevSamplePendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevSamplePendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdStddevSampleVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialTransactionsByCreatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialTransactionsByCreatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialTransactionsByCreatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialTransactionsByCreatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialTransactionsByCreatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialTransactionsByCreatedBlockIdSumEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdSumEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdSumIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdSumIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdSumMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_MEMO_ASC', + ConfidentialTransactionsByCreatedBlockIdSumMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_MEMO_DESC', + ConfidentialTransactionsByCreatedBlockIdSumPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByCreatedBlockIdSumPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByCreatedBlockIdSumStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_STATUS_ASC', + ConfidentialTransactionsByCreatedBlockIdSumStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_STATUS_DESC', + ConfidentialTransactionsByCreatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdSumVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_VENUE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdSumVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_VENUE_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_ASC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_DESC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdVariancePopulationVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_ASC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_DESC', + ConfidentialTransactionsByCreatedBlockIdVarianceSamplePendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByCreatedBlockIdVarianceSamplePendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + ConfidentialTransactionsByCreatedBlockIdVarianceSampleVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialTransactionsByUpdatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialTransactionsByUpdatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialTransactionsByUpdatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialTransactionsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialTransactionsByUpdatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialTransactionsByUpdatedBlockIdAverageEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdAverageEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdAverageIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdAverageIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdAverageMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_MEMO_ASC', + ConfidentialTransactionsByUpdatedBlockIdAverageMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_MEMO_DESC', + ConfidentialTransactionsByUpdatedBlockIdAveragePendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByUpdatedBlockIdAveragePendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByUpdatedBlockIdAverageStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_ASC', + ConfidentialTransactionsByUpdatedBlockIdAverageStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_DESC', + ConfidentialTransactionsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdAverageVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_VENUE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdAverageVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_VENUE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdCountAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ConfidentialTransactionsByUpdatedBlockIdCountDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMO_ASC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMO_DESC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdDistinctCountVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialTransactionsByUpdatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialTransactionsByUpdatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialTransactionsByUpdatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialTransactionsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialTransactionsByUpdatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialTransactionsByUpdatedBlockIdMaxEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdMaxEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdMaxIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdMaxIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdMaxMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_MEMO_ASC', + ConfidentialTransactionsByUpdatedBlockIdMaxMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_MEMO_DESC', + ConfidentialTransactionsByUpdatedBlockIdMaxPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByUpdatedBlockIdMaxPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByUpdatedBlockIdMaxStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_STATUS_ASC', + ConfidentialTransactionsByUpdatedBlockIdMaxStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_STATUS_DESC', + ConfidentialTransactionsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdMaxVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_VENUE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdMaxVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_VENUE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialTransactionsByUpdatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialTransactionsByUpdatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialTransactionsByUpdatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialTransactionsByUpdatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialTransactionsByUpdatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialTransactionsByUpdatedBlockIdMinEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdMinEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdMinIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdMinIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdMinMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_MEMO_ASC', + ConfidentialTransactionsByUpdatedBlockIdMinMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_MEMO_DESC', + ConfidentialTransactionsByUpdatedBlockIdMinPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByUpdatedBlockIdMinPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByUpdatedBlockIdMinStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_STATUS_ASC', + ConfidentialTransactionsByUpdatedBlockIdMinStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_STATUS_DESC', + ConfidentialTransactionsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdMinVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_VENUE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdMinVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_VENUE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMO_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMO_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevPopulationVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevSamplePendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevSamplePendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdStddevSampleVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialTransactionsByUpdatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialTransactionsByUpdatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialTransactionsByUpdatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialTransactionsByUpdatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialTransactionsByUpdatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialTransactionsByUpdatedBlockIdSumEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdSumEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdSumIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdSumIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdSumMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_MEMO_ASC', + ConfidentialTransactionsByUpdatedBlockIdSumMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_MEMO_DESC', + ConfidentialTransactionsByUpdatedBlockIdSumPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByUpdatedBlockIdSumPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByUpdatedBlockIdSumStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_STATUS_ASC', + ConfidentialTransactionsByUpdatedBlockIdSumStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_STATUS_DESC', + ConfidentialTransactionsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdSumVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_VENUE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdSumVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_VENUE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_ASC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_DESC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdVariancePopulationVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_ASC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_DESC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSamplePendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSamplePendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + ConfidentialTransactionsByUpdatedBlockIdVarianceSampleVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAveragePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_PARTY_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAveragePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_PARTY_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_PROOFS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_PROOFS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdCountAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_COUNT_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdCountDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_COUNT_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PARTY_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PARTY_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROOFS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROOFS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_PARTY_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_PARTY_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_PROOFS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_PROOFS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_STATUS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_STATUS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_PARTY_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_PARTY_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_PROOFS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_PROOFS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_STATUS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_STATUS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PARTY_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PARTY_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROOFS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROOFS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSamplePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PARTY_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSamplePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PARTY_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROOFS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROOFS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_PARTY_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_PARTY_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_PROOFS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_PROOFS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_STATUS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_STATUS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PARTY_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PARTY_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROOFS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROOFS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSamplePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PARTY_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSamplePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PARTY_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROOFS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROOFS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAveragePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PARTY_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAveragePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PARTY_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PROOFS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PROOFS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdCountAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdCountDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PARTY_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PARTY_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROOFS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROOFS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_PARTY_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_PARTY_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_PROOFS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_PROOFS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_STATUS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_STATUS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_PARTY_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_PARTY_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_PROOFS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_PROOFS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_STATUS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_STATUS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PARTY_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PARTY_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROOFS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROOFS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSamplePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PARTY_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSamplePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PARTY_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROOFS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROOFS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_PARTY_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_PARTY_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_PROOFS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_PROOFS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_STATUS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_STATUS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PARTY_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PARTY_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROOFS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROOFS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSamplePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PARTY_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSamplePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PARTY_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROOFS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROOFS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialVenuesByCreatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialVenuesByCreatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdAverageCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + ConfidentialVenuesByCreatedBlockIdAverageCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + ConfidentialVenuesByCreatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialVenuesByCreatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialVenuesByCreatedBlockIdAverageIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdAverageIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialVenuesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdAverageVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_VENUE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdAverageVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_AVERAGE_VENUE_ID_DESC', + ConfidentialVenuesByCreatedBlockIdCountAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_COUNT_ASC', + ConfidentialVenuesByCreatedBlockIdCountDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_COUNT_DESC', + ConfidentialVenuesByCreatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialVenuesByCreatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialVenuesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdDistinctCountCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + ConfidentialVenuesByCreatedBlockIdDistinctCountCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + ConfidentialVenuesByCreatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialVenuesByCreatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialVenuesByCreatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialVenuesByCreatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialVenuesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdDistinctCountVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdDistinctCountVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_DESC', + ConfidentialVenuesByCreatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialVenuesByCreatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialVenuesByCreatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdMaxCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + ConfidentialVenuesByCreatedBlockIdMaxCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + ConfidentialVenuesByCreatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialVenuesByCreatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialVenuesByCreatedBlockIdMaxIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialVenuesByCreatedBlockIdMaxIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialVenuesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdMaxVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_VENUE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdMaxVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MAX_VENUE_ID_DESC', + ConfidentialVenuesByCreatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialVenuesByCreatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialVenuesByCreatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdMinCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + ConfidentialVenuesByCreatedBlockIdMinCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + ConfidentialVenuesByCreatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialVenuesByCreatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialVenuesByCreatedBlockIdMinIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialVenuesByCreatedBlockIdMinIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialVenuesByCreatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdMinVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_VENUE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdMinVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_MIN_VENUE_ID_DESC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdStddevPopulationVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_DESC', + ConfidentialVenuesByCreatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialVenuesByCreatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialVenuesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdStddevSampleCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + ConfidentialVenuesByCreatedBlockIdStddevSampleCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + ConfidentialVenuesByCreatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialVenuesByCreatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialVenuesByCreatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialVenuesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdStddevSampleVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdStddevSampleVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + ConfidentialVenuesByCreatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialVenuesByCreatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialVenuesByCreatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdSumCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + ConfidentialVenuesByCreatedBlockIdSumCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + ConfidentialVenuesByCreatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialVenuesByCreatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialVenuesByCreatedBlockIdSumIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialVenuesByCreatedBlockIdSumIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialVenuesByCreatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdSumVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_VENUE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdSumVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_SUM_VENUE_ID_DESC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdVariancePopulationVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + ConfidentialVenuesByCreatedBlockIdVarianceSampleVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdAverageBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialVenuesByUpdatedBlockIdAverageBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialVenuesByUpdatedBlockIdAverageCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialVenuesByUpdatedBlockIdAverageCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialVenuesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdAverageCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdAverageCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdAverageEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialVenuesByUpdatedBlockIdAverageEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialVenuesByUpdatedBlockIdAverageIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdAverageIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdAverageVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_VENUE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdAverageVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_VENUE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdCountAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ConfidentialVenuesByUpdatedBlockIdCountDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdDistinctCountVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdMaxBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialVenuesByUpdatedBlockIdMaxBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialVenuesByUpdatedBlockIdMaxCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ConfidentialVenuesByUpdatedBlockIdMaxCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ConfidentialVenuesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdMaxCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdMaxCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdMaxEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + ConfidentialVenuesByUpdatedBlockIdMaxEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + ConfidentialVenuesByUpdatedBlockIdMaxIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdMaxIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdMaxVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_VENUE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdMaxVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MAX_VENUE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdMinBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialVenuesByUpdatedBlockIdMinBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialVenuesByUpdatedBlockIdMinCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ConfidentialVenuesByUpdatedBlockIdMinCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ConfidentialVenuesByUpdatedBlockIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdMinCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdMinCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdMinEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + ConfidentialVenuesByUpdatedBlockIdMinEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + ConfidentialVenuesByUpdatedBlockIdMinIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdMinIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdMinVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_VENUE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdMinVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_MIN_VENUE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevPopulationVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdStddevSampleVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdSumBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialVenuesByUpdatedBlockIdSumBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialVenuesByUpdatedBlockIdSumCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ConfidentialVenuesByUpdatedBlockIdSumCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ConfidentialVenuesByUpdatedBlockIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdSumCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdSumCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdSumEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + ConfidentialVenuesByUpdatedBlockIdSumEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + ConfidentialVenuesByUpdatedBlockIdSumIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdSumIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdSumVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_VENUE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdSumVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_SUM_VENUE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdVariancePopulationVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + ConfidentialVenuesByUpdatedBlockIdVarianceSampleVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + CountEventsAsc = 'COUNT_EVENTS_ASC', + CountEventsDesc = 'COUNT_EVENTS_DESC', + CountExtrinsicsAsc = 'COUNT_EXTRINSICS_ASC', + CountExtrinsicsDesc = 'COUNT_EXTRINSICS_DESC', + CountExtrinsicsErrorAsc = 'COUNT_EXTRINSICS_ERROR_ASC', + CountExtrinsicsErrorDesc = 'COUNT_EXTRINSICS_ERROR_DESC', + CountExtrinsicsSignedAsc = 'COUNT_EXTRINSICS_SIGNED_ASC', + CountExtrinsicsSignedDesc = 'COUNT_EXTRINSICS_SIGNED_DESC', + CountExtrinsicsSuccessAsc = 'COUNT_EXTRINSICS_SUCCESS_ASC', + CountExtrinsicsSuccessDesc = 'COUNT_EXTRINSICS_SUCCESS_DESC', + CountExtrinsicsUnsignedAsc = 'COUNT_EXTRINSICS_UNSIGNED_ASC', + CountExtrinsicsUnsignedDesc = 'COUNT_EXTRINSICS_UNSIGNED_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CustomClaimTypesByCreatedBlockIdAverageBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + CustomClaimTypesByCreatedBlockIdAverageBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + CustomClaimTypesByCreatedBlockIdAverageCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + CustomClaimTypesByCreatedBlockIdAverageCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + CustomClaimTypesByCreatedBlockIdAverageCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdAverageCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdAverageIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + CustomClaimTypesByCreatedBlockIdAverageIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + CustomClaimTypesByCreatedBlockIdAverageIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + CustomClaimTypesByCreatedBlockIdAverageIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + CustomClaimTypesByCreatedBlockIdAverageNameAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_NAME_ASC', + CustomClaimTypesByCreatedBlockIdAverageNameDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_NAME_DESC', + CustomClaimTypesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdCountAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_COUNT_ASC', + CustomClaimTypesByCreatedBlockIdCountDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_COUNT_DESC', + CustomClaimTypesByCreatedBlockIdDistinctCountBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + CustomClaimTypesByCreatedBlockIdDistinctCountBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + CustomClaimTypesByCreatedBlockIdDistinctCountCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + CustomClaimTypesByCreatedBlockIdDistinctCountCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + CustomClaimTypesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdDistinctCountIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + CustomClaimTypesByCreatedBlockIdDistinctCountIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + CustomClaimTypesByCreatedBlockIdDistinctCountIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + CustomClaimTypesByCreatedBlockIdDistinctCountIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + CustomClaimTypesByCreatedBlockIdDistinctCountNameAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC', + CustomClaimTypesByCreatedBlockIdDistinctCountNameDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC', + CustomClaimTypesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdMaxBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + CustomClaimTypesByCreatedBlockIdMaxBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + CustomClaimTypesByCreatedBlockIdMaxCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + CustomClaimTypesByCreatedBlockIdMaxCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + CustomClaimTypesByCreatedBlockIdMaxCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdMaxCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdMaxIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + CustomClaimTypesByCreatedBlockIdMaxIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + CustomClaimTypesByCreatedBlockIdMaxIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + CustomClaimTypesByCreatedBlockIdMaxIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + CustomClaimTypesByCreatedBlockIdMaxNameAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_NAME_ASC', + CustomClaimTypesByCreatedBlockIdMaxNameDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_NAME_DESC', + CustomClaimTypesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdMinBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + CustomClaimTypesByCreatedBlockIdMinBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + CustomClaimTypesByCreatedBlockIdMinCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + CustomClaimTypesByCreatedBlockIdMinCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + CustomClaimTypesByCreatedBlockIdMinCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdMinCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdMinIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + CustomClaimTypesByCreatedBlockIdMinIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + CustomClaimTypesByCreatedBlockIdMinIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + CustomClaimTypesByCreatedBlockIdMinIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + CustomClaimTypesByCreatedBlockIdMinNameAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_NAME_ASC', + CustomClaimTypesByCreatedBlockIdMinNameDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_NAME_DESC', + CustomClaimTypesByCreatedBlockIdMinUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdMinUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + CustomClaimTypesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + CustomClaimTypesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + CustomClaimTypesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + CustomClaimTypesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdStddevPopulationIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + CustomClaimTypesByCreatedBlockIdStddevPopulationIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + CustomClaimTypesByCreatedBlockIdStddevPopulationIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + CustomClaimTypesByCreatedBlockIdStddevPopulationIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + CustomClaimTypesByCreatedBlockIdStddevPopulationNameAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC', + CustomClaimTypesByCreatedBlockIdStddevPopulationNameDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC', + CustomClaimTypesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdStddevSampleBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + CustomClaimTypesByCreatedBlockIdStddevSampleBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + CustomClaimTypesByCreatedBlockIdStddevSampleCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + CustomClaimTypesByCreatedBlockIdStddevSampleCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + CustomClaimTypesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdStddevSampleIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + CustomClaimTypesByCreatedBlockIdStddevSampleIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + CustomClaimTypesByCreatedBlockIdStddevSampleIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + CustomClaimTypesByCreatedBlockIdStddevSampleIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + CustomClaimTypesByCreatedBlockIdStddevSampleNameAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC', + CustomClaimTypesByCreatedBlockIdStddevSampleNameDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC', + CustomClaimTypesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdSumBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + CustomClaimTypesByCreatedBlockIdSumBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + CustomClaimTypesByCreatedBlockIdSumCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + CustomClaimTypesByCreatedBlockIdSumCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + CustomClaimTypesByCreatedBlockIdSumCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdSumCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdSumIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + CustomClaimTypesByCreatedBlockIdSumIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + CustomClaimTypesByCreatedBlockIdSumIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + CustomClaimTypesByCreatedBlockIdSumIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + CustomClaimTypesByCreatedBlockIdSumNameAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_NAME_ASC', + CustomClaimTypesByCreatedBlockIdSumNameDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_NAME_DESC', + CustomClaimTypesByCreatedBlockIdSumUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdSumUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + CustomClaimTypesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + CustomClaimTypesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + CustomClaimTypesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + CustomClaimTypesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdVariancePopulationIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + CustomClaimTypesByCreatedBlockIdVariancePopulationIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + CustomClaimTypesByCreatedBlockIdVariancePopulationIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + CustomClaimTypesByCreatedBlockIdVariancePopulationIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + CustomClaimTypesByCreatedBlockIdVariancePopulationNameAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC', + CustomClaimTypesByCreatedBlockIdVariancePopulationNameDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC', + CustomClaimTypesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + CustomClaimTypesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + CustomClaimTypesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + CustomClaimTypesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + CustomClaimTypesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByCreatedBlockIdVarianceSampleIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + CustomClaimTypesByCreatedBlockIdVarianceSampleIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + CustomClaimTypesByCreatedBlockIdVarianceSampleIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + CustomClaimTypesByCreatedBlockIdVarianceSampleIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + CustomClaimTypesByCreatedBlockIdVarianceSampleNameAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC', + CustomClaimTypesByCreatedBlockIdVarianceSampleNameDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC', + CustomClaimTypesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdAverageBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + CustomClaimTypesByUpdatedBlockIdAverageBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + CustomClaimTypesByUpdatedBlockIdAverageCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + CustomClaimTypesByUpdatedBlockIdAverageCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + CustomClaimTypesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdAverageIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + CustomClaimTypesByUpdatedBlockIdAverageIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + CustomClaimTypesByUpdatedBlockIdAverageIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + CustomClaimTypesByUpdatedBlockIdAverageIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + CustomClaimTypesByUpdatedBlockIdAverageNameAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_ASC', + CustomClaimTypesByUpdatedBlockIdAverageNameDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_DESC', + CustomClaimTypesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdCountAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + CustomClaimTypesByUpdatedBlockIdCountDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + CustomClaimTypesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + CustomClaimTypesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + CustomClaimTypesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + CustomClaimTypesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + CustomClaimTypesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdDistinctCountIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + CustomClaimTypesByUpdatedBlockIdDistinctCountIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + CustomClaimTypesByUpdatedBlockIdDistinctCountIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + CustomClaimTypesByUpdatedBlockIdDistinctCountIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + CustomClaimTypesByUpdatedBlockIdDistinctCountNameAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC', + CustomClaimTypesByUpdatedBlockIdDistinctCountNameDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC', + CustomClaimTypesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdMaxBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + CustomClaimTypesByUpdatedBlockIdMaxBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + CustomClaimTypesByUpdatedBlockIdMaxCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + CustomClaimTypesByUpdatedBlockIdMaxCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + CustomClaimTypesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdMaxIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + CustomClaimTypesByUpdatedBlockIdMaxIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + CustomClaimTypesByUpdatedBlockIdMaxIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + CustomClaimTypesByUpdatedBlockIdMaxIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + CustomClaimTypesByUpdatedBlockIdMaxNameAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_NAME_ASC', + CustomClaimTypesByUpdatedBlockIdMaxNameDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_NAME_DESC', + CustomClaimTypesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdMinBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + CustomClaimTypesByUpdatedBlockIdMinBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + CustomClaimTypesByUpdatedBlockIdMinCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + CustomClaimTypesByUpdatedBlockIdMinCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + CustomClaimTypesByUpdatedBlockIdMinCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdMinCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdMinIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + CustomClaimTypesByUpdatedBlockIdMinIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + CustomClaimTypesByUpdatedBlockIdMinIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + CustomClaimTypesByUpdatedBlockIdMinIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + CustomClaimTypesByUpdatedBlockIdMinNameAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_NAME_ASC', + CustomClaimTypesByUpdatedBlockIdMinNameDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_NAME_DESC', + CustomClaimTypesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationNameAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationNameDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + CustomClaimTypesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + CustomClaimTypesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + CustomClaimTypesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + CustomClaimTypesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdStddevSampleIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + CustomClaimTypesByUpdatedBlockIdStddevSampleIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + CustomClaimTypesByUpdatedBlockIdStddevSampleIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + CustomClaimTypesByUpdatedBlockIdStddevSampleIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + CustomClaimTypesByUpdatedBlockIdStddevSampleNameAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC', + CustomClaimTypesByUpdatedBlockIdStddevSampleNameDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC', + CustomClaimTypesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdSumBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + CustomClaimTypesByUpdatedBlockIdSumBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + CustomClaimTypesByUpdatedBlockIdSumCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + CustomClaimTypesByUpdatedBlockIdSumCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + CustomClaimTypesByUpdatedBlockIdSumCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdSumCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdSumIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + CustomClaimTypesByUpdatedBlockIdSumIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + CustomClaimTypesByUpdatedBlockIdSumIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + CustomClaimTypesByUpdatedBlockIdSumIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + CustomClaimTypesByUpdatedBlockIdSumNameAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_NAME_ASC', + CustomClaimTypesByUpdatedBlockIdSumNameDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_NAME_DESC', + CustomClaimTypesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationNameAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationNameDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleNameAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleNameDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + DistributionsByCreatedBlockIdAverageAmountAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + DistributionsByCreatedBlockIdAverageAmountDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + DistributionsByCreatedBlockIdAverageAssetIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + DistributionsByCreatedBlockIdAverageAssetIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + DistributionsByCreatedBlockIdAverageBlockRangeAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + DistributionsByCreatedBlockIdAverageBlockRangeDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + DistributionsByCreatedBlockIdAverageCreatedAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + DistributionsByCreatedBlockIdAverageCreatedAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + DistributionsByCreatedBlockIdAverageCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdAverageCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdAverageCurrencyAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CURRENCY_ASC', + DistributionsByCreatedBlockIdAverageCurrencyDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CURRENCY_DESC', + DistributionsByCreatedBlockIdAverageExpiresAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXPIRES_AT_ASC', + DistributionsByCreatedBlockIdAverageExpiresAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXPIRES_AT_DESC', + DistributionsByCreatedBlockIdAverageIdentityIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + DistributionsByCreatedBlockIdAverageIdentityIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + DistributionsByCreatedBlockIdAverageIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + DistributionsByCreatedBlockIdAverageIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + DistributionsByCreatedBlockIdAverageLocalIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_LOCAL_ID_ASC', + DistributionsByCreatedBlockIdAverageLocalIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_LOCAL_ID_DESC', + DistributionsByCreatedBlockIdAveragePaymentAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_PAYMENT_AT_ASC', + DistributionsByCreatedBlockIdAveragePaymentAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_PAYMENT_AT_DESC', + DistributionsByCreatedBlockIdAveragePerShareAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_PER_SHARE_ASC', + DistributionsByCreatedBlockIdAveragePerShareDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_PER_SHARE_DESC', + DistributionsByCreatedBlockIdAveragePortfolioIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_PORTFOLIO_ID_ASC', + DistributionsByCreatedBlockIdAveragePortfolioIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_PORTFOLIO_ID_DESC', + DistributionsByCreatedBlockIdAverageRemainingAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_REMAINING_ASC', + DistributionsByCreatedBlockIdAverageRemainingDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_REMAINING_DESC', + DistributionsByCreatedBlockIdAverageTaxesAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TAXES_ASC', + DistributionsByCreatedBlockIdAverageTaxesDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TAXES_DESC', + DistributionsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdCountAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_COUNT_ASC', + DistributionsByCreatedBlockIdCountDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_COUNT_DESC', + DistributionsByCreatedBlockIdDistinctCountAmountAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + DistributionsByCreatedBlockIdDistinctCountAmountDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + DistributionsByCreatedBlockIdDistinctCountAssetIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + DistributionsByCreatedBlockIdDistinctCountAssetIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + DistributionsByCreatedBlockIdDistinctCountBlockRangeAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + DistributionsByCreatedBlockIdDistinctCountBlockRangeDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + DistributionsByCreatedBlockIdDistinctCountCreatedAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + DistributionsByCreatedBlockIdDistinctCountCreatedAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + DistributionsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdDistinctCountCurrencyAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CURRENCY_ASC', + DistributionsByCreatedBlockIdDistinctCountCurrencyDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CURRENCY_DESC', + DistributionsByCreatedBlockIdDistinctCountExpiresAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXPIRES_AT_ASC', + DistributionsByCreatedBlockIdDistinctCountExpiresAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXPIRES_AT_DESC', + DistributionsByCreatedBlockIdDistinctCountIdentityIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + DistributionsByCreatedBlockIdDistinctCountIdentityIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + DistributionsByCreatedBlockIdDistinctCountIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + DistributionsByCreatedBlockIdDistinctCountIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + DistributionsByCreatedBlockIdDistinctCountLocalIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LOCAL_ID_ASC', + DistributionsByCreatedBlockIdDistinctCountLocalIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LOCAL_ID_DESC', + DistributionsByCreatedBlockIdDistinctCountPaymentAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PAYMENT_AT_ASC', + DistributionsByCreatedBlockIdDistinctCountPaymentAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PAYMENT_AT_DESC', + DistributionsByCreatedBlockIdDistinctCountPerShareAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PER_SHARE_ASC', + DistributionsByCreatedBlockIdDistinctCountPerShareDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PER_SHARE_DESC', + DistributionsByCreatedBlockIdDistinctCountPortfolioIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIO_ID_ASC', + DistributionsByCreatedBlockIdDistinctCountPortfolioIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIO_ID_DESC', + DistributionsByCreatedBlockIdDistinctCountRemainingAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_REMAINING_ASC', + DistributionsByCreatedBlockIdDistinctCountRemainingDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_REMAINING_DESC', + DistributionsByCreatedBlockIdDistinctCountTaxesAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TAXES_ASC', + DistributionsByCreatedBlockIdDistinctCountTaxesDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TAXES_DESC', + DistributionsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdMaxAmountAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + DistributionsByCreatedBlockIdMaxAmountDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + DistributionsByCreatedBlockIdMaxAssetIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + DistributionsByCreatedBlockIdMaxAssetIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + DistributionsByCreatedBlockIdMaxBlockRangeAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + DistributionsByCreatedBlockIdMaxBlockRangeDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + DistributionsByCreatedBlockIdMaxCreatedAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + DistributionsByCreatedBlockIdMaxCreatedAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + DistributionsByCreatedBlockIdMaxCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdMaxCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdMaxCurrencyAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_CURRENCY_ASC', + DistributionsByCreatedBlockIdMaxCurrencyDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_CURRENCY_DESC', + DistributionsByCreatedBlockIdMaxExpiresAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_EXPIRES_AT_ASC', + DistributionsByCreatedBlockIdMaxExpiresAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_EXPIRES_AT_DESC', + DistributionsByCreatedBlockIdMaxIdentityIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + DistributionsByCreatedBlockIdMaxIdentityIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + DistributionsByCreatedBlockIdMaxIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + DistributionsByCreatedBlockIdMaxIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + DistributionsByCreatedBlockIdMaxLocalIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_LOCAL_ID_ASC', + DistributionsByCreatedBlockIdMaxLocalIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_LOCAL_ID_DESC', + DistributionsByCreatedBlockIdMaxPaymentAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_PAYMENT_AT_ASC', + DistributionsByCreatedBlockIdMaxPaymentAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_PAYMENT_AT_DESC', + DistributionsByCreatedBlockIdMaxPerShareAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_PER_SHARE_ASC', + DistributionsByCreatedBlockIdMaxPerShareDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_PER_SHARE_DESC', + DistributionsByCreatedBlockIdMaxPortfolioIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_PORTFOLIO_ID_ASC', + DistributionsByCreatedBlockIdMaxPortfolioIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_PORTFOLIO_ID_DESC', + DistributionsByCreatedBlockIdMaxRemainingAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_REMAINING_ASC', + DistributionsByCreatedBlockIdMaxRemainingDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_REMAINING_DESC', + DistributionsByCreatedBlockIdMaxTaxesAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_TAXES_ASC', + DistributionsByCreatedBlockIdMaxTaxesDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_TAXES_DESC', + DistributionsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdMinAmountAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + DistributionsByCreatedBlockIdMinAmountDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + DistributionsByCreatedBlockIdMinAssetIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + DistributionsByCreatedBlockIdMinAssetIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + DistributionsByCreatedBlockIdMinBlockRangeAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + DistributionsByCreatedBlockIdMinBlockRangeDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + DistributionsByCreatedBlockIdMinCreatedAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + DistributionsByCreatedBlockIdMinCreatedAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + DistributionsByCreatedBlockIdMinCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdMinCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdMinCurrencyAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_CURRENCY_ASC', + DistributionsByCreatedBlockIdMinCurrencyDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_CURRENCY_DESC', + DistributionsByCreatedBlockIdMinExpiresAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_EXPIRES_AT_ASC', + DistributionsByCreatedBlockIdMinExpiresAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_EXPIRES_AT_DESC', + DistributionsByCreatedBlockIdMinIdentityIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + DistributionsByCreatedBlockIdMinIdentityIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + DistributionsByCreatedBlockIdMinIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + DistributionsByCreatedBlockIdMinIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + DistributionsByCreatedBlockIdMinLocalIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_LOCAL_ID_ASC', + DistributionsByCreatedBlockIdMinLocalIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_LOCAL_ID_DESC', + DistributionsByCreatedBlockIdMinPaymentAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_PAYMENT_AT_ASC', + DistributionsByCreatedBlockIdMinPaymentAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_PAYMENT_AT_DESC', + DistributionsByCreatedBlockIdMinPerShareAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_PER_SHARE_ASC', + DistributionsByCreatedBlockIdMinPerShareDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_PER_SHARE_DESC', + DistributionsByCreatedBlockIdMinPortfolioIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_PORTFOLIO_ID_ASC', + DistributionsByCreatedBlockIdMinPortfolioIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_PORTFOLIO_ID_DESC', + DistributionsByCreatedBlockIdMinRemainingAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_REMAINING_ASC', + DistributionsByCreatedBlockIdMinRemainingDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_REMAINING_DESC', + DistributionsByCreatedBlockIdMinTaxesAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_TAXES_ASC', + DistributionsByCreatedBlockIdMinTaxesDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_TAXES_DESC', + DistributionsByCreatedBlockIdMinUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdMinUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdStddevPopulationAmountAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + DistributionsByCreatedBlockIdStddevPopulationAmountDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + DistributionsByCreatedBlockIdStddevPopulationAssetIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + DistributionsByCreatedBlockIdStddevPopulationAssetIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + DistributionsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + DistributionsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + DistributionsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + DistributionsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + DistributionsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdStddevPopulationCurrencyAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CURRENCY_ASC', + DistributionsByCreatedBlockIdStddevPopulationCurrencyDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CURRENCY_DESC', + DistributionsByCreatedBlockIdStddevPopulationExpiresAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXPIRES_AT_ASC', + DistributionsByCreatedBlockIdStddevPopulationExpiresAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXPIRES_AT_DESC', + DistributionsByCreatedBlockIdStddevPopulationIdentityIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + DistributionsByCreatedBlockIdStddevPopulationIdentityIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + DistributionsByCreatedBlockIdStddevPopulationIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + DistributionsByCreatedBlockIdStddevPopulationIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + DistributionsByCreatedBlockIdStddevPopulationLocalIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LOCAL_ID_ASC', + DistributionsByCreatedBlockIdStddevPopulationLocalIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LOCAL_ID_DESC', + DistributionsByCreatedBlockIdStddevPopulationPaymentAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PAYMENT_AT_ASC', + DistributionsByCreatedBlockIdStddevPopulationPaymentAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PAYMENT_AT_DESC', + DistributionsByCreatedBlockIdStddevPopulationPerShareAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PER_SHARE_ASC', + DistributionsByCreatedBlockIdStddevPopulationPerShareDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PER_SHARE_DESC', + DistributionsByCreatedBlockIdStddevPopulationPortfolioIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIO_ID_ASC', + DistributionsByCreatedBlockIdStddevPopulationPortfolioIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIO_ID_DESC', + DistributionsByCreatedBlockIdStddevPopulationRemainingAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_REMAINING_ASC', + DistributionsByCreatedBlockIdStddevPopulationRemainingDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_REMAINING_DESC', + DistributionsByCreatedBlockIdStddevPopulationTaxesAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TAXES_ASC', + DistributionsByCreatedBlockIdStddevPopulationTaxesDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TAXES_DESC', + DistributionsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdStddevSampleAmountAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + DistributionsByCreatedBlockIdStddevSampleAmountDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + DistributionsByCreatedBlockIdStddevSampleAssetIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + DistributionsByCreatedBlockIdStddevSampleAssetIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + DistributionsByCreatedBlockIdStddevSampleBlockRangeAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + DistributionsByCreatedBlockIdStddevSampleBlockRangeDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + DistributionsByCreatedBlockIdStddevSampleCreatedAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + DistributionsByCreatedBlockIdStddevSampleCreatedAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + DistributionsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdStddevSampleCurrencyAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CURRENCY_ASC', + DistributionsByCreatedBlockIdStddevSampleCurrencyDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CURRENCY_DESC', + DistributionsByCreatedBlockIdStddevSampleExpiresAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRES_AT_ASC', + DistributionsByCreatedBlockIdStddevSampleExpiresAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRES_AT_DESC', + DistributionsByCreatedBlockIdStddevSampleIdentityIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + DistributionsByCreatedBlockIdStddevSampleIdentityIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + DistributionsByCreatedBlockIdStddevSampleIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + DistributionsByCreatedBlockIdStddevSampleIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + DistributionsByCreatedBlockIdStddevSampleLocalIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LOCAL_ID_ASC', + DistributionsByCreatedBlockIdStddevSampleLocalIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LOCAL_ID_DESC', + DistributionsByCreatedBlockIdStddevSamplePaymentAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PAYMENT_AT_ASC', + DistributionsByCreatedBlockIdStddevSamplePaymentAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PAYMENT_AT_DESC', + DistributionsByCreatedBlockIdStddevSamplePerShareAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PER_SHARE_ASC', + DistributionsByCreatedBlockIdStddevSamplePerShareDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PER_SHARE_DESC', + DistributionsByCreatedBlockIdStddevSamplePortfolioIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIO_ID_ASC', + DistributionsByCreatedBlockIdStddevSamplePortfolioIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIO_ID_DESC', + DistributionsByCreatedBlockIdStddevSampleRemainingAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_REMAINING_ASC', + DistributionsByCreatedBlockIdStddevSampleRemainingDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_REMAINING_DESC', + DistributionsByCreatedBlockIdStddevSampleTaxesAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TAXES_ASC', + DistributionsByCreatedBlockIdStddevSampleTaxesDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TAXES_DESC', + DistributionsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdSumAmountAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + DistributionsByCreatedBlockIdSumAmountDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + DistributionsByCreatedBlockIdSumAssetIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + DistributionsByCreatedBlockIdSumAssetIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + DistributionsByCreatedBlockIdSumBlockRangeAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + DistributionsByCreatedBlockIdSumBlockRangeDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + DistributionsByCreatedBlockIdSumCreatedAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + DistributionsByCreatedBlockIdSumCreatedAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + DistributionsByCreatedBlockIdSumCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdSumCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdSumCurrencyAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_CURRENCY_ASC', + DistributionsByCreatedBlockIdSumCurrencyDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_CURRENCY_DESC', + DistributionsByCreatedBlockIdSumExpiresAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_EXPIRES_AT_ASC', + DistributionsByCreatedBlockIdSumExpiresAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_EXPIRES_AT_DESC', + DistributionsByCreatedBlockIdSumIdentityIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + DistributionsByCreatedBlockIdSumIdentityIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + DistributionsByCreatedBlockIdSumIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + DistributionsByCreatedBlockIdSumIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + DistributionsByCreatedBlockIdSumLocalIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_LOCAL_ID_ASC', + DistributionsByCreatedBlockIdSumLocalIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_LOCAL_ID_DESC', + DistributionsByCreatedBlockIdSumPaymentAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_PAYMENT_AT_ASC', + DistributionsByCreatedBlockIdSumPaymentAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_PAYMENT_AT_DESC', + DistributionsByCreatedBlockIdSumPerShareAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_PER_SHARE_ASC', + DistributionsByCreatedBlockIdSumPerShareDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_PER_SHARE_DESC', + DistributionsByCreatedBlockIdSumPortfolioIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_PORTFOLIO_ID_ASC', + DistributionsByCreatedBlockIdSumPortfolioIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_PORTFOLIO_ID_DESC', + DistributionsByCreatedBlockIdSumRemainingAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_REMAINING_ASC', + DistributionsByCreatedBlockIdSumRemainingDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_REMAINING_DESC', + DistributionsByCreatedBlockIdSumTaxesAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_TAXES_ASC', + DistributionsByCreatedBlockIdSumTaxesDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_TAXES_DESC', + DistributionsByCreatedBlockIdSumUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdSumUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdVariancePopulationAmountAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + DistributionsByCreatedBlockIdVariancePopulationAmountDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + DistributionsByCreatedBlockIdVariancePopulationAssetIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + DistributionsByCreatedBlockIdVariancePopulationAssetIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + DistributionsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + DistributionsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + DistributionsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + DistributionsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + DistributionsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdVariancePopulationCurrencyAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CURRENCY_ASC', + DistributionsByCreatedBlockIdVariancePopulationCurrencyDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CURRENCY_DESC', + DistributionsByCreatedBlockIdVariancePopulationExpiresAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRES_AT_ASC', + DistributionsByCreatedBlockIdVariancePopulationExpiresAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRES_AT_DESC', + DistributionsByCreatedBlockIdVariancePopulationIdentityIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + DistributionsByCreatedBlockIdVariancePopulationIdentityIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + DistributionsByCreatedBlockIdVariancePopulationIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + DistributionsByCreatedBlockIdVariancePopulationIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + DistributionsByCreatedBlockIdVariancePopulationLocalIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LOCAL_ID_ASC', + DistributionsByCreatedBlockIdVariancePopulationLocalIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LOCAL_ID_DESC', + DistributionsByCreatedBlockIdVariancePopulationPaymentAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PAYMENT_AT_ASC', + DistributionsByCreatedBlockIdVariancePopulationPaymentAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PAYMENT_AT_DESC', + DistributionsByCreatedBlockIdVariancePopulationPerShareAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PER_SHARE_ASC', + DistributionsByCreatedBlockIdVariancePopulationPerShareDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PER_SHARE_DESC', + DistributionsByCreatedBlockIdVariancePopulationPortfolioIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIO_ID_ASC', + DistributionsByCreatedBlockIdVariancePopulationPortfolioIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIO_ID_DESC', + DistributionsByCreatedBlockIdVariancePopulationRemainingAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_REMAINING_ASC', + DistributionsByCreatedBlockIdVariancePopulationRemainingDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_REMAINING_DESC', + DistributionsByCreatedBlockIdVariancePopulationTaxesAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TAXES_ASC', + DistributionsByCreatedBlockIdVariancePopulationTaxesDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TAXES_DESC', + DistributionsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdVarianceSampleAmountAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + DistributionsByCreatedBlockIdVarianceSampleAmountDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + DistributionsByCreatedBlockIdVarianceSampleAssetIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + DistributionsByCreatedBlockIdVarianceSampleAssetIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + DistributionsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + DistributionsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + DistributionsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + DistributionsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + DistributionsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionsByCreatedBlockIdVarianceSampleCurrencyAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CURRENCY_ASC', + DistributionsByCreatedBlockIdVarianceSampleCurrencyDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CURRENCY_DESC', + DistributionsByCreatedBlockIdVarianceSampleExpiresAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRES_AT_ASC', + DistributionsByCreatedBlockIdVarianceSampleExpiresAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRES_AT_DESC', + DistributionsByCreatedBlockIdVarianceSampleIdentityIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + DistributionsByCreatedBlockIdVarianceSampleIdentityIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + DistributionsByCreatedBlockIdVarianceSampleIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + DistributionsByCreatedBlockIdVarianceSampleIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + DistributionsByCreatedBlockIdVarianceSampleLocalIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LOCAL_ID_ASC', + DistributionsByCreatedBlockIdVarianceSampleLocalIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LOCAL_ID_DESC', + DistributionsByCreatedBlockIdVarianceSamplePaymentAtAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PAYMENT_AT_ASC', + DistributionsByCreatedBlockIdVarianceSamplePaymentAtDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PAYMENT_AT_DESC', + DistributionsByCreatedBlockIdVarianceSamplePerShareAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PER_SHARE_ASC', + DistributionsByCreatedBlockIdVarianceSamplePerShareDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PER_SHARE_DESC', + DistributionsByCreatedBlockIdVarianceSamplePortfolioIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIO_ID_ASC', + DistributionsByCreatedBlockIdVarianceSamplePortfolioIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIO_ID_DESC', + DistributionsByCreatedBlockIdVarianceSampleRemainingAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_REMAINING_ASC', + DistributionsByCreatedBlockIdVarianceSampleRemainingDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_REMAINING_DESC', + DistributionsByCreatedBlockIdVarianceSampleTaxesAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TAXES_ASC', + DistributionsByCreatedBlockIdVarianceSampleTaxesDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TAXES_DESC', + DistributionsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdAverageAmountAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + DistributionsByUpdatedBlockIdAverageAmountDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + DistributionsByUpdatedBlockIdAverageAssetIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + DistributionsByUpdatedBlockIdAverageAssetIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + DistributionsByUpdatedBlockIdAverageBlockRangeAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + DistributionsByUpdatedBlockIdAverageBlockRangeDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + DistributionsByUpdatedBlockIdAverageCreatedAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + DistributionsByUpdatedBlockIdAverageCreatedAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + DistributionsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdAverageCurrencyAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CURRENCY_ASC', + DistributionsByUpdatedBlockIdAverageCurrencyDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CURRENCY_DESC', + DistributionsByUpdatedBlockIdAverageExpiresAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXPIRES_AT_ASC', + DistributionsByUpdatedBlockIdAverageExpiresAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXPIRES_AT_DESC', + DistributionsByUpdatedBlockIdAverageIdentityIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + DistributionsByUpdatedBlockIdAverageIdentityIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + DistributionsByUpdatedBlockIdAverageIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + DistributionsByUpdatedBlockIdAverageIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + DistributionsByUpdatedBlockIdAverageLocalIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_LOCAL_ID_ASC', + DistributionsByUpdatedBlockIdAverageLocalIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_LOCAL_ID_DESC', + DistributionsByUpdatedBlockIdAveragePaymentAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PAYMENT_AT_ASC', + DistributionsByUpdatedBlockIdAveragePaymentAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PAYMENT_AT_DESC', + DistributionsByUpdatedBlockIdAveragePerShareAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PER_SHARE_ASC', + DistributionsByUpdatedBlockIdAveragePerShareDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PER_SHARE_DESC', + DistributionsByUpdatedBlockIdAveragePortfolioIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PORTFOLIO_ID_ASC', + DistributionsByUpdatedBlockIdAveragePortfolioIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PORTFOLIO_ID_DESC', + DistributionsByUpdatedBlockIdAverageRemainingAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_REMAINING_ASC', + DistributionsByUpdatedBlockIdAverageRemainingDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_REMAINING_DESC', + DistributionsByUpdatedBlockIdAverageTaxesAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TAXES_ASC', + DistributionsByUpdatedBlockIdAverageTaxesDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TAXES_DESC', + DistributionsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdCountAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + DistributionsByUpdatedBlockIdCountDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + DistributionsByUpdatedBlockIdDistinctCountAmountAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + DistributionsByUpdatedBlockIdDistinctCountAmountDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + DistributionsByUpdatedBlockIdDistinctCountAssetIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + DistributionsByUpdatedBlockIdDistinctCountAssetIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + DistributionsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + DistributionsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + DistributionsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + DistributionsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + DistributionsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdDistinctCountCurrencyAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CURRENCY_ASC', + DistributionsByUpdatedBlockIdDistinctCountCurrencyDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CURRENCY_DESC', + DistributionsByUpdatedBlockIdDistinctCountExpiresAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXPIRES_AT_ASC', + DistributionsByUpdatedBlockIdDistinctCountExpiresAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXPIRES_AT_DESC', + DistributionsByUpdatedBlockIdDistinctCountIdentityIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + DistributionsByUpdatedBlockIdDistinctCountIdentityIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + DistributionsByUpdatedBlockIdDistinctCountIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + DistributionsByUpdatedBlockIdDistinctCountIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + DistributionsByUpdatedBlockIdDistinctCountLocalIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LOCAL_ID_ASC', + DistributionsByUpdatedBlockIdDistinctCountLocalIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LOCAL_ID_DESC', + DistributionsByUpdatedBlockIdDistinctCountPaymentAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PAYMENT_AT_ASC', + DistributionsByUpdatedBlockIdDistinctCountPaymentAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PAYMENT_AT_DESC', + DistributionsByUpdatedBlockIdDistinctCountPerShareAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PER_SHARE_ASC', + DistributionsByUpdatedBlockIdDistinctCountPerShareDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PER_SHARE_DESC', + DistributionsByUpdatedBlockIdDistinctCountPortfolioIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIO_ID_ASC', + DistributionsByUpdatedBlockIdDistinctCountPortfolioIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIO_ID_DESC', + DistributionsByUpdatedBlockIdDistinctCountRemainingAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_REMAINING_ASC', + DistributionsByUpdatedBlockIdDistinctCountRemainingDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_REMAINING_DESC', + DistributionsByUpdatedBlockIdDistinctCountTaxesAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TAXES_ASC', + DistributionsByUpdatedBlockIdDistinctCountTaxesDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TAXES_DESC', + DistributionsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdMaxAmountAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + DistributionsByUpdatedBlockIdMaxAmountDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + DistributionsByUpdatedBlockIdMaxAssetIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + DistributionsByUpdatedBlockIdMaxAssetIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + DistributionsByUpdatedBlockIdMaxBlockRangeAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + DistributionsByUpdatedBlockIdMaxBlockRangeDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + DistributionsByUpdatedBlockIdMaxCreatedAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + DistributionsByUpdatedBlockIdMaxCreatedAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + DistributionsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdMaxCurrencyAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_CURRENCY_ASC', + DistributionsByUpdatedBlockIdMaxCurrencyDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_CURRENCY_DESC', + DistributionsByUpdatedBlockIdMaxExpiresAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_EXPIRES_AT_ASC', + DistributionsByUpdatedBlockIdMaxExpiresAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_EXPIRES_AT_DESC', + DistributionsByUpdatedBlockIdMaxIdentityIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + DistributionsByUpdatedBlockIdMaxIdentityIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + DistributionsByUpdatedBlockIdMaxIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + DistributionsByUpdatedBlockIdMaxIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + DistributionsByUpdatedBlockIdMaxLocalIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_LOCAL_ID_ASC', + DistributionsByUpdatedBlockIdMaxLocalIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_LOCAL_ID_DESC', + DistributionsByUpdatedBlockIdMaxPaymentAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_PAYMENT_AT_ASC', + DistributionsByUpdatedBlockIdMaxPaymentAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_PAYMENT_AT_DESC', + DistributionsByUpdatedBlockIdMaxPerShareAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_PER_SHARE_ASC', + DistributionsByUpdatedBlockIdMaxPerShareDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_PER_SHARE_DESC', + DistributionsByUpdatedBlockIdMaxPortfolioIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_PORTFOLIO_ID_ASC', + DistributionsByUpdatedBlockIdMaxPortfolioIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_PORTFOLIO_ID_DESC', + DistributionsByUpdatedBlockIdMaxRemainingAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_REMAINING_ASC', + DistributionsByUpdatedBlockIdMaxRemainingDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_REMAINING_DESC', + DistributionsByUpdatedBlockIdMaxTaxesAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_TAXES_ASC', + DistributionsByUpdatedBlockIdMaxTaxesDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_TAXES_DESC', + DistributionsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdMinAmountAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + DistributionsByUpdatedBlockIdMinAmountDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + DistributionsByUpdatedBlockIdMinAssetIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + DistributionsByUpdatedBlockIdMinAssetIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + DistributionsByUpdatedBlockIdMinBlockRangeAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + DistributionsByUpdatedBlockIdMinBlockRangeDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + DistributionsByUpdatedBlockIdMinCreatedAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + DistributionsByUpdatedBlockIdMinCreatedAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + DistributionsByUpdatedBlockIdMinCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdMinCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdMinCurrencyAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_CURRENCY_ASC', + DistributionsByUpdatedBlockIdMinCurrencyDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_CURRENCY_DESC', + DistributionsByUpdatedBlockIdMinExpiresAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_EXPIRES_AT_ASC', + DistributionsByUpdatedBlockIdMinExpiresAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_EXPIRES_AT_DESC', + DistributionsByUpdatedBlockIdMinIdentityIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + DistributionsByUpdatedBlockIdMinIdentityIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + DistributionsByUpdatedBlockIdMinIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + DistributionsByUpdatedBlockIdMinIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + DistributionsByUpdatedBlockIdMinLocalIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_LOCAL_ID_ASC', + DistributionsByUpdatedBlockIdMinLocalIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_LOCAL_ID_DESC', + DistributionsByUpdatedBlockIdMinPaymentAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_PAYMENT_AT_ASC', + DistributionsByUpdatedBlockIdMinPaymentAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_PAYMENT_AT_DESC', + DistributionsByUpdatedBlockIdMinPerShareAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_PER_SHARE_ASC', + DistributionsByUpdatedBlockIdMinPerShareDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_PER_SHARE_DESC', + DistributionsByUpdatedBlockIdMinPortfolioIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_PORTFOLIO_ID_ASC', + DistributionsByUpdatedBlockIdMinPortfolioIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_PORTFOLIO_ID_DESC', + DistributionsByUpdatedBlockIdMinRemainingAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_REMAINING_ASC', + DistributionsByUpdatedBlockIdMinRemainingDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_REMAINING_DESC', + DistributionsByUpdatedBlockIdMinTaxesAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_TAXES_ASC', + DistributionsByUpdatedBlockIdMinTaxesDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_TAXES_DESC', + DistributionsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdStddevPopulationAmountAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + DistributionsByUpdatedBlockIdStddevPopulationAmountDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + DistributionsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + DistributionsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + DistributionsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + DistributionsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + DistributionsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + DistributionsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + DistributionsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdStddevPopulationCurrencyAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CURRENCY_ASC', + DistributionsByUpdatedBlockIdStddevPopulationCurrencyDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CURRENCY_DESC', + DistributionsByUpdatedBlockIdStddevPopulationExpiresAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXPIRES_AT_ASC', + DistributionsByUpdatedBlockIdStddevPopulationExpiresAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXPIRES_AT_DESC', + DistributionsByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + DistributionsByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + DistributionsByUpdatedBlockIdStddevPopulationIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + DistributionsByUpdatedBlockIdStddevPopulationIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + DistributionsByUpdatedBlockIdStddevPopulationLocalIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LOCAL_ID_ASC', + DistributionsByUpdatedBlockIdStddevPopulationLocalIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LOCAL_ID_DESC', + DistributionsByUpdatedBlockIdStddevPopulationPaymentAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PAYMENT_AT_ASC', + DistributionsByUpdatedBlockIdStddevPopulationPaymentAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PAYMENT_AT_DESC', + DistributionsByUpdatedBlockIdStddevPopulationPerShareAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PER_SHARE_ASC', + DistributionsByUpdatedBlockIdStddevPopulationPerShareDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PER_SHARE_DESC', + DistributionsByUpdatedBlockIdStddevPopulationPortfolioIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIO_ID_ASC', + DistributionsByUpdatedBlockIdStddevPopulationPortfolioIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIO_ID_DESC', + DistributionsByUpdatedBlockIdStddevPopulationRemainingAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_REMAINING_ASC', + DistributionsByUpdatedBlockIdStddevPopulationRemainingDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_REMAINING_DESC', + DistributionsByUpdatedBlockIdStddevPopulationTaxesAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TAXES_ASC', + DistributionsByUpdatedBlockIdStddevPopulationTaxesDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TAXES_DESC', + DistributionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdStddevSampleAmountAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + DistributionsByUpdatedBlockIdStddevSampleAmountDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + DistributionsByUpdatedBlockIdStddevSampleAssetIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + DistributionsByUpdatedBlockIdStddevSampleAssetIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + DistributionsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + DistributionsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + DistributionsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + DistributionsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + DistributionsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdStddevSampleCurrencyAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CURRENCY_ASC', + DistributionsByUpdatedBlockIdStddevSampleCurrencyDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CURRENCY_DESC', + DistributionsByUpdatedBlockIdStddevSampleExpiresAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRES_AT_ASC', + DistributionsByUpdatedBlockIdStddevSampleExpiresAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRES_AT_DESC', + DistributionsByUpdatedBlockIdStddevSampleIdentityIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + DistributionsByUpdatedBlockIdStddevSampleIdentityIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + DistributionsByUpdatedBlockIdStddevSampleIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + DistributionsByUpdatedBlockIdStddevSampleIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + DistributionsByUpdatedBlockIdStddevSampleLocalIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LOCAL_ID_ASC', + DistributionsByUpdatedBlockIdStddevSampleLocalIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LOCAL_ID_DESC', + DistributionsByUpdatedBlockIdStddevSamplePaymentAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PAYMENT_AT_ASC', + DistributionsByUpdatedBlockIdStddevSamplePaymentAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PAYMENT_AT_DESC', + DistributionsByUpdatedBlockIdStddevSamplePerShareAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PER_SHARE_ASC', + DistributionsByUpdatedBlockIdStddevSamplePerShareDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PER_SHARE_DESC', + DistributionsByUpdatedBlockIdStddevSamplePortfolioIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIO_ID_ASC', + DistributionsByUpdatedBlockIdStddevSamplePortfolioIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIO_ID_DESC', + DistributionsByUpdatedBlockIdStddevSampleRemainingAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_REMAINING_ASC', + DistributionsByUpdatedBlockIdStddevSampleRemainingDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_REMAINING_DESC', + DistributionsByUpdatedBlockIdStddevSampleTaxesAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TAXES_ASC', + DistributionsByUpdatedBlockIdStddevSampleTaxesDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TAXES_DESC', + DistributionsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdSumAmountAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + DistributionsByUpdatedBlockIdSumAmountDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + DistributionsByUpdatedBlockIdSumAssetIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + DistributionsByUpdatedBlockIdSumAssetIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + DistributionsByUpdatedBlockIdSumBlockRangeAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + DistributionsByUpdatedBlockIdSumBlockRangeDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + DistributionsByUpdatedBlockIdSumCreatedAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + DistributionsByUpdatedBlockIdSumCreatedAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + DistributionsByUpdatedBlockIdSumCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdSumCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdSumCurrencyAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_CURRENCY_ASC', + DistributionsByUpdatedBlockIdSumCurrencyDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_CURRENCY_DESC', + DistributionsByUpdatedBlockIdSumExpiresAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_EXPIRES_AT_ASC', + DistributionsByUpdatedBlockIdSumExpiresAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_EXPIRES_AT_DESC', + DistributionsByUpdatedBlockIdSumIdentityIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + DistributionsByUpdatedBlockIdSumIdentityIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + DistributionsByUpdatedBlockIdSumIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + DistributionsByUpdatedBlockIdSumIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + DistributionsByUpdatedBlockIdSumLocalIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_LOCAL_ID_ASC', + DistributionsByUpdatedBlockIdSumLocalIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_LOCAL_ID_DESC', + DistributionsByUpdatedBlockIdSumPaymentAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_PAYMENT_AT_ASC', + DistributionsByUpdatedBlockIdSumPaymentAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_PAYMENT_AT_DESC', + DistributionsByUpdatedBlockIdSumPerShareAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_PER_SHARE_ASC', + DistributionsByUpdatedBlockIdSumPerShareDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_PER_SHARE_DESC', + DistributionsByUpdatedBlockIdSumPortfolioIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_PORTFOLIO_ID_ASC', + DistributionsByUpdatedBlockIdSumPortfolioIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_PORTFOLIO_ID_DESC', + DistributionsByUpdatedBlockIdSumRemainingAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_REMAINING_ASC', + DistributionsByUpdatedBlockIdSumRemainingDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_REMAINING_DESC', + DistributionsByUpdatedBlockIdSumTaxesAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_TAXES_ASC', + DistributionsByUpdatedBlockIdSumTaxesDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_TAXES_DESC', + DistributionsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdVariancePopulationAmountAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + DistributionsByUpdatedBlockIdVariancePopulationAmountDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + DistributionsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + DistributionsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + DistributionsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + DistributionsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + DistributionsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + DistributionsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + DistributionsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdVariancePopulationCurrencyAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CURRENCY_ASC', + DistributionsByUpdatedBlockIdVariancePopulationCurrencyDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CURRENCY_DESC', + DistributionsByUpdatedBlockIdVariancePopulationExpiresAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRES_AT_ASC', + DistributionsByUpdatedBlockIdVariancePopulationExpiresAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRES_AT_DESC', + DistributionsByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + DistributionsByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + DistributionsByUpdatedBlockIdVariancePopulationIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + DistributionsByUpdatedBlockIdVariancePopulationIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + DistributionsByUpdatedBlockIdVariancePopulationLocalIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LOCAL_ID_ASC', + DistributionsByUpdatedBlockIdVariancePopulationLocalIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LOCAL_ID_DESC', + DistributionsByUpdatedBlockIdVariancePopulationPaymentAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PAYMENT_AT_ASC', + DistributionsByUpdatedBlockIdVariancePopulationPaymentAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PAYMENT_AT_DESC', + DistributionsByUpdatedBlockIdVariancePopulationPerShareAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PER_SHARE_ASC', + DistributionsByUpdatedBlockIdVariancePopulationPerShareDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PER_SHARE_DESC', + DistributionsByUpdatedBlockIdVariancePopulationPortfolioIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIO_ID_ASC', + DistributionsByUpdatedBlockIdVariancePopulationPortfolioIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIO_ID_DESC', + DistributionsByUpdatedBlockIdVariancePopulationRemainingAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_REMAINING_ASC', + DistributionsByUpdatedBlockIdVariancePopulationRemainingDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_REMAINING_DESC', + DistributionsByUpdatedBlockIdVariancePopulationTaxesAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TAXES_ASC', + DistributionsByUpdatedBlockIdVariancePopulationTaxesDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TAXES_DESC', + DistributionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdVarianceSampleAmountAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + DistributionsByUpdatedBlockIdVarianceSampleAmountDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + DistributionsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + DistributionsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + DistributionsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + DistributionsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + DistributionsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + DistributionsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + DistributionsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionsByUpdatedBlockIdVarianceSampleCurrencyAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CURRENCY_ASC', + DistributionsByUpdatedBlockIdVarianceSampleCurrencyDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CURRENCY_DESC', + DistributionsByUpdatedBlockIdVarianceSampleExpiresAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRES_AT_ASC', + DistributionsByUpdatedBlockIdVarianceSampleExpiresAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRES_AT_DESC', + DistributionsByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + DistributionsByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + DistributionsByUpdatedBlockIdVarianceSampleIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + DistributionsByUpdatedBlockIdVarianceSampleIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + DistributionsByUpdatedBlockIdVarianceSampleLocalIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LOCAL_ID_ASC', + DistributionsByUpdatedBlockIdVarianceSampleLocalIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LOCAL_ID_DESC', + DistributionsByUpdatedBlockIdVarianceSamplePaymentAtAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PAYMENT_AT_ASC', + DistributionsByUpdatedBlockIdVarianceSamplePaymentAtDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PAYMENT_AT_DESC', + DistributionsByUpdatedBlockIdVarianceSamplePerShareAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PER_SHARE_ASC', + DistributionsByUpdatedBlockIdVarianceSamplePerShareDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PER_SHARE_DESC', + DistributionsByUpdatedBlockIdVarianceSamplePortfolioIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIO_ID_ASC', + DistributionsByUpdatedBlockIdVarianceSamplePortfolioIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIO_ID_DESC', + DistributionsByUpdatedBlockIdVarianceSampleRemainingAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_REMAINING_ASC', + DistributionsByUpdatedBlockIdVarianceSampleRemainingDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_REMAINING_DESC', + DistributionsByUpdatedBlockIdVarianceSampleTaxesAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TAXES_ASC', + DistributionsByUpdatedBlockIdVarianceSampleTaxesDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TAXES_DESC', + DistributionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'DISTRIBUTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdAverageAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByCreatedBlockIdAverageAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByCreatedBlockIdAverageAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + DistributionPaymentsByCreatedBlockIdAverageAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + DistributionPaymentsByCreatedBlockIdAverageBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + DistributionPaymentsByCreatedBlockIdAverageBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + DistributionPaymentsByCreatedBlockIdAverageCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + DistributionPaymentsByCreatedBlockIdAverageCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + DistributionPaymentsByCreatedBlockIdAverageCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdAverageCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdAverageDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + DistributionPaymentsByCreatedBlockIdAverageDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + DistributionPaymentsByCreatedBlockIdAverageDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_DISTRIBUTION_ID_ASC', + DistributionPaymentsByCreatedBlockIdAverageDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_DISTRIBUTION_ID_DESC', + DistributionPaymentsByCreatedBlockIdAverageEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + DistributionPaymentsByCreatedBlockIdAverageEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + DistributionPaymentsByCreatedBlockIdAverageIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + DistributionPaymentsByCreatedBlockIdAverageIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + DistributionPaymentsByCreatedBlockIdAverageReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_RECLAIMED_ASC', + DistributionPaymentsByCreatedBlockIdAverageReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_RECLAIMED_DESC', + DistributionPaymentsByCreatedBlockIdAverageTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TARGET_ID_ASC', + DistributionPaymentsByCreatedBlockIdAverageTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TARGET_ID_DESC', + DistributionPaymentsByCreatedBlockIdAverageTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TAX_ASC', + DistributionPaymentsByCreatedBlockIdAverageTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TAX_DESC', + DistributionPaymentsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdCountAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + DistributionPaymentsByCreatedBlockIdCountDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DISTRIBUTION_ID_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DISTRIBUTION_ID_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RECLAIMED_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RECLAIMED_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TARGET_ID_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TARGET_ID_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TAX_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TAX_DESC', + DistributionPaymentsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdMaxAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByCreatedBlockIdMaxAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByCreatedBlockIdMaxAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + DistributionPaymentsByCreatedBlockIdMaxAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + DistributionPaymentsByCreatedBlockIdMaxBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + DistributionPaymentsByCreatedBlockIdMaxBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + DistributionPaymentsByCreatedBlockIdMaxCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + DistributionPaymentsByCreatedBlockIdMaxCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + DistributionPaymentsByCreatedBlockIdMaxCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdMaxCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdMaxDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + DistributionPaymentsByCreatedBlockIdMaxDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + DistributionPaymentsByCreatedBlockIdMaxDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_DISTRIBUTION_ID_ASC', + DistributionPaymentsByCreatedBlockIdMaxDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_DISTRIBUTION_ID_DESC', + DistributionPaymentsByCreatedBlockIdMaxEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_ASC', + DistributionPaymentsByCreatedBlockIdMaxEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_DESC', + DistributionPaymentsByCreatedBlockIdMaxIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + DistributionPaymentsByCreatedBlockIdMaxIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + DistributionPaymentsByCreatedBlockIdMaxReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_RECLAIMED_ASC', + DistributionPaymentsByCreatedBlockIdMaxReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_RECLAIMED_DESC', + DistributionPaymentsByCreatedBlockIdMaxTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_TARGET_ID_ASC', + DistributionPaymentsByCreatedBlockIdMaxTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_TARGET_ID_DESC', + DistributionPaymentsByCreatedBlockIdMaxTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_TAX_ASC', + DistributionPaymentsByCreatedBlockIdMaxTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_TAX_DESC', + DistributionPaymentsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdMinAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByCreatedBlockIdMinAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByCreatedBlockIdMinAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + DistributionPaymentsByCreatedBlockIdMinAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + DistributionPaymentsByCreatedBlockIdMinBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + DistributionPaymentsByCreatedBlockIdMinBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + DistributionPaymentsByCreatedBlockIdMinCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + DistributionPaymentsByCreatedBlockIdMinCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + DistributionPaymentsByCreatedBlockIdMinCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdMinCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdMinDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + DistributionPaymentsByCreatedBlockIdMinDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + DistributionPaymentsByCreatedBlockIdMinDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_DISTRIBUTION_ID_ASC', + DistributionPaymentsByCreatedBlockIdMinDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_DISTRIBUTION_ID_DESC', + DistributionPaymentsByCreatedBlockIdMinEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_ASC', + DistributionPaymentsByCreatedBlockIdMinEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_DESC', + DistributionPaymentsByCreatedBlockIdMinIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + DistributionPaymentsByCreatedBlockIdMinIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + DistributionPaymentsByCreatedBlockIdMinReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_RECLAIMED_ASC', + DistributionPaymentsByCreatedBlockIdMinReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_RECLAIMED_DESC', + DistributionPaymentsByCreatedBlockIdMinTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_TARGET_ID_ASC', + DistributionPaymentsByCreatedBlockIdMinTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_TARGET_ID_DESC', + DistributionPaymentsByCreatedBlockIdMinTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_TAX_ASC', + DistributionPaymentsByCreatedBlockIdMinTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_TAX_DESC', + DistributionPaymentsByCreatedBlockIdMinUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdMinUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DISTRIBUTION_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DISTRIBUTION_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RECLAIMED_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RECLAIMED_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TARGET_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TARGET_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TAX_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TAX_DESC', + DistributionPaymentsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DISTRIBUTION_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DISTRIBUTION_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RECLAIMED_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RECLAIMED_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_ID_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TAX_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TAX_DESC', + DistributionPaymentsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdSumAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByCreatedBlockIdSumAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByCreatedBlockIdSumAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + DistributionPaymentsByCreatedBlockIdSumAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + DistributionPaymentsByCreatedBlockIdSumBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + DistributionPaymentsByCreatedBlockIdSumBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + DistributionPaymentsByCreatedBlockIdSumCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + DistributionPaymentsByCreatedBlockIdSumCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + DistributionPaymentsByCreatedBlockIdSumCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdSumCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdSumDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + DistributionPaymentsByCreatedBlockIdSumDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + DistributionPaymentsByCreatedBlockIdSumDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_DISTRIBUTION_ID_ASC', + DistributionPaymentsByCreatedBlockIdSumDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_DISTRIBUTION_ID_DESC', + DistributionPaymentsByCreatedBlockIdSumEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_ASC', + DistributionPaymentsByCreatedBlockIdSumEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_DESC', + DistributionPaymentsByCreatedBlockIdSumIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + DistributionPaymentsByCreatedBlockIdSumIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + DistributionPaymentsByCreatedBlockIdSumReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_RECLAIMED_ASC', + DistributionPaymentsByCreatedBlockIdSumReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_RECLAIMED_DESC', + DistributionPaymentsByCreatedBlockIdSumTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_TARGET_ID_ASC', + DistributionPaymentsByCreatedBlockIdSumTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_TARGET_ID_DESC', + DistributionPaymentsByCreatedBlockIdSumTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_TAX_ASC', + DistributionPaymentsByCreatedBlockIdSumTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_TAX_DESC', + DistributionPaymentsByCreatedBlockIdSumUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdSumUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DISTRIBUTION_ID_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DISTRIBUTION_ID_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RECLAIMED_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RECLAIMED_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_ID_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_ID_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TAX_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TAX_DESC', + DistributionPaymentsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DISTRIBUTION_ID_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DISTRIBUTION_ID_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RECLAIMED_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RECLAIMED_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_ID_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_ID_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TAX_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TAX_DESC', + DistributionPaymentsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdAverageAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdAverageAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdAverageAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + DistributionPaymentsByUpdatedBlockIdAverageAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + DistributionPaymentsByUpdatedBlockIdAverageBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + DistributionPaymentsByUpdatedBlockIdAverageBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + DistributionPaymentsByUpdatedBlockIdAverageCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + DistributionPaymentsByUpdatedBlockIdAverageCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + DistributionPaymentsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdAverageDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + DistributionPaymentsByUpdatedBlockIdAverageDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + DistributionPaymentsByUpdatedBlockIdAverageDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DISTRIBUTION_ID_ASC', + DistributionPaymentsByUpdatedBlockIdAverageDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DISTRIBUTION_ID_DESC', + DistributionPaymentsByUpdatedBlockIdAverageEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + DistributionPaymentsByUpdatedBlockIdAverageEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + DistributionPaymentsByUpdatedBlockIdAverageIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + DistributionPaymentsByUpdatedBlockIdAverageIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + DistributionPaymentsByUpdatedBlockIdAverageReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_RECLAIMED_ASC', + DistributionPaymentsByUpdatedBlockIdAverageReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_RECLAIMED_DESC', + DistributionPaymentsByUpdatedBlockIdAverageTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TARGET_ID_ASC', + DistributionPaymentsByUpdatedBlockIdAverageTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TARGET_ID_DESC', + DistributionPaymentsByUpdatedBlockIdAverageTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdAverageTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdCountAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + DistributionPaymentsByUpdatedBlockIdCountDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DISTRIBUTION_ID_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DISTRIBUTION_ID_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RECLAIMED_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RECLAIMED_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TARGET_ID_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TARGET_ID_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMaxAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdMaxAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdMaxAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + DistributionPaymentsByUpdatedBlockIdMaxAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + DistributionPaymentsByUpdatedBlockIdMaxBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + DistributionPaymentsByUpdatedBlockIdMaxBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + DistributionPaymentsByUpdatedBlockIdMaxCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + DistributionPaymentsByUpdatedBlockIdMaxCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + DistributionPaymentsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMaxDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + DistributionPaymentsByUpdatedBlockIdMaxDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + DistributionPaymentsByUpdatedBlockIdMaxDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_DISTRIBUTION_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMaxDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_DISTRIBUTION_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMaxEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMaxEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMaxIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMaxIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMaxReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_RECLAIMED_ASC', + DistributionPaymentsByUpdatedBlockIdMaxReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_RECLAIMED_DESC', + DistributionPaymentsByUpdatedBlockIdMaxTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_TARGET_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMaxTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_TARGET_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMaxTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdMaxTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMinAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdMinAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdMinAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + DistributionPaymentsByUpdatedBlockIdMinAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + DistributionPaymentsByUpdatedBlockIdMinBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + DistributionPaymentsByUpdatedBlockIdMinBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + DistributionPaymentsByUpdatedBlockIdMinCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + DistributionPaymentsByUpdatedBlockIdMinCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + DistributionPaymentsByUpdatedBlockIdMinCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMinCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMinDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + DistributionPaymentsByUpdatedBlockIdMinDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + DistributionPaymentsByUpdatedBlockIdMinDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_DISTRIBUTION_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMinDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_DISTRIBUTION_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMinEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMinEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMinIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMinIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMinReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_RECLAIMED_ASC', + DistributionPaymentsByUpdatedBlockIdMinReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_RECLAIMED_DESC', + DistributionPaymentsByUpdatedBlockIdMinTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_TARGET_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMinTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_TARGET_ID_DESC', + DistributionPaymentsByUpdatedBlockIdMinTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdMinTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DISTRIBUTION_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DISTRIBUTION_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RECLAIMED_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RECLAIMED_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TARGET_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TARGET_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DISTRIBUTION_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DISTRIBUTION_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RECLAIMED_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RECLAIMED_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TARGET_ID_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdSumAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdSumAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdSumAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + DistributionPaymentsByUpdatedBlockIdSumAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + DistributionPaymentsByUpdatedBlockIdSumBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + DistributionPaymentsByUpdatedBlockIdSumBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + DistributionPaymentsByUpdatedBlockIdSumCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + DistributionPaymentsByUpdatedBlockIdSumCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + DistributionPaymentsByUpdatedBlockIdSumCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdSumCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdSumDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + DistributionPaymentsByUpdatedBlockIdSumDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + DistributionPaymentsByUpdatedBlockIdSumDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_DISTRIBUTION_ID_ASC', + DistributionPaymentsByUpdatedBlockIdSumDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_DISTRIBUTION_ID_DESC', + DistributionPaymentsByUpdatedBlockIdSumEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_ASC', + DistributionPaymentsByUpdatedBlockIdSumEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_DESC', + DistributionPaymentsByUpdatedBlockIdSumIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + DistributionPaymentsByUpdatedBlockIdSumIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + DistributionPaymentsByUpdatedBlockIdSumReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_RECLAIMED_ASC', + DistributionPaymentsByUpdatedBlockIdSumReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_RECLAIMED_DESC', + DistributionPaymentsByUpdatedBlockIdSumTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_TARGET_ID_ASC', + DistributionPaymentsByUpdatedBlockIdSumTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_TARGET_ID_DESC', + DistributionPaymentsByUpdatedBlockIdSumTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdSumTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DISTRIBUTION_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DISTRIBUTION_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RECLAIMED_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RECLAIMED_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TARGET_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DISTRIBUTION_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DISTRIBUTION_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RECLAIMED_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RECLAIMED_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TARGET_ID_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TAX_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TAX_DESC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + EventsAverageAttributesAsc = 'EVENTS_AVERAGE_ATTRIBUTES_ASC', + EventsAverageAttributesDesc = 'EVENTS_AVERAGE_ATTRIBUTES_DESC', + EventsAverageAttributesTxtAsc = 'EVENTS_AVERAGE_ATTRIBUTES_TXT_ASC', + EventsAverageAttributesTxtDesc = 'EVENTS_AVERAGE_ATTRIBUTES_TXT_DESC', + EventsAverageBlockIdAsc = 'EVENTS_AVERAGE_BLOCK_ID_ASC', + EventsAverageBlockIdDesc = 'EVENTS_AVERAGE_BLOCK_ID_DESC', + EventsAverageBlockRangeAsc = 'EVENTS_AVERAGE_BLOCK_RANGE_ASC', + EventsAverageBlockRangeDesc = 'EVENTS_AVERAGE_BLOCK_RANGE_DESC', + EventsAverageClaimExpiryAsc = 'EVENTS_AVERAGE_CLAIM_EXPIRY_ASC', + EventsAverageClaimExpiryDesc = 'EVENTS_AVERAGE_CLAIM_EXPIRY_DESC', + EventsAverageClaimIssuerAsc = 'EVENTS_AVERAGE_CLAIM_ISSUER_ASC', + EventsAverageClaimIssuerDesc = 'EVENTS_AVERAGE_CLAIM_ISSUER_DESC', + EventsAverageClaimScopeAsc = 'EVENTS_AVERAGE_CLAIM_SCOPE_ASC', + EventsAverageClaimScopeDesc = 'EVENTS_AVERAGE_CLAIM_SCOPE_DESC', + EventsAverageClaimTypeAsc = 'EVENTS_AVERAGE_CLAIM_TYPE_ASC', + EventsAverageClaimTypeDesc = 'EVENTS_AVERAGE_CLAIM_TYPE_DESC', + EventsAverageCorporateActionTickerAsc = 'EVENTS_AVERAGE_CORPORATE_ACTION_TICKER_ASC', + EventsAverageCorporateActionTickerDesc = 'EVENTS_AVERAGE_CORPORATE_ACTION_TICKER_DESC', + EventsAverageCreatedAtAsc = 'EVENTS_AVERAGE_CREATED_AT_ASC', + EventsAverageCreatedAtDesc = 'EVENTS_AVERAGE_CREATED_AT_DESC', + EventsAverageEventArg_0Asc = 'EVENTS_AVERAGE_EVENT_ARG_0_ASC', + EventsAverageEventArg_0Desc = 'EVENTS_AVERAGE_EVENT_ARG_0_DESC', + EventsAverageEventArg_1Asc = 'EVENTS_AVERAGE_EVENT_ARG_1_ASC', + EventsAverageEventArg_1Desc = 'EVENTS_AVERAGE_EVENT_ARG_1_DESC', + EventsAverageEventArg_2Asc = 'EVENTS_AVERAGE_EVENT_ARG_2_ASC', + EventsAverageEventArg_2Desc = 'EVENTS_AVERAGE_EVENT_ARG_2_DESC', + EventsAverageEventArg_3Asc = 'EVENTS_AVERAGE_EVENT_ARG_3_ASC', + EventsAverageEventArg_3Desc = 'EVENTS_AVERAGE_EVENT_ARG_3_DESC', + EventsAverageEventIdxAsc = 'EVENTS_AVERAGE_EVENT_IDX_ASC', + EventsAverageEventIdxDesc = 'EVENTS_AVERAGE_EVENT_IDX_DESC', + EventsAverageEventIdAsc = 'EVENTS_AVERAGE_EVENT_ID_ASC', + EventsAverageEventIdDesc = 'EVENTS_AVERAGE_EVENT_ID_DESC', + EventsAverageExtrinsicIdxAsc = 'EVENTS_AVERAGE_EXTRINSIC_IDX_ASC', + EventsAverageExtrinsicIdxDesc = 'EVENTS_AVERAGE_EXTRINSIC_IDX_DESC', + EventsAverageExtrinsicIdAsc = 'EVENTS_AVERAGE_EXTRINSIC_ID_ASC', + EventsAverageExtrinsicIdDesc = 'EVENTS_AVERAGE_EXTRINSIC_ID_DESC', + EventsAverageFundraiserOfferingAssetAsc = 'EVENTS_AVERAGE_FUNDRAISER_OFFERING_ASSET_ASC', + EventsAverageFundraiserOfferingAssetDesc = 'EVENTS_AVERAGE_FUNDRAISER_OFFERING_ASSET_DESC', + EventsAverageIdAsc = 'EVENTS_AVERAGE_ID_ASC', + EventsAverageIdDesc = 'EVENTS_AVERAGE_ID_DESC', + EventsAverageModuleIdAsc = 'EVENTS_AVERAGE_MODULE_ID_ASC', + EventsAverageModuleIdDesc = 'EVENTS_AVERAGE_MODULE_ID_DESC', + EventsAverageSpecVersionIdAsc = 'EVENTS_AVERAGE_SPEC_VERSION_ID_ASC', + EventsAverageSpecVersionIdDesc = 'EVENTS_AVERAGE_SPEC_VERSION_ID_DESC', + EventsAverageTransferToAsc = 'EVENTS_AVERAGE_TRANSFER_TO_ASC', + EventsAverageTransferToDesc = 'EVENTS_AVERAGE_TRANSFER_TO_DESC', + EventsCountAsc = 'EVENTS_COUNT_ASC', + EventsCountDesc = 'EVENTS_COUNT_DESC', + EventsDistinctCountAttributesAsc = 'EVENTS_DISTINCT_COUNT_ATTRIBUTES_ASC', + EventsDistinctCountAttributesDesc = 'EVENTS_DISTINCT_COUNT_ATTRIBUTES_DESC', + EventsDistinctCountAttributesTxtAsc = 'EVENTS_DISTINCT_COUNT_ATTRIBUTES_TXT_ASC', + EventsDistinctCountAttributesTxtDesc = 'EVENTS_DISTINCT_COUNT_ATTRIBUTES_TXT_DESC', + EventsDistinctCountBlockIdAsc = 'EVENTS_DISTINCT_COUNT_BLOCK_ID_ASC', + EventsDistinctCountBlockIdDesc = 'EVENTS_DISTINCT_COUNT_BLOCK_ID_DESC', + EventsDistinctCountBlockRangeAsc = 'EVENTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + EventsDistinctCountBlockRangeDesc = 'EVENTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + EventsDistinctCountClaimExpiryAsc = 'EVENTS_DISTINCT_COUNT_CLAIM_EXPIRY_ASC', + EventsDistinctCountClaimExpiryDesc = 'EVENTS_DISTINCT_COUNT_CLAIM_EXPIRY_DESC', + EventsDistinctCountClaimIssuerAsc = 'EVENTS_DISTINCT_COUNT_CLAIM_ISSUER_ASC', + EventsDistinctCountClaimIssuerDesc = 'EVENTS_DISTINCT_COUNT_CLAIM_ISSUER_DESC', + EventsDistinctCountClaimScopeAsc = 'EVENTS_DISTINCT_COUNT_CLAIM_SCOPE_ASC', + EventsDistinctCountClaimScopeDesc = 'EVENTS_DISTINCT_COUNT_CLAIM_SCOPE_DESC', + EventsDistinctCountClaimTypeAsc = 'EVENTS_DISTINCT_COUNT_CLAIM_TYPE_ASC', + EventsDistinctCountClaimTypeDesc = 'EVENTS_DISTINCT_COUNT_CLAIM_TYPE_DESC', + EventsDistinctCountCorporateActionTickerAsc = 'EVENTS_DISTINCT_COUNT_CORPORATE_ACTION_TICKER_ASC', + EventsDistinctCountCorporateActionTickerDesc = 'EVENTS_DISTINCT_COUNT_CORPORATE_ACTION_TICKER_DESC', + EventsDistinctCountCreatedAtAsc = 'EVENTS_DISTINCT_COUNT_CREATED_AT_ASC', + EventsDistinctCountCreatedAtDesc = 'EVENTS_DISTINCT_COUNT_CREATED_AT_DESC', + EventsDistinctCountEventArg_0Asc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_0_ASC', + EventsDistinctCountEventArg_0Desc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_0_DESC', + EventsDistinctCountEventArg_1Asc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_1_ASC', + EventsDistinctCountEventArg_1Desc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_1_DESC', + EventsDistinctCountEventArg_2Asc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_2_ASC', + EventsDistinctCountEventArg_2Desc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_2_DESC', + EventsDistinctCountEventArg_3Asc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_3_ASC', + EventsDistinctCountEventArg_3Desc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_3_DESC', + EventsDistinctCountEventIdxAsc = 'EVENTS_DISTINCT_COUNT_EVENT_IDX_ASC', + EventsDistinctCountEventIdxDesc = 'EVENTS_DISTINCT_COUNT_EVENT_IDX_DESC', + EventsDistinctCountEventIdAsc = 'EVENTS_DISTINCT_COUNT_EVENT_ID_ASC', + EventsDistinctCountEventIdDesc = 'EVENTS_DISTINCT_COUNT_EVENT_ID_DESC', + EventsDistinctCountExtrinsicIdxAsc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + EventsDistinctCountExtrinsicIdxDesc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + EventsDistinctCountExtrinsicIdAsc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_ASC', + EventsDistinctCountExtrinsicIdDesc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_DESC', + EventsDistinctCountFundraiserOfferingAssetAsc = 'EVENTS_DISTINCT_COUNT_FUNDRAISER_OFFERING_ASSET_ASC', + EventsDistinctCountFundraiserOfferingAssetDesc = 'EVENTS_DISTINCT_COUNT_FUNDRAISER_OFFERING_ASSET_DESC', + EventsDistinctCountIdAsc = 'EVENTS_DISTINCT_COUNT_ID_ASC', + EventsDistinctCountIdDesc = 'EVENTS_DISTINCT_COUNT_ID_DESC', + EventsDistinctCountModuleIdAsc = 'EVENTS_DISTINCT_COUNT_MODULE_ID_ASC', + EventsDistinctCountModuleIdDesc = 'EVENTS_DISTINCT_COUNT_MODULE_ID_DESC', + EventsDistinctCountSpecVersionIdAsc = 'EVENTS_DISTINCT_COUNT_SPEC_VERSION_ID_ASC', + EventsDistinctCountSpecVersionIdDesc = 'EVENTS_DISTINCT_COUNT_SPEC_VERSION_ID_DESC', + EventsDistinctCountTransferToAsc = 'EVENTS_DISTINCT_COUNT_TRANSFER_TO_ASC', + EventsDistinctCountTransferToDesc = 'EVENTS_DISTINCT_COUNT_TRANSFER_TO_DESC', + EventsMaxAttributesAsc = 'EVENTS_MAX_ATTRIBUTES_ASC', + EventsMaxAttributesDesc = 'EVENTS_MAX_ATTRIBUTES_DESC', + EventsMaxAttributesTxtAsc = 'EVENTS_MAX_ATTRIBUTES_TXT_ASC', + EventsMaxAttributesTxtDesc = 'EVENTS_MAX_ATTRIBUTES_TXT_DESC', + EventsMaxBlockIdAsc = 'EVENTS_MAX_BLOCK_ID_ASC', + EventsMaxBlockIdDesc = 'EVENTS_MAX_BLOCK_ID_DESC', + EventsMaxBlockRangeAsc = 'EVENTS_MAX_BLOCK_RANGE_ASC', + EventsMaxBlockRangeDesc = 'EVENTS_MAX_BLOCK_RANGE_DESC', + EventsMaxClaimExpiryAsc = 'EVENTS_MAX_CLAIM_EXPIRY_ASC', + EventsMaxClaimExpiryDesc = 'EVENTS_MAX_CLAIM_EXPIRY_DESC', + EventsMaxClaimIssuerAsc = 'EVENTS_MAX_CLAIM_ISSUER_ASC', + EventsMaxClaimIssuerDesc = 'EVENTS_MAX_CLAIM_ISSUER_DESC', + EventsMaxClaimScopeAsc = 'EVENTS_MAX_CLAIM_SCOPE_ASC', + EventsMaxClaimScopeDesc = 'EVENTS_MAX_CLAIM_SCOPE_DESC', + EventsMaxClaimTypeAsc = 'EVENTS_MAX_CLAIM_TYPE_ASC', + EventsMaxClaimTypeDesc = 'EVENTS_MAX_CLAIM_TYPE_DESC', + EventsMaxCorporateActionTickerAsc = 'EVENTS_MAX_CORPORATE_ACTION_TICKER_ASC', + EventsMaxCorporateActionTickerDesc = 'EVENTS_MAX_CORPORATE_ACTION_TICKER_DESC', + EventsMaxCreatedAtAsc = 'EVENTS_MAX_CREATED_AT_ASC', + EventsMaxCreatedAtDesc = 'EVENTS_MAX_CREATED_AT_DESC', + EventsMaxEventArg_0Asc = 'EVENTS_MAX_EVENT_ARG_0_ASC', + EventsMaxEventArg_0Desc = 'EVENTS_MAX_EVENT_ARG_0_DESC', + EventsMaxEventArg_1Asc = 'EVENTS_MAX_EVENT_ARG_1_ASC', + EventsMaxEventArg_1Desc = 'EVENTS_MAX_EVENT_ARG_1_DESC', + EventsMaxEventArg_2Asc = 'EVENTS_MAX_EVENT_ARG_2_ASC', + EventsMaxEventArg_2Desc = 'EVENTS_MAX_EVENT_ARG_2_DESC', + EventsMaxEventArg_3Asc = 'EVENTS_MAX_EVENT_ARG_3_ASC', + EventsMaxEventArg_3Desc = 'EVENTS_MAX_EVENT_ARG_3_DESC', + EventsMaxEventIdxAsc = 'EVENTS_MAX_EVENT_IDX_ASC', + EventsMaxEventIdxDesc = 'EVENTS_MAX_EVENT_IDX_DESC', + EventsMaxEventIdAsc = 'EVENTS_MAX_EVENT_ID_ASC', + EventsMaxEventIdDesc = 'EVENTS_MAX_EVENT_ID_DESC', + EventsMaxExtrinsicIdxAsc = 'EVENTS_MAX_EXTRINSIC_IDX_ASC', + EventsMaxExtrinsicIdxDesc = 'EVENTS_MAX_EXTRINSIC_IDX_DESC', + EventsMaxExtrinsicIdAsc = 'EVENTS_MAX_EXTRINSIC_ID_ASC', + EventsMaxExtrinsicIdDesc = 'EVENTS_MAX_EXTRINSIC_ID_DESC', + EventsMaxFundraiserOfferingAssetAsc = 'EVENTS_MAX_FUNDRAISER_OFFERING_ASSET_ASC', + EventsMaxFundraiserOfferingAssetDesc = 'EVENTS_MAX_FUNDRAISER_OFFERING_ASSET_DESC', + EventsMaxIdAsc = 'EVENTS_MAX_ID_ASC', + EventsMaxIdDesc = 'EVENTS_MAX_ID_DESC', + EventsMaxModuleIdAsc = 'EVENTS_MAX_MODULE_ID_ASC', + EventsMaxModuleIdDesc = 'EVENTS_MAX_MODULE_ID_DESC', + EventsMaxSpecVersionIdAsc = 'EVENTS_MAX_SPEC_VERSION_ID_ASC', + EventsMaxSpecVersionIdDesc = 'EVENTS_MAX_SPEC_VERSION_ID_DESC', + EventsMaxTransferToAsc = 'EVENTS_MAX_TRANSFER_TO_ASC', + EventsMaxTransferToDesc = 'EVENTS_MAX_TRANSFER_TO_DESC', + EventsMinAttributesAsc = 'EVENTS_MIN_ATTRIBUTES_ASC', + EventsMinAttributesDesc = 'EVENTS_MIN_ATTRIBUTES_DESC', + EventsMinAttributesTxtAsc = 'EVENTS_MIN_ATTRIBUTES_TXT_ASC', + EventsMinAttributesTxtDesc = 'EVENTS_MIN_ATTRIBUTES_TXT_DESC', + EventsMinBlockIdAsc = 'EVENTS_MIN_BLOCK_ID_ASC', + EventsMinBlockIdDesc = 'EVENTS_MIN_BLOCK_ID_DESC', + EventsMinBlockRangeAsc = 'EVENTS_MIN_BLOCK_RANGE_ASC', + EventsMinBlockRangeDesc = 'EVENTS_MIN_BLOCK_RANGE_DESC', + EventsMinClaimExpiryAsc = 'EVENTS_MIN_CLAIM_EXPIRY_ASC', + EventsMinClaimExpiryDesc = 'EVENTS_MIN_CLAIM_EXPIRY_DESC', + EventsMinClaimIssuerAsc = 'EVENTS_MIN_CLAIM_ISSUER_ASC', + EventsMinClaimIssuerDesc = 'EVENTS_MIN_CLAIM_ISSUER_DESC', + EventsMinClaimScopeAsc = 'EVENTS_MIN_CLAIM_SCOPE_ASC', + EventsMinClaimScopeDesc = 'EVENTS_MIN_CLAIM_SCOPE_DESC', + EventsMinClaimTypeAsc = 'EVENTS_MIN_CLAIM_TYPE_ASC', + EventsMinClaimTypeDesc = 'EVENTS_MIN_CLAIM_TYPE_DESC', + EventsMinCorporateActionTickerAsc = 'EVENTS_MIN_CORPORATE_ACTION_TICKER_ASC', + EventsMinCorporateActionTickerDesc = 'EVENTS_MIN_CORPORATE_ACTION_TICKER_DESC', + EventsMinCreatedAtAsc = 'EVENTS_MIN_CREATED_AT_ASC', + EventsMinCreatedAtDesc = 'EVENTS_MIN_CREATED_AT_DESC', + EventsMinEventArg_0Asc = 'EVENTS_MIN_EVENT_ARG_0_ASC', + EventsMinEventArg_0Desc = 'EVENTS_MIN_EVENT_ARG_0_DESC', + EventsMinEventArg_1Asc = 'EVENTS_MIN_EVENT_ARG_1_ASC', + EventsMinEventArg_1Desc = 'EVENTS_MIN_EVENT_ARG_1_DESC', + EventsMinEventArg_2Asc = 'EVENTS_MIN_EVENT_ARG_2_ASC', + EventsMinEventArg_2Desc = 'EVENTS_MIN_EVENT_ARG_2_DESC', + EventsMinEventArg_3Asc = 'EVENTS_MIN_EVENT_ARG_3_ASC', + EventsMinEventArg_3Desc = 'EVENTS_MIN_EVENT_ARG_3_DESC', + EventsMinEventIdxAsc = 'EVENTS_MIN_EVENT_IDX_ASC', + EventsMinEventIdxDesc = 'EVENTS_MIN_EVENT_IDX_DESC', + EventsMinEventIdAsc = 'EVENTS_MIN_EVENT_ID_ASC', + EventsMinEventIdDesc = 'EVENTS_MIN_EVENT_ID_DESC', + EventsMinExtrinsicIdxAsc = 'EVENTS_MIN_EXTRINSIC_IDX_ASC', + EventsMinExtrinsicIdxDesc = 'EVENTS_MIN_EXTRINSIC_IDX_DESC', + EventsMinExtrinsicIdAsc = 'EVENTS_MIN_EXTRINSIC_ID_ASC', + EventsMinExtrinsicIdDesc = 'EVENTS_MIN_EXTRINSIC_ID_DESC', + EventsMinFundraiserOfferingAssetAsc = 'EVENTS_MIN_FUNDRAISER_OFFERING_ASSET_ASC', + EventsMinFundraiserOfferingAssetDesc = 'EVENTS_MIN_FUNDRAISER_OFFERING_ASSET_DESC', + EventsMinIdAsc = 'EVENTS_MIN_ID_ASC', + EventsMinIdDesc = 'EVENTS_MIN_ID_DESC', + EventsMinModuleIdAsc = 'EVENTS_MIN_MODULE_ID_ASC', + EventsMinModuleIdDesc = 'EVENTS_MIN_MODULE_ID_DESC', + EventsMinSpecVersionIdAsc = 'EVENTS_MIN_SPEC_VERSION_ID_ASC', + EventsMinSpecVersionIdDesc = 'EVENTS_MIN_SPEC_VERSION_ID_DESC', + EventsMinTransferToAsc = 'EVENTS_MIN_TRANSFER_TO_ASC', + EventsMinTransferToDesc = 'EVENTS_MIN_TRANSFER_TO_DESC', + EventsStddevPopulationAttributesAsc = 'EVENTS_STDDEV_POPULATION_ATTRIBUTES_ASC', + EventsStddevPopulationAttributesDesc = 'EVENTS_STDDEV_POPULATION_ATTRIBUTES_DESC', + EventsStddevPopulationAttributesTxtAsc = 'EVENTS_STDDEV_POPULATION_ATTRIBUTES_TXT_ASC', + EventsStddevPopulationAttributesTxtDesc = 'EVENTS_STDDEV_POPULATION_ATTRIBUTES_TXT_DESC', + EventsStddevPopulationBlockIdAsc = 'EVENTS_STDDEV_POPULATION_BLOCK_ID_ASC', + EventsStddevPopulationBlockIdDesc = 'EVENTS_STDDEV_POPULATION_BLOCK_ID_DESC', + EventsStddevPopulationBlockRangeAsc = 'EVENTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + EventsStddevPopulationBlockRangeDesc = 'EVENTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + EventsStddevPopulationClaimExpiryAsc = 'EVENTS_STDDEV_POPULATION_CLAIM_EXPIRY_ASC', + EventsStddevPopulationClaimExpiryDesc = 'EVENTS_STDDEV_POPULATION_CLAIM_EXPIRY_DESC', + EventsStddevPopulationClaimIssuerAsc = 'EVENTS_STDDEV_POPULATION_CLAIM_ISSUER_ASC', + EventsStddevPopulationClaimIssuerDesc = 'EVENTS_STDDEV_POPULATION_CLAIM_ISSUER_DESC', + EventsStddevPopulationClaimScopeAsc = 'EVENTS_STDDEV_POPULATION_CLAIM_SCOPE_ASC', + EventsStddevPopulationClaimScopeDesc = 'EVENTS_STDDEV_POPULATION_CLAIM_SCOPE_DESC', + EventsStddevPopulationClaimTypeAsc = 'EVENTS_STDDEV_POPULATION_CLAIM_TYPE_ASC', + EventsStddevPopulationClaimTypeDesc = 'EVENTS_STDDEV_POPULATION_CLAIM_TYPE_DESC', + EventsStddevPopulationCorporateActionTickerAsc = 'EVENTS_STDDEV_POPULATION_CORPORATE_ACTION_TICKER_ASC', + EventsStddevPopulationCorporateActionTickerDesc = 'EVENTS_STDDEV_POPULATION_CORPORATE_ACTION_TICKER_DESC', + EventsStddevPopulationCreatedAtAsc = 'EVENTS_STDDEV_POPULATION_CREATED_AT_ASC', + EventsStddevPopulationCreatedAtDesc = 'EVENTS_STDDEV_POPULATION_CREATED_AT_DESC', + EventsStddevPopulationEventArg_0Asc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_0_ASC', + EventsStddevPopulationEventArg_0Desc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_0_DESC', + EventsStddevPopulationEventArg_1Asc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_1_ASC', + EventsStddevPopulationEventArg_1Desc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_1_DESC', + EventsStddevPopulationEventArg_2Asc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_2_ASC', + EventsStddevPopulationEventArg_2Desc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_2_DESC', + EventsStddevPopulationEventArg_3Asc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_3_ASC', + EventsStddevPopulationEventArg_3Desc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_3_DESC', + EventsStddevPopulationEventIdxAsc = 'EVENTS_STDDEV_POPULATION_EVENT_IDX_ASC', + EventsStddevPopulationEventIdxDesc = 'EVENTS_STDDEV_POPULATION_EVENT_IDX_DESC', + EventsStddevPopulationEventIdAsc = 'EVENTS_STDDEV_POPULATION_EVENT_ID_ASC', + EventsStddevPopulationEventIdDesc = 'EVENTS_STDDEV_POPULATION_EVENT_ID_DESC', + EventsStddevPopulationExtrinsicIdxAsc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + EventsStddevPopulationExtrinsicIdxDesc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + EventsStddevPopulationExtrinsicIdAsc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_ASC', + EventsStddevPopulationExtrinsicIdDesc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_DESC', + EventsStddevPopulationFundraiserOfferingAssetAsc = 'EVENTS_STDDEV_POPULATION_FUNDRAISER_OFFERING_ASSET_ASC', + EventsStddevPopulationFundraiserOfferingAssetDesc = 'EVENTS_STDDEV_POPULATION_FUNDRAISER_OFFERING_ASSET_DESC', + EventsStddevPopulationIdAsc = 'EVENTS_STDDEV_POPULATION_ID_ASC', + EventsStddevPopulationIdDesc = 'EVENTS_STDDEV_POPULATION_ID_DESC', + EventsStddevPopulationModuleIdAsc = 'EVENTS_STDDEV_POPULATION_MODULE_ID_ASC', + EventsStddevPopulationModuleIdDesc = 'EVENTS_STDDEV_POPULATION_MODULE_ID_DESC', + EventsStddevPopulationSpecVersionIdAsc = 'EVENTS_STDDEV_POPULATION_SPEC_VERSION_ID_ASC', + EventsStddevPopulationSpecVersionIdDesc = 'EVENTS_STDDEV_POPULATION_SPEC_VERSION_ID_DESC', + EventsStddevPopulationTransferToAsc = 'EVENTS_STDDEV_POPULATION_TRANSFER_TO_ASC', + EventsStddevPopulationTransferToDesc = 'EVENTS_STDDEV_POPULATION_TRANSFER_TO_DESC', + EventsStddevSampleAttributesAsc = 'EVENTS_STDDEV_SAMPLE_ATTRIBUTES_ASC', + EventsStddevSampleAttributesDesc = 'EVENTS_STDDEV_SAMPLE_ATTRIBUTES_DESC', + EventsStddevSampleAttributesTxtAsc = 'EVENTS_STDDEV_SAMPLE_ATTRIBUTES_TXT_ASC', + EventsStddevSampleAttributesTxtDesc = 'EVENTS_STDDEV_SAMPLE_ATTRIBUTES_TXT_DESC', + EventsStddevSampleBlockIdAsc = 'EVENTS_STDDEV_SAMPLE_BLOCK_ID_ASC', + EventsStddevSampleBlockIdDesc = 'EVENTS_STDDEV_SAMPLE_BLOCK_ID_DESC', + EventsStddevSampleBlockRangeAsc = 'EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + EventsStddevSampleBlockRangeDesc = 'EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + EventsStddevSampleClaimExpiryAsc = 'EVENTS_STDDEV_SAMPLE_CLAIM_EXPIRY_ASC', + EventsStddevSampleClaimExpiryDesc = 'EVENTS_STDDEV_SAMPLE_CLAIM_EXPIRY_DESC', + EventsStddevSampleClaimIssuerAsc = 'EVENTS_STDDEV_SAMPLE_CLAIM_ISSUER_ASC', + EventsStddevSampleClaimIssuerDesc = 'EVENTS_STDDEV_SAMPLE_CLAIM_ISSUER_DESC', + EventsStddevSampleClaimScopeAsc = 'EVENTS_STDDEV_SAMPLE_CLAIM_SCOPE_ASC', + EventsStddevSampleClaimScopeDesc = 'EVENTS_STDDEV_SAMPLE_CLAIM_SCOPE_DESC', + EventsStddevSampleClaimTypeAsc = 'EVENTS_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + EventsStddevSampleClaimTypeDesc = 'EVENTS_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + EventsStddevSampleCorporateActionTickerAsc = 'EVENTS_STDDEV_SAMPLE_CORPORATE_ACTION_TICKER_ASC', + EventsStddevSampleCorporateActionTickerDesc = 'EVENTS_STDDEV_SAMPLE_CORPORATE_ACTION_TICKER_DESC', + EventsStddevSampleCreatedAtAsc = 'EVENTS_STDDEV_SAMPLE_CREATED_AT_ASC', + EventsStddevSampleCreatedAtDesc = 'EVENTS_STDDEV_SAMPLE_CREATED_AT_DESC', + EventsStddevSampleEventArg_0Asc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_0_ASC', + EventsStddevSampleEventArg_0Desc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_0_DESC', + EventsStddevSampleEventArg_1Asc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_1_ASC', + EventsStddevSampleEventArg_1Desc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_1_DESC', + EventsStddevSampleEventArg_2Asc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_2_ASC', + EventsStddevSampleEventArg_2Desc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_2_DESC', + EventsStddevSampleEventArg_3Asc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_3_ASC', + EventsStddevSampleEventArg_3Desc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_3_DESC', + EventsStddevSampleEventIdxAsc = 'EVENTS_STDDEV_SAMPLE_EVENT_IDX_ASC', + EventsStddevSampleEventIdxDesc = 'EVENTS_STDDEV_SAMPLE_EVENT_IDX_DESC', + EventsStddevSampleEventIdAsc = 'EVENTS_STDDEV_SAMPLE_EVENT_ID_ASC', + EventsStddevSampleEventIdDesc = 'EVENTS_STDDEV_SAMPLE_EVENT_ID_DESC', + EventsStddevSampleExtrinsicIdxAsc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + EventsStddevSampleExtrinsicIdxDesc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + EventsStddevSampleExtrinsicIdAsc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_ASC', + EventsStddevSampleExtrinsicIdDesc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_DESC', + EventsStddevSampleFundraiserOfferingAssetAsc = 'EVENTS_STDDEV_SAMPLE_FUNDRAISER_OFFERING_ASSET_ASC', + EventsStddevSampleFundraiserOfferingAssetDesc = 'EVENTS_STDDEV_SAMPLE_FUNDRAISER_OFFERING_ASSET_DESC', + EventsStddevSampleIdAsc = 'EVENTS_STDDEV_SAMPLE_ID_ASC', + EventsStddevSampleIdDesc = 'EVENTS_STDDEV_SAMPLE_ID_DESC', + EventsStddevSampleModuleIdAsc = 'EVENTS_STDDEV_SAMPLE_MODULE_ID_ASC', + EventsStddevSampleModuleIdDesc = 'EVENTS_STDDEV_SAMPLE_MODULE_ID_DESC', + EventsStddevSampleSpecVersionIdAsc = 'EVENTS_STDDEV_SAMPLE_SPEC_VERSION_ID_ASC', + EventsStddevSampleSpecVersionIdDesc = 'EVENTS_STDDEV_SAMPLE_SPEC_VERSION_ID_DESC', + EventsStddevSampleTransferToAsc = 'EVENTS_STDDEV_SAMPLE_TRANSFER_TO_ASC', + EventsStddevSampleTransferToDesc = 'EVENTS_STDDEV_SAMPLE_TRANSFER_TO_DESC', + EventsSumAttributesAsc = 'EVENTS_SUM_ATTRIBUTES_ASC', + EventsSumAttributesDesc = 'EVENTS_SUM_ATTRIBUTES_DESC', + EventsSumAttributesTxtAsc = 'EVENTS_SUM_ATTRIBUTES_TXT_ASC', + EventsSumAttributesTxtDesc = 'EVENTS_SUM_ATTRIBUTES_TXT_DESC', + EventsSumBlockIdAsc = 'EVENTS_SUM_BLOCK_ID_ASC', + EventsSumBlockIdDesc = 'EVENTS_SUM_BLOCK_ID_DESC', + EventsSumBlockRangeAsc = 'EVENTS_SUM_BLOCK_RANGE_ASC', + EventsSumBlockRangeDesc = 'EVENTS_SUM_BLOCK_RANGE_DESC', + EventsSumClaimExpiryAsc = 'EVENTS_SUM_CLAIM_EXPIRY_ASC', + EventsSumClaimExpiryDesc = 'EVENTS_SUM_CLAIM_EXPIRY_DESC', + EventsSumClaimIssuerAsc = 'EVENTS_SUM_CLAIM_ISSUER_ASC', + EventsSumClaimIssuerDesc = 'EVENTS_SUM_CLAIM_ISSUER_DESC', + EventsSumClaimScopeAsc = 'EVENTS_SUM_CLAIM_SCOPE_ASC', + EventsSumClaimScopeDesc = 'EVENTS_SUM_CLAIM_SCOPE_DESC', + EventsSumClaimTypeAsc = 'EVENTS_SUM_CLAIM_TYPE_ASC', + EventsSumClaimTypeDesc = 'EVENTS_SUM_CLAIM_TYPE_DESC', + EventsSumCorporateActionTickerAsc = 'EVENTS_SUM_CORPORATE_ACTION_TICKER_ASC', + EventsSumCorporateActionTickerDesc = 'EVENTS_SUM_CORPORATE_ACTION_TICKER_DESC', + EventsSumCreatedAtAsc = 'EVENTS_SUM_CREATED_AT_ASC', + EventsSumCreatedAtDesc = 'EVENTS_SUM_CREATED_AT_DESC', + EventsSumEventArg_0Asc = 'EVENTS_SUM_EVENT_ARG_0_ASC', + EventsSumEventArg_0Desc = 'EVENTS_SUM_EVENT_ARG_0_DESC', + EventsSumEventArg_1Asc = 'EVENTS_SUM_EVENT_ARG_1_ASC', + EventsSumEventArg_1Desc = 'EVENTS_SUM_EVENT_ARG_1_DESC', + EventsSumEventArg_2Asc = 'EVENTS_SUM_EVENT_ARG_2_ASC', + EventsSumEventArg_2Desc = 'EVENTS_SUM_EVENT_ARG_2_DESC', + EventsSumEventArg_3Asc = 'EVENTS_SUM_EVENT_ARG_3_ASC', + EventsSumEventArg_3Desc = 'EVENTS_SUM_EVENT_ARG_3_DESC', + EventsSumEventIdxAsc = 'EVENTS_SUM_EVENT_IDX_ASC', + EventsSumEventIdxDesc = 'EVENTS_SUM_EVENT_IDX_DESC', + EventsSumEventIdAsc = 'EVENTS_SUM_EVENT_ID_ASC', + EventsSumEventIdDesc = 'EVENTS_SUM_EVENT_ID_DESC', + EventsSumExtrinsicIdxAsc = 'EVENTS_SUM_EXTRINSIC_IDX_ASC', + EventsSumExtrinsicIdxDesc = 'EVENTS_SUM_EXTRINSIC_IDX_DESC', + EventsSumExtrinsicIdAsc = 'EVENTS_SUM_EXTRINSIC_ID_ASC', + EventsSumExtrinsicIdDesc = 'EVENTS_SUM_EXTRINSIC_ID_DESC', + EventsSumFundraiserOfferingAssetAsc = 'EVENTS_SUM_FUNDRAISER_OFFERING_ASSET_ASC', + EventsSumFundraiserOfferingAssetDesc = 'EVENTS_SUM_FUNDRAISER_OFFERING_ASSET_DESC', + EventsSumIdAsc = 'EVENTS_SUM_ID_ASC', + EventsSumIdDesc = 'EVENTS_SUM_ID_DESC', + EventsSumModuleIdAsc = 'EVENTS_SUM_MODULE_ID_ASC', + EventsSumModuleIdDesc = 'EVENTS_SUM_MODULE_ID_DESC', + EventsSumSpecVersionIdAsc = 'EVENTS_SUM_SPEC_VERSION_ID_ASC', + EventsSumSpecVersionIdDesc = 'EVENTS_SUM_SPEC_VERSION_ID_DESC', + EventsSumTransferToAsc = 'EVENTS_SUM_TRANSFER_TO_ASC', + EventsSumTransferToDesc = 'EVENTS_SUM_TRANSFER_TO_DESC', + EventsVariancePopulationAttributesAsc = 'EVENTS_VARIANCE_POPULATION_ATTRIBUTES_ASC', + EventsVariancePopulationAttributesDesc = 'EVENTS_VARIANCE_POPULATION_ATTRIBUTES_DESC', + EventsVariancePopulationAttributesTxtAsc = 'EVENTS_VARIANCE_POPULATION_ATTRIBUTES_TXT_ASC', + EventsVariancePopulationAttributesTxtDesc = 'EVENTS_VARIANCE_POPULATION_ATTRIBUTES_TXT_DESC', + EventsVariancePopulationBlockIdAsc = 'EVENTS_VARIANCE_POPULATION_BLOCK_ID_ASC', + EventsVariancePopulationBlockIdDesc = 'EVENTS_VARIANCE_POPULATION_BLOCK_ID_DESC', + EventsVariancePopulationBlockRangeAsc = 'EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + EventsVariancePopulationBlockRangeDesc = 'EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + EventsVariancePopulationClaimExpiryAsc = 'EVENTS_VARIANCE_POPULATION_CLAIM_EXPIRY_ASC', + EventsVariancePopulationClaimExpiryDesc = 'EVENTS_VARIANCE_POPULATION_CLAIM_EXPIRY_DESC', + EventsVariancePopulationClaimIssuerAsc = 'EVENTS_VARIANCE_POPULATION_CLAIM_ISSUER_ASC', + EventsVariancePopulationClaimIssuerDesc = 'EVENTS_VARIANCE_POPULATION_CLAIM_ISSUER_DESC', + EventsVariancePopulationClaimScopeAsc = 'EVENTS_VARIANCE_POPULATION_CLAIM_SCOPE_ASC', + EventsVariancePopulationClaimScopeDesc = 'EVENTS_VARIANCE_POPULATION_CLAIM_SCOPE_DESC', + EventsVariancePopulationClaimTypeAsc = 'EVENTS_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + EventsVariancePopulationClaimTypeDesc = 'EVENTS_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + EventsVariancePopulationCorporateActionTickerAsc = 'EVENTS_VARIANCE_POPULATION_CORPORATE_ACTION_TICKER_ASC', + EventsVariancePopulationCorporateActionTickerDesc = 'EVENTS_VARIANCE_POPULATION_CORPORATE_ACTION_TICKER_DESC', + EventsVariancePopulationCreatedAtAsc = 'EVENTS_VARIANCE_POPULATION_CREATED_AT_ASC', + EventsVariancePopulationCreatedAtDesc = 'EVENTS_VARIANCE_POPULATION_CREATED_AT_DESC', + EventsVariancePopulationEventArg_0Asc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_0_ASC', + EventsVariancePopulationEventArg_0Desc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_0_DESC', + EventsVariancePopulationEventArg_1Asc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_1_ASC', + EventsVariancePopulationEventArg_1Desc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_1_DESC', + EventsVariancePopulationEventArg_2Asc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_2_ASC', + EventsVariancePopulationEventArg_2Desc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_2_DESC', + EventsVariancePopulationEventArg_3Asc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_3_ASC', + EventsVariancePopulationEventArg_3Desc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_3_DESC', + EventsVariancePopulationEventIdxAsc = 'EVENTS_VARIANCE_POPULATION_EVENT_IDX_ASC', + EventsVariancePopulationEventIdxDesc = 'EVENTS_VARIANCE_POPULATION_EVENT_IDX_DESC', + EventsVariancePopulationEventIdAsc = 'EVENTS_VARIANCE_POPULATION_EVENT_ID_ASC', + EventsVariancePopulationEventIdDesc = 'EVENTS_VARIANCE_POPULATION_EVENT_ID_DESC', + EventsVariancePopulationExtrinsicIdxAsc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + EventsVariancePopulationExtrinsicIdxDesc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + EventsVariancePopulationExtrinsicIdAsc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_ASC', + EventsVariancePopulationExtrinsicIdDesc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_DESC', + EventsVariancePopulationFundraiserOfferingAssetAsc = 'EVENTS_VARIANCE_POPULATION_FUNDRAISER_OFFERING_ASSET_ASC', + EventsVariancePopulationFundraiserOfferingAssetDesc = 'EVENTS_VARIANCE_POPULATION_FUNDRAISER_OFFERING_ASSET_DESC', + EventsVariancePopulationIdAsc = 'EVENTS_VARIANCE_POPULATION_ID_ASC', + EventsVariancePopulationIdDesc = 'EVENTS_VARIANCE_POPULATION_ID_DESC', + EventsVariancePopulationModuleIdAsc = 'EVENTS_VARIANCE_POPULATION_MODULE_ID_ASC', + EventsVariancePopulationModuleIdDesc = 'EVENTS_VARIANCE_POPULATION_MODULE_ID_DESC', + EventsVariancePopulationSpecVersionIdAsc = 'EVENTS_VARIANCE_POPULATION_SPEC_VERSION_ID_ASC', + EventsVariancePopulationSpecVersionIdDesc = 'EVENTS_VARIANCE_POPULATION_SPEC_VERSION_ID_DESC', + EventsVariancePopulationTransferToAsc = 'EVENTS_VARIANCE_POPULATION_TRANSFER_TO_ASC', + EventsVariancePopulationTransferToDesc = 'EVENTS_VARIANCE_POPULATION_TRANSFER_TO_DESC', + EventsVarianceSampleAttributesAsc = 'EVENTS_VARIANCE_SAMPLE_ATTRIBUTES_ASC', + EventsVarianceSampleAttributesDesc = 'EVENTS_VARIANCE_SAMPLE_ATTRIBUTES_DESC', + EventsVarianceSampleAttributesTxtAsc = 'EVENTS_VARIANCE_SAMPLE_ATTRIBUTES_TXT_ASC', + EventsVarianceSampleAttributesTxtDesc = 'EVENTS_VARIANCE_SAMPLE_ATTRIBUTES_TXT_DESC', + EventsVarianceSampleBlockIdAsc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_ID_ASC', + EventsVarianceSampleBlockIdDesc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_ID_DESC', + EventsVarianceSampleBlockRangeAsc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + EventsVarianceSampleBlockRangeDesc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + EventsVarianceSampleClaimExpiryAsc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_EXPIRY_ASC', + EventsVarianceSampleClaimExpiryDesc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_EXPIRY_DESC', + EventsVarianceSampleClaimIssuerAsc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_ISSUER_ASC', + EventsVarianceSampleClaimIssuerDesc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_ISSUER_DESC', + EventsVarianceSampleClaimScopeAsc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_SCOPE_ASC', + EventsVarianceSampleClaimScopeDesc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_SCOPE_DESC', + EventsVarianceSampleClaimTypeAsc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + EventsVarianceSampleClaimTypeDesc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + EventsVarianceSampleCorporateActionTickerAsc = 'EVENTS_VARIANCE_SAMPLE_CORPORATE_ACTION_TICKER_ASC', + EventsVarianceSampleCorporateActionTickerDesc = 'EVENTS_VARIANCE_SAMPLE_CORPORATE_ACTION_TICKER_DESC', + EventsVarianceSampleCreatedAtAsc = 'EVENTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + EventsVarianceSampleCreatedAtDesc = 'EVENTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + EventsVarianceSampleEventArg_0Asc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_0_ASC', + EventsVarianceSampleEventArg_0Desc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_0_DESC', + EventsVarianceSampleEventArg_1Asc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_1_ASC', + EventsVarianceSampleEventArg_1Desc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_1_DESC', + EventsVarianceSampleEventArg_2Asc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_2_ASC', + EventsVarianceSampleEventArg_2Desc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_2_DESC', + EventsVarianceSampleEventArg_3Asc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_3_ASC', + EventsVarianceSampleEventArg_3Desc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_3_DESC', + EventsVarianceSampleEventIdxAsc = 'EVENTS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + EventsVarianceSampleEventIdxDesc = 'EVENTS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + EventsVarianceSampleEventIdAsc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ID_ASC', + EventsVarianceSampleEventIdDesc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ID_DESC', + EventsVarianceSampleExtrinsicIdxAsc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + EventsVarianceSampleExtrinsicIdxDesc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + EventsVarianceSampleExtrinsicIdAsc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_ASC', + EventsVarianceSampleExtrinsicIdDesc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_DESC', + EventsVarianceSampleFundraiserOfferingAssetAsc = 'EVENTS_VARIANCE_SAMPLE_FUNDRAISER_OFFERING_ASSET_ASC', + EventsVarianceSampleFundraiserOfferingAssetDesc = 'EVENTS_VARIANCE_SAMPLE_FUNDRAISER_OFFERING_ASSET_DESC', + EventsVarianceSampleIdAsc = 'EVENTS_VARIANCE_SAMPLE_ID_ASC', + EventsVarianceSampleIdDesc = 'EVENTS_VARIANCE_SAMPLE_ID_DESC', + EventsVarianceSampleModuleIdAsc = 'EVENTS_VARIANCE_SAMPLE_MODULE_ID_ASC', + EventsVarianceSampleModuleIdDesc = 'EVENTS_VARIANCE_SAMPLE_MODULE_ID_DESC', + EventsVarianceSampleSpecVersionIdAsc = 'EVENTS_VARIANCE_SAMPLE_SPEC_VERSION_ID_ASC', + EventsVarianceSampleSpecVersionIdDesc = 'EVENTS_VARIANCE_SAMPLE_SPEC_VERSION_ID_DESC', + EventsVarianceSampleTransferToAsc = 'EVENTS_VARIANCE_SAMPLE_TRANSFER_TO_ASC', + EventsVarianceSampleTransferToDesc = 'EVENTS_VARIANCE_SAMPLE_TRANSFER_TO_DESC', + ExtrinsicsAverageAddressAsc = 'EXTRINSICS_AVERAGE_ADDRESS_ASC', + ExtrinsicsAverageAddressDesc = 'EXTRINSICS_AVERAGE_ADDRESS_DESC', + ExtrinsicsAverageBlockIdAsc = 'EXTRINSICS_AVERAGE_BLOCK_ID_ASC', + ExtrinsicsAverageBlockIdDesc = 'EXTRINSICS_AVERAGE_BLOCK_ID_DESC', + ExtrinsicsAverageBlockRangeAsc = 'EXTRINSICS_AVERAGE_BLOCK_RANGE_ASC', + ExtrinsicsAverageBlockRangeDesc = 'EXTRINSICS_AVERAGE_BLOCK_RANGE_DESC', + ExtrinsicsAverageCallIdAsc = 'EXTRINSICS_AVERAGE_CALL_ID_ASC', + ExtrinsicsAverageCallIdDesc = 'EXTRINSICS_AVERAGE_CALL_ID_DESC', + ExtrinsicsAverageCreatedAtAsc = 'EXTRINSICS_AVERAGE_CREATED_AT_ASC', + ExtrinsicsAverageCreatedAtDesc = 'EXTRINSICS_AVERAGE_CREATED_AT_DESC', + ExtrinsicsAverageExtrinsicHashAsc = 'EXTRINSICS_AVERAGE_EXTRINSIC_HASH_ASC', + ExtrinsicsAverageExtrinsicHashDesc = 'EXTRINSICS_AVERAGE_EXTRINSIC_HASH_DESC', + ExtrinsicsAverageExtrinsicIdxAsc = 'EXTRINSICS_AVERAGE_EXTRINSIC_IDX_ASC', + ExtrinsicsAverageExtrinsicIdxDesc = 'EXTRINSICS_AVERAGE_EXTRINSIC_IDX_DESC', + ExtrinsicsAverageExtrinsicLengthAsc = 'EXTRINSICS_AVERAGE_EXTRINSIC_LENGTH_ASC', + ExtrinsicsAverageExtrinsicLengthDesc = 'EXTRINSICS_AVERAGE_EXTRINSIC_LENGTH_DESC', + ExtrinsicsAverageIdAsc = 'EXTRINSICS_AVERAGE_ID_ASC', + ExtrinsicsAverageIdDesc = 'EXTRINSICS_AVERAGE_ID_DESC', + ExtrinsicsAverageModuleIdAsc = 'EXTRINSICS_AVERAGE_MODULE_ID_ASC', + ExtrinsicsAverageModuleIdDesc = 'EXTRINSICS_AVERAGE_MODULE_ID_DESC', + ExtrinsicsAverageNonceAsc = 'EXTRINSICS_AVERAGE_NONCE_ASC', + ExtrinsicsAverageNonceDesc = 'EXTRINSICS_AVERAGE_NONCE_DESC', + ExtrinsicsAverageParamsAsc = 'EXTRINSICS_AVERAGE_PARAMS_ASC', + ExtrinsicsAverageParamsDesc = 'EXTRINSICS_AVERAGE_PARAMS_DESC', + ExtrinsicsAverageParamsTxtAsc = 'EXTRINSICS_AVERAGE_PARAMS_TXT_ASC', + ExtrinsicsAverageParamsTxtDesc = 'EXTRINSICS_AVERAGE_PARAMS_TXT_DESC', + ExtrinsicsAverageSignedbyAddressAsc = 'EXTRINSICS_AVERAGE_SIGNEDBY_ADDRESS_ASC', + ExtrinsicsAverageSignedbyAddressDesc = 'EXTRINSICS_AVERAGE_SIGNEDBY_ADDRESS_DESC', + ExtrinsicsAverageSignedAsc = 'EXTRINSICS_AVERAGE_SIGNED_ASC', + ExtrinsicsAverageSignedDesc = 'EXTRINSICS_AVERAGE_SIGNED_DESC', + ExtrinsicsAverageSpecVersionIdAsc = 'EXTRINSICS_AVERAGE_SPEC_VERSION_ID_ASC', + ExtrinsicsAverageSpecVersionIdDesc = 'EXTRINSICS_AVERAGE_SPEC_VERSION_ID_DESC', + ExtrinsicsAverageSuccessAsc = 'EXTRINSICS_AVERAGE_SUCCESS_ASC', + ExtrinsicsAverageSuccessDesc = 'EXTRINSICS_AVERAGE_SUCCESS_DESC', + ExtrinsicsCountAsc = 'EXTRINSICS_COUNT_ASC', + ExtrinsicsCountDesc = 'EXTRINSICS_COUNT_DESC', + ExtrinsicsDistinctCountAddressAsc = 'EXTRINSICS_DISTINCT_COUNT_ADDRESS_ASC', + ExtrinsicsDistinctCountAddressDesc = 'EXTRINSICS_DISTINCT_COUNT_ADDRESS_DESC', + ExtrinsicsDistinctCountBlockIdAsc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_ASC', + ExtrinsicsDistinctCountBlockIdDesc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_ID_DESC', + ExtrinsicsDistinctCountBlockRangeAsc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ExtrinsicsDistinctCountBlockRangeDesc = 'EXTRINSICS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ExtrinsicsDistinctCountCallIdAsc = 'EXTRINSICS_DISTINCT_COUNT_CALL_ID_ASC', + ExtrinsicsDistinctCountCallIdDesc = 'EXTRINSICS_DISTINCT_COUNT_CALL_ID_DESC', + ExtrinsicsDistinctCountCreatedAtAsc = 'EXTRINSICS_DISTINCT_COUNT_CREATED_AT_ASC', + ExtrinsicsDistinctCountCreatedAtDesc = 'EXTRINSICS_DISTINCT_COUNT_CREATED_AT_DESC', + ExtrinsicsDistinctCountExtrinsicHashAsc = 'EXTRINSICS_DISTINCT_COUNT_EXTRINSIC_HASH_ASC', + ExtrinsicsDistinctCountExtrinsicHashDesc = 'EXTRINSICS_DISTINCT_COUNT_EXTRINSIC_HASH_DESC', + ExtrinsicsDistinctCountExtrinsicIdxAsc = 'EXTRINSICS_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + ExtrinsicsDistinctCountExtrinsicIdxDesc = 'EXTRINSICS_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + ExtrinsicsDistinctCountExtrinsicLengthAsc = 'EXTRINSICS_DISTINCT_COUNT_EXTRINSIC_LENGTH_ASC', + ExtrinsicsDistinctCountExtrinsicLengthDesc = 'EXTRINSICS_DISTINCT_COUNT_EXTRINSIC_LENGTH_DESC', + ExtrinsicsDistinctCountIdAsc = 'EXTRINSICS_DISTINCT_COUNT_ID_ASC', + ExtrinsicsDistinctCountIdDesc = 'EXTRINSICS_DISTINCT_COUNT_ID_DESC', + ExtrinsicsDistinctCountModuleIdAsc = 'EXTRINSICS_DISTINCT_COUNT_MODULE_ID_ASC', + ExtrinsicsDistinctCountModuleIdDesc = 'EXTRINSICS_DISTINCT_COUNT_MODULE_ID_DESC', + ExtrinsicsDistinctCountNonceAsc = 'EXTRINSICS_DISTINCT_COUNT_NONCE_ASC', + ExtrinsicsDistinctCountNonceDesc = 'EXTRINSICS_DISTINCT_COUNT_NONCE_DESC', + ExtrinsicsDistinctCountParamsAsc = 'EXTRINSICS_DISTINCT_COUNT_PARAMS_ASC', + ExtrinsicsDistinctCountParamsDesc = 'EXTRINSICS_DISTINCT_COUNT_PARAMS_DESC', + ExtrinsicsDistinctCountParamsTxtAsc = 'EXTRINSICS_DISTINCT_COUNT_PARAMS_TXT_ASC', + ExtrinsicsDistinctCountParamsTxtDesc = 'EXTRINSICS_DISTINCT_COUNT_PARAMS_TXT_DESC', + ExtrinsicsDistinctCountSignedbyAddressAsc = 'EXTRINSICS_DISTINCT_COUNT_SIGNEDBY_ADDRESS_ASC', + ExtrinsicsDistinctCountSignedbyAddressDesc = 'EXTRINSICS_DISTINCT_COUNT_SIGNEDBY_ADDRESS_DESC', + ExtrinsicsDistinctCountSignedAsc = 'EXTRINSICS_DISTINCT_COUNT_SIGNED_ASC', + ExtrinsicsDistinctCountSignedDesc = 'EXTRINSICS_DISTINCT_COUNT_SIGNED_DESC', + ExtrinsicsDistinctCountSpecVersionIdAsc = 'EXTRINSICS_DISTINCT_COUNT_SPEC_VERSION_ID_ASC', + ExtrinsicsDistinctCountSpecVersionIdDesc = 'EXTRINSICS_DISTINCT_COUNT_SPEC_VERSION_ID_DESC', + ExtrinsicsDistinctCountSuccessAsc = 'EXTRINSICS_DISTINCT_COUNT_SUCCESS_ASC', + ExtrinsicsDistinctCountSuccessDesc = 'EXTRINSICS_DISTINCT_COUNT_SUCCESS_DESC', + ExtrinsicsMaxAddressAsc = 'EXTRINSICS_MAX_ADDRESS_ASC', + ExtrinsicsMaxAddressDesc = 'EXTRINSICS_MAX_ADDRESS_DESC', + ExtrinsicsMaxBlockIdAsc = 'EXTRINSICS_MAX_BLOCK_ID_ASC', + ExtrinsicsMaxBlockIdDesc = 'EXTRINSICS_MAX_BLOCK_ID_DESC', + ExtrinsicsMaxBlockRangeAsc = 'EXTRINSICS_MAX_BLOCK_RANGE_ASC', + ExtrinsicsMaxBlockRangeDesc = 'EXTRINSICS_MAX_BLOCK_RANGE_DESC', + ExtrinsicsMaxCallIdAsc = 'EXTRINSICS_MAX_CALL_ID_ASC', + ExtrinsicsMaxCallIdDesc = 'EXTRINSICS_MAX_CALL_ID_DESC', + ExtrinsicsMaxCreatedAtAsc = 'EXTRINSICS_MAX_CREATED_AT_ASC', + ExtrinsicsMaxCreatedAtDesc = 'EXTRINSICS_MAX_CREATED_AT_DESC', + ExtrinsicsMaxExtrinsicHashAsc = 'EXTRINSICS_MAX_EXTRINSIC_HASH_ASC', + ExtrinsicsMaxExtrinsicHashDesc = 'EXTRINSICS_MAX_EXTRINSIC_HASH_DESC', + ExtrinsicsMaxExtrinsicIdxAsc = 'EXTRINSICS_MAX_EXTRINSIC_IDX_ASC', + ExtrinsicsMaxExtrinsicIdxDesc = 'EXTRINSICS_MAX_EXTRINSIC_IDX_DESC', + ExtrinsicsMaxExtrinsicLengthAsc = 'EXTRINSICS_MAX_EXTRINSIC_LENGTH_ASC', + ExtrinsicsMaxExtrinsicLengthDesc = 'EXTRINSICS_MAX_EXTRINSIC_LENGTH_DESC', + ExtrinsicsMaxIdAsc = 'EXTRINSICS_MAX_ID_ASC', + ExtrinsicsMaxIdDesc = 'EXTRINSICS_MAX_ID_DESC', + ExtrinsicsMaxModuleIdAsc = 'EXTRINSICS_MAX_MODULE_ID_ASC', + ExtrinsicsMaxModuleIdDesc = 'EXTRINSICS_MAX_MODULE_ID_DESC', + ExtrinsicsMaxNonceAsc = 'EXTRINSICS_MAX_NONCE_ASC', + ExtrinsicsMaxNonceDesc = 'EXTRINSICS_MAX_NONCE_DESC', + ExtrinsicsMaxParamsAsc = 'EXTRINSICS_MAX_PARAMS_ASC', + ExtrinsicsMaxParamsDesc = 'EXTRINSICS_MAX_PARAMS_DESC', + ExtrinsicsMaxParamsTxtAsc = 'EXTRINSICS_MAX_PARAMS_TXT_ASC', + ExtrinsicsMaxParamsTxtDesc = 'EXTRINSICS_MAX_PARAMS_TXT_DESC', + ExtrinsicsMaxSignedbyAddressAsc = 'EXTRINSICS_MAX_SIGNEDBY_ADDRESS_ASC', + ExtrinsicsMaxSignedbyAddressDesc = 'EXTRINSICS_MAX_SIGNEDBY_ADDRESS_DESC', + ExtrinsicsMaxSignedAsc = 'EXTRINSICS_MAX_SIGNED_ASC', + ExtrinsicsMaxSignedDesc = 'EXTRINSICS_MAX_SIGNED_DESC', + ExtrinsicsMaxSpecVersionIdAsc = 'EXTRINSICS_MAX_SPEC_VERSION_ID_ASC', + ExtrinsicsMaxSpecVersionIdDesc = 'EXTRINSICS_MAX_SPEC_VERSION_ID_DESC', + ExtrinsicsMaxSuccessAsc = 'EXTRINSICS_MAX_SUCCESS_ASC', + ExtrinsicsMaxSuccessDesc = 'EXTRINSICS_MAX_SUCCESS_DESC', + ExtrinsicsMinAddressAsc = 'EXTRINSICS_MIN_ADDRESS_ASC', + ExtrinsicsMinAddressDesc = 'EXTRINSICS_MIN_ADDRESS_DESC', + ExtrinsicsMinBlockIdAsc = 'EXTRINSICS_MIN_BLOCK_ID_ASC', + ExtrinsicsMinBlockIdDesc = 'EXTRINSICS_MIN_BLOCK_ID_DESC', + ExtrinsicsMinBlockRangeAsc = 'EXTRINSICS_MIN_BLOCK_RANGE_ASC', + ExtrinsicsMinBlockRangeDesc = 'EXTRINSICS_MIN_BLOCK_RANGE_DESC', + ExtrinsicsMinCallIdAsc = 'EXTRINSICS_MIN_CALL_ID_ASC', + ExtrinsicsMinCallIdDesc = 'EXTRINSICS_MIN_CALL_ID_DESC', + ExtrinsicsMinCreatedAtAsc = 'EXTRINSICS_MIN_CREATED_AT_ASC', + ExtrinsicsMinCreatedAtDesc = 'EXTRINSICS_MIN_CREATED_AT_DESC', + ExtrinsicsMinExtrinsicHashAsc = 'EXTRINSICS_MIN_EXTRINSIC_HASH_ASC', + ExtrinsicsMinExtrinsicHashDesc = 'EXTRINSICS_MIN_EXTRINSIC_HASH_DESC', + ExtrinsicsMinExtrinsicIdxAsc = 'EXTRINSICS_MIN_EXTRINSIC_IDX_ASC', + ExtrinsicsMinExtrinsicIdxDesc = 'EXTRINSICS_MIN_EXTRINSIC_IDX_DESC', + ExtrinsicsMinExtrinsicLengthAsc = 'EXTRINSICS_MIN_EXTRINSIC_LENGTH_ASC', + ExtrinsicsMinExtrinsicLengthDesc = 'EXTRINSICS_MIN_EXTRINSIC_LENGTH_DESC', + ExtrinsicsMinIdAsc = 'EXTRINSICS_MIN_ID_ASC', + ExtrinsicsMinIdDesc = 'EXTRINSICS_MIN_ID_DESC', + ExtrinsicsMinModuleIdAsc = 'EXTRINSICS_MIN_MODULE_ID_ASC', + ExtrinsicsMinModuleIdDesc = 'EXTRINSICS_MIN_MODULE_ID_DESC', + ExtrinsicsMinNonceAsc = 'EXTRINSICS_MIN_NONCE_ASC', + ExtrinsicsMinNonceDesc = 'EXTRINSICS_MIN_NONCE_DESC', + ExtrinsicsMinParamsAsc = 'EXTRINSICS_MIN_PARAMS_ASC', + ExtrinsicsMinParamsDesc = 'EXTRINSICS_MIN_PARAMS_DESC', + ExtrinsicsMinParamsTxtAsc = 'EXTRINSICS_MIN_PARAMS_TXT_ASC', + ExtrinsicsMinParamsTxtDesc = 'EXTRINSICS_MIN_PARAMS_TXT_DESC', + ExtrinsicsMinSignedbyAddressAsc = 'EXTRINSICS_MIN_SIGNEDBY_ADDRESS_ASC', + ExtrinsicsMinSignedbyAddressDesc = 'EXTRINSICS_MIN_SIGNEDBY_ADDRESS_DESC', + ExtrinsicsMinSignedAsc = 'EXTRINSICS_MIN_SIGNED_ASC', + ExtrinsicsMinSignedDesc = 'EXTRINSICS_MIN_SIGNED_DESC', + ExtrinsicsMinSpecVersionIdAsc = 'EXTRINSICS_MIN_SPEC_VERSION_ID_ASC', + ExtrinsicsMinSpecVersionIdDesc = 'EXTRINSICS_MIN_SPEC_VERSION_ID_DESC', + ExtrinsicsMinSuccessAsc = 'EXTRINSICS_MIN_SUCCESS_ASC', + ExtrinsicsMinSuccessDesc = 'EXTRINSICS_MIN_SUCCESS_DESC', + ExtrinsicsRootAsc = 'EXTRINSICS_ROOT_ASC', + ExtrinsicsRootDesc = 'EXTRINSICS_ROOT_DESC', + ExtrinsicsStddevPopulationAddressAsc = 'EXTRINSICS_STDDEV_POPULATION_ADDRESS_ASC', + ExtrinsicsStddevPopulationAddressDesc = 'EXTRINSICS_STDDEV_POPULATION_ADDRESS_DESC', + ExtrinsicsStddevPopulationBlockIdAsc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_ASC', + ExtrinsicsStddevPopulationBlockIdDesc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_ID_DESC', + ExtrinsicsStddevPopulationBlockRangeAsc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ExtrinsicsStddevPopulationBlockRangeDesc = 'EXTRINSICS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ExtrinsicsStddevPopulationCallIdAsc = 'EXTRINSICS_STDDEV_POPULATION_CALL_ID_ASC', + ExtrinsicsStddevPopulationCallIdDesc = 'EXTRINSICS_STDDEV_POPULATION_CALL_ID_DESC', + ExtrinsicsStddevPopulationCreatedAtAsc = 'EXTRINSICS_STDDEV_POPULATION_CREATED_AT_ASC', + ExtrinsicsStddevPopulationCreatedAtDesc = 'EXTRINSICS_STDDEV_POPULATION_CREATED_AT_DESC', + ExtrinsicsStddevPopulationExtrinsicHashAsc = 'EXTRINSICS_STDDEV_POPULATION_EXTRINSIC_HASH_ASC', + ExtrinsicsStddevPopulationExtrinsicHashDesc = 'EXTRINSICS_STDDEV_POPULATION_EXTRINSIC_HASH_DESC', + ExtrinsicsStddevPopulationExtrinsicIdxAsc = 'EXTRINSICS_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + ExtrinsicsStddevPopulationExtrinsicIdxDesc = 'EXTRINSICS_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + ExtrinsicsStddevPopulationExtrinsicLengthAsc = 'EXTRINSICS_STDDEV_POPULATION_EXTRINSIC_LENGTH_ASC', + ExtrinsicsStddevPopulationExtrinsicLengthDesc = 'EXTRINSICS_STDDEV_POPULATION_EXTRINSIC_LENGTH_DESC', + ExtrinsicsStddevPopulationIdAsc = 'EXTRINSICS_STDDEV_POPULATION_ID_ASC', + ExtrinsicsStddevPopulationIdDesc = 'EXTRINSICS_STDDEV_POPULATION_ID_DESC', + ExtrinsicsStddevPopulationModuleIdAsc = 'EXTRINSICS_STDDEV_POPULATION_MODULE_ID_ASC', + ExtrinsicsStddevPopulationModuleIdDesc = 'EXTRINSICS_STDDEV_POPULATION_MODULE_ID_DESC', + ExtrinsicsStddevPopulationNonceAsc = 'EXTRINSICS_STDDEV_POPULATION_NONCE_ASC', + ExtrinsicsStddevPopulationNonceDesc = 'EXTRINSICS_STDDEV_POPULATION_NONCE_DESC', + ExtrinsicsStddevPopulationParamsAsc = 'EXTRINSICS_STDDEV_POPULATION_PARAMS_ASC', + ExtrinsicsStddevPopulationParamsDesc = 'EXTRINSICS_STDDEV_POPULATION_PARAMS_DESC', + ExtrinsicsStddevPopulationParamsTxtAsc = 'EXTRINSICS_STDDEV_POPULATION_PARAMS_TXT_ASC', + ExtrinsicsStddevPopulationParamsTxtDesc = 'EXTRINSICS_STDDEV_POPULATION_PARAMS_TXT_DESC', + ExtrinsicsStddevPopulationSignedbyAddressAsc = 'EXTRINSICS_STDDEV_POPULATION_SIGNEDBY_ADDRESS_ASC', + ExtrinsicsStddevPopulationSignedbyAddressDesc = 'EXTRINSICS_STDDEV_POPULATION_SIGNEDBY_ADDRESS_DESC', + ExtrinsicsStddevPopulationSignedAsc = 'EXTRINSICS_STDDEV_POPULATION_SIGNED_ASC', + ExtrinsicsStddevPopulationSignedDesc = 'EXTRINSICS_STDDEV_POPULATION_SIGNED_DESC', + ExtrinsicsStddevPopulationSpecVersionIdAsc = 'EXTRINSICS_STDDEV_POPULATION_SPEC_VERSION_ID_ASC', + ExtrinsicsStddevPopulationSpecVersionIdDesc = 'EXTRINSICS_STDDEV_POPULATION_SPEC_VERSION_ID_DESC', + ExtrinsicsStddevPopulationSuccessAsc = 'EXTRINSICS_STDDEV_POPULATION_SUCCESS_ASC', + ExtrinsicsStddevPopulationSuccessDesc = 'EXTRINSICS_STDDEV_POPULATION_SUCCESS_DESC', + ExtrinsicsStddevSampleAddressAsc = 'EXTRINSICS_STDDEV_SAMPLE_ADDRESS_ASC', + ExtrinsicsStddevSampleAddressDesc = 'EXTRINSICS_STDDEV_SAMPLE_ADDRESS_DESC', + ExtrinsicsStddevSampleBlockIdAsc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_ASC', + ExtrinsicsStddevSampleBlockIdDesc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_ID_DESC', + ExtrinsicsStddevSampleBlockRangeAsc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ExtrinsicsStddevSampleBlockRangeDesc = 'EXTRINSICS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ExtrinsicsStddevSampleCallIdAsc = 'EXTRINSICS_STDDEV_SAMPLE_CALL_ID_ASC', + ExtrinsicsStddevSampleCallIdDesc = 'EXTRINSICS_STDDEV_SAMPLE_CALL_ID_DESC', + ExtrinsicsStddevSampleCreatedAtAsc = 'EXTRINSICS_STDDEV_SAMPLE_CREATED_AT_ASC', + ExtrinsicsStddevSampleCreatedAtDesc = 'EXTRINSICS_STDDEV_SAMPLE_CREATED_AT_DESC', + ExtrinsicsStddevSampleExtrinsicHashAsc = 'EXTRINSICS_STDDEV_SAMPLE_EXTRINSIC_HASH_ASC', + ExtrinsicsStddevSampleExtrinsicHashDesc = 'EXTRINSICS_STDDEV_SAMPLE_EXTRINSIC_HASH_DESC', + ExtrinsicsStddevSampleExtrinsicIdxAsc = 'EXTRINSICS_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + ExtrinsicsStddevSampleExtrinsicIdxDesc = 'EXTRINSICS_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + ExtrinsicsStddevSampleExtrinsicLengthAsc = 'EXTRINSICS_STDDEV_SAMPLE_EXTRINSIC_LENGTH_ASC', + ExtrinsicsStddevSampleExtrinsicLengthDesc = 'EXTRINSICS_STDDEV_SAMPLE_EXTRINSIC_LENGTH_DESC', + ExtrinsicsStddevSampleIdAsc = 'EXTRINSICS_STDDEV_SAMPLE_ID_ASC', + ExtrinsicsStddevSampleIdDesc = 'EXTRINSICS_STDDEV_SAMPLE_ID_DESC', + ExtrinsicsStddevSampleModuleIdAsc = 'EXTRINSICS_STDDEV_SAMPLE_MODULE_ID_ASC', + ExtrinsicsStddevSampleModuleIdDesc = 'EXTRINSICS_STDDEV_SAMPLE_MODULE_ID_DESC', + ExtrinsicsStddevSampleNonceAsc = 'EXTRINSICS_STDDEV_SAMPLE_NONCE_ASC', + ExtrinsicsStddevSampleNonceDesc = 'EXTRINSICS_STDDEV_SAMPLE_NONCE_DESC', + ExtrinsicsStddevSampleParamsAsc = 'EXTRINSICS_STDDEV_SAMPLE_PARAMS_ASC', + ExtrinsicsStddevSampleParamsDesc = 'EXTRINSICS_STDDEV_SAMPLE_PARAMS_DESC', + ExtrinsicsStddevSampleParamsTxtAsc = 'EXTRINSICS_STDDEV_SAMPLE_PARAMS_TXT_ASC', + ExtrinsicsStddevSampleParamsTxtDesc = 'EXTRINSICS_STDDEV_SAMPLE_PARAMS_TXT_DESC', + ExtrinsicsStddevSampleSignedbyAddressAsc = 'EXTRINSICS_STDDEV_SAMPLE_SIGNEDBY_ADDRESS_ASC', + ExtrinsicsStddevSampleSignedbyAddressDesc = 'EXTRINSICS_STDDEV_SAMPLE_SIGNEDBY_ADDRESS_DESC', + ExtrinsicsStddevSampleSignedAsc = 'EXTRINSICS_STDDEV_SAMPLE_SIGNED_ASC', + ExtrinsicsStddevSampleSignedDesc = 'EXTRINSICS_STDDEV_SAMPLE_SIGNED_DESC', + ExtrinsicsStddevSampleSpecVersionIdAsc = 'EXTRINSICS_STDDEV_SAMPLE_SPEC_VERSION_ID_ASC', + ExtrinsicsStddevSampleSpecVersionIdDesc = 'EXTRINSICS_STDDEV_SAMPLE_SPEC_VERSION_ID_DESC', + ExtrinsicsStddevSampleSuccessAsc = 'EXTRINSICS_STDDEV_SAMPLE_SUCCESS_ASC', + ExtrinsicsStddevSampleSuccessDesc = 'EXTRINSICS_STDDEV_SAMPLE_SUCCESS_DESC', + ExtrinsicsSumAddressAsc = 'EXTRINSICS_SUM_ADDRESS_ASC', + ExtrinsicsSumAddressDesc = 'EXTRINSICS_SUM_ADDRESS_DESC', + ExtrinsicsSumBlockIdAsc = 'EXTRINSICS_SUM_BLOCK_ID_ASC', + ExtrinsicsSumBlockIdDesc = 'EXTRINSICS_SUM_BLOCK_ID_DESC', + ExtrinsicsSumBlockRangeAsc = 'EXTRINSICS_SUM_BLOCK_RANGE_ASC', + ExtrinsicsSumBlockRangeDesc = 'EXTRINSICS_SUM_BLOCK_RANGE_DESC', + ExtrinsicsSumCallIdAsc = 'EXTRINSICS_SUM_CALL_ID_ASC', + ExtrinsicsSumCallIdDesc = 'EXTRINSICS_SUM_CALL_ID_DESC', + ExtrinsicsSumCreatedAtAsc = 'EXTRINSICS_SUM_CREATED_AT_ASC', + ExtrinsicsSumCreatedAtDesc = 'EXTRINSICS_SUM_CREATED_AT_DESC', + ExtrinsicsSumExtrinsicHashAsc = 'EXTRINSICS_SUM_EXTRINSIC_HASH_ASC', + ExtrinsicsSumExtrinsicHashDesc = 'EXTRINSICS_SUM_EXTRINSIC_HASH_DESC', + ExtrinsicsSumExtrinsicIdxAsc = 'EXTRINSICS_SUM_EXTRINSIC_IDX_ASC', + ExtrinsicsSumExtrinsicIdxDesc = 'EXTRINSICS_SUM_EXTRINSIC_IDX_DESC', + ExtrinsicsSumExtrinsicLengthAsc = 'EXTRINSICS_SUM_EXTRINSIC_LENGTH_ASC', + ExtrinsicsSumExtrinsicLengthDesc = 'EXTRINSICS_SUM_EXTRINSIC_LENGTH_DESC', + ExtrinsicsSumIdAsc = 'EXTRINSICS_SUM_ID_ASC', + ExtrinsicsSumIdDesc = 'EXTRINSICS_SUM_ID_DESC', + ExtrinsicsSumModuleIdAsc = 'EXTRINSICS_SUM_MODULE_ID_ASC', + ExtrinsicsSumModuleIdDesc = 'EXTRINSICS_SUM_MODULE_ID_DESC', + ExtrinsicsSumNonceAsc = 'EXTRINSICS_SUM_NONCE_ASC', + ExtrinsicsSumNonceDesc = 'EXTRINSICS_SUM_NONCE_DESC', + ExtrinsicsSumParamsAsc = 'EXTRINSICS_SUM_PARAMS_ASC', + ExtrinsicsSumParamsDesc = 'EXTRINSICS_SUM_PARAMS_DESC', + ExtrinsicsSumParamsTxtAsc = 'EXTRINSICS_SUM_PARAMS_TXT_ASC', + ExtrinsicsSumParamsTxtDesc = 'EXTRINSICS_SUM_PARAMS_TXT_DESC', + ExtrinsicsSumSignedbyAddressAsc = 'EXTRINSICS_SUM_SIGNEDBY_ADDRESS_ASC', + ExtrinsicsSumSignedbyAddressDesc = 'EXTRINSICS_SUM_SIGNEDBY_ADDRESS_DESC', + ExtrinsicsSumSignedAsc = 'EXTRINSICS_SUM_SIGNED_ASC', + ExtrinsicsSumSignedDesc = 'EXTRINSICS_SUM_SIGNED_DESC', + ExtrinsicsSumSpecVersionIdAsc = 'EXTRINSICS_SUM_SPEC_VERSION_ID_ASC', + ExtrinsicsSumSpecVersionIdDesc = 'EXTRINSICS_SUM_SPEC_VERSION_ID_DESC', + ExtrinsicsSumSuccessAsc = 'EXTRINSICS_SUM_SUCCESS_ASC', + ExtrinsicsSumSuccessDesc = 'EXTRINSICS_SUM_SUCCESS_DESC', + ExtrinsicsVariancePopulationAddressAsc = 'EXTRINSICS_VARIANCE_POPULATION_ADDRESS_ASC', + ExtrinsicsVariancePopulationAddressDesc = 'EXTRINSICS_VARIANCE_POPULATION_ADDRESS_DESC', + ExtrinsicsVariancePopulationBlockIdAsc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_ASC', + ExtrinsicsVariancePopulationBlockIdDesc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_ID_DESC', + ExtrinsicsVariancePopulationBlockRangeAsc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ExtrinsicsVariancePopulationBlockRangeDesc = 'EXTRINSICS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ExtrinsicsVariancePopulationCallIdAsc = 'EXTRINSICS_VARIANCE_POPULATION_CALL_ID_ASC', + ExtrinsicsVariancePopulationCallIdDesc = 'EXTRINSICS_VARIANCE_POPULATION_CALL_ID_DESC', + ExtrinsicsVariancePopulationCreatedAtAsc = 'EXTRINSICS_VARIANCE_POPULATION_CREATED_AT_ASC', + ExtrinsicsVariancePopulationCreatedAtDesc = 'EXTRINSICS_VARIANCE_POPULATION_CREATED_AT_DESC', + ExtrinsicsVariancePopulationExtrinsicHashAsc = 'EXTRINSICS_VARIANCE_POPULATION_EXTRINSIC_HASH_ASC', + ExtrinsicsVariancePopulationExtrinsicHashDesc = 'EXTRINSICS_VARIANCE_POPULATION_EXTRINSIC_HASH_DESC', + ExtrinsicsVariancePopulationExtrinsicIdxAsc = 'EXTRINSICS_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + ExtrinsicsVariancePopulationExtrinsicIdxDesc = 'EXTRINSICS_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + ExtrinsicsVariancePopulationExtrinsicLengthAsc = 'EXTRINSICS_VARIANCE_POPULATION_EXTRINSIC_LENGTH_ASC', + ExtrinsicsVariancePopulationExtrinsicLengthDesc = 'EXTRINSICS_VARIANCE_POPULATION_EXTRINSIC_LENGTH_DESC', + ExtrinsicsVariancePopulationIdAsc = 'EXTRINSICS_VARIANCE_POPULATION_ID_ASC', + ExtrinsicsVariancePopulationIdDesc = 'EXTRINSICS_VARIANCE_POPULATION_ID_DESC', + ExtrinsicsVariancePopulationModuleIdAsc = 'EXTRINSICS_VARIANCE_POPULATION_MODULE_ID_ASC', + ExtrinsicsVariancePopulationModuleIdDesc = 'EXTRINSICS_VARIANCE_POPULATION_MODULE_ID_DESC', + ExtrinsicsVariancePopulationNonceAsc = 'EXTRINSICS_VARIANCE_POPULATION_NONCE_ASC', + ExtrinsicsVariancePopulationNonceDesc = 'EXTRINSICS_VARIANCE_POPULATION_NONCE_DESC', + ExtrinsicsVariancePopulationParamsAsc = 'EXTRINSICS_VARIANCE_POPULATION_PARAMS_ASC', + ExtrinsicsVariancePopulationParamsDesc = 'EXTRINSICS_VARIANCE_POPULATION_PARAMS_DESC', + ExtrinsicsVariancePopulationParamsTxtAsc = 'EXTRINSICS_VARIANCE_POPULATION_PARAMS_TXT_ASC', + ExtrinsicsVariancePopulationParamsTxtDesc = 'EXTRINSICS_VARIANCE_POPULATION_PARAMS_TXT_DESC', + ExtrinsicsVariancePopulationSignedbyAddressAsc = 'EXTRINSICS_VARIANCE_POPULATION_SIGNEDBY_ADDRESS_ASC', + ExtrinsicsVariancePopulationSignedbyAddressDesc = 'EXTRINSICS_VARIANCE_POPULATION_SIGNEDBY_ADDRESS_DESC', + ExtrinsicsVariancePopulationSignedAsc = 'EXTRINSICS_VARIANCE_POPULATION_SIGNED_ASC', + ExtrinsicsVariancePopulationSignedDesc = 'EXTRINSICS_VARIANCE_POPULATION_SIGNED_DESC', + ExtrinsicsVariancePopulationSpecVersionIdAsc = 'EXTRINSICS_VARIANCE_POPULATION_SPEC_VERSION_ID_ASC', + ExtrinsicsVariancePopulationSpecVersionIdDesc = 'EXTRINSICS_VARIANCE_POPULATION_SPEC_VERSION_ID_DESC', + ExtrinsicsVariancePopulationSuccessAsc = 'EXTRINSICS_VARIANCE_POPULATION_SUCCESS_ASC', + ExtrinsicsVariancePopulationSuccessDesc = 'EXTRINSICS_VARIANCE_POPULATION_SUCCESS_DESC', + ExtrinsicsVarianceSampleAddressAsc = 'EXTRINSICS_VARIANCE_SAMPLE_ADDRESS_ASC', + ExtrinsicsVarianceSampleAddressDesc = 'EXTRINSICS_VARIANCE_SAMPLE_ADDRESS_DESC', + ExtrinsicsVarianceSampleBlockIdAsc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_ASC', + ExtrinsicsVarianceSampleBlockIdDesc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_ID_DESC', + ExtrinsicsVarianceSampleBlockRangeAsc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ExtrinsicsVarianceSampleBlockRangeDesc = 'EXTRINSICS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ExtrinsicsVarianceSampleCallIdAsc = 'EXTRINSICS_VARIANCE_SAMPLE_CALL_ID_ASC', + ExtrinsicsVarianceSampleCallIdDesc = 'EXTRINSICS_VARIANCE_SAMPLE_CALL_ID_DESC', + ExtrinsicsVarianceSampleCreatedAtAsc = 'EXTRINSICS_VARIANCE_SAMPLE_CREATED_AT_ASC', + ExtrinsicsVarianceSampleCreatedAtDesc = 'EXTRINSICS_VARIANCE_SAMPLE_CREATED_AT_DESC', + ExtrinsicsVarianceSampleExtrinsicHashAsc = 'EXTRINSICS_VARIANCE_SAMPLE_EXTRINSIC_HASH_ASC', + ExtrinsicsVarianceSampleExtrinsicHashDesc = 'EXTRINSICS_VARIANCE_SAMPLE_EXTRINSIC_HASH_DESC', + ExtrinsicsVarianceSampleExtrinsicIdxAsc = 'EXTRINSICS_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + ExtrinsicsVarianceSampleExtrinsicIdxDesc = 'EXTRINSICS_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + ExtrinsicsVarianceSampleExtrinsicLengthAsc = 'EXTRINSICS_VARIANCE_SAMPLE_EXTRINSIC_LENGTH_ASC', + ExtrinsicsVarianceSampleExtrinsicLengthDesc = 'EXTRINSICS_VARIANCE_SAMPLE_EXTRINSIC_LENGTH_DESC', + ExtrinsicsVarianceSampleIdAsc = 'EXTRINSICS_VARIANCE_SAMPLE_ID_ASC', + ExtrinsicsVarianceSampleIdDesc = 'EXTRINSICS_VARIANCE_SAMPLE_ID_DESC', + ExtrinsicsVarianceSampleModuleIdAsc = 'EXTRINSICS_VARIANCE_SAMPLE_MODULE_ID_ASC', + ExtrinsicsVarianceSampleModuleIdDesc = 'EXTRINSICS_VARIANCE_SAMPLE_MODULE_ID_DESC', + ExtrinsicsVarianceSampleNonceAsc = 'EXTRINSICS_VARIANCE_SAMPLE_NONCE_ASC', + ExtrinsicsVarianceSampleNonceDesc = 'EXTRINSICS_VARIANCE_SAMPLE_NONCE_DESC', + ExtrinsicsVarianceSampleParamsAsc = 'EXTRINSICS_VARIANCE_SAMPLE_PARAMS_ASC', + ExtrinsicsVarianceSampleParamsDesc = 'EXTRINSICS_VARIANCE_SAMPLE_PARAMS_DESC', + ExtrinsicsVarianceSampleParamsTxtAsc = 'EXTRINSICS_VARIANCE_SAMPLE_PARAMS_TXT_ASC', + ExtrinsicsVarianceSampleParamsTxtDesc = 'EXTRINSICS_VARIANCE_SAMPLE_PARAMS_TXT_DESC', + ExtrinsicsVarianceSampleSignedbyAddressAsc = 'EXTRINSICS_VARIANCE_SAMPLE_SIGNEDBY_ADDRESS_ASC', + ExtrinsicsVarianceSampleSignedbyAddressDesc = 'EXTRINSICS_VARIANCE_SAMPLE_SIGNEDBY_ADDRESS_DESC', + ExtrinsicsVarianceSampleSignedAsc = 'EXTRINSICS_VARIANCE_SAMPLE_SIGNED_ASC', + ExtrinsicsVarianceSampleSignedDesc = 'EXTRINSICS_VARIANCE_SAMPLE_SIGNED_DESC', + ExtrinsicsVarianceSampleSpecVersionIdAsc = 'EXTRINSICS_VARIANCE_SAMPLE_SPEC_VERSION_ID_ASC', + ExtrinsicsVarianceSampleSpecVersionIdDesc = 'EXTRINSICS_VARIANCE_SAMPLE_SPEC_VERSION_ID_DESC', + ExtrinsicsVarianceSampleSuccessAsc = 'EXTRINSICS_VARIANCE_SAMPLE_SUCCESS_ASC', + ExtrinsicsVarianceSampleSuccessDesc = 'EXTRINSICS_VARIANCE_SAMPLE_SUCCESS_DESC', + FundingsByCreatedBlockIdAverageAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + FundingsByCreatedBlockIdAverageAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + FundingsByCreatedBlockIdAverageAssetIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + FundingsByCreatedBlockIdAverageAssetIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + FundingsByCreatedBlockIdAverageBlockRangeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + FundingsByCreatedBlockIdAverageBlockRangeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + FundingsByCreatedBlockIdAverageCreatedAtAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + FundingsByCreatedBlockIdAverageCreatedAtDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + FundingsByCreatedBlockIdAverageCreatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdAverageCreatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdAverageDatetimeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + FundingsByCreatedBlockIdAverageDatetimeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + FundingsByCreatedBlockIdAverageFundingRoundAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_ASC', + FundingsByCreatedBlockIdAverageFundingRoundDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_DESC', + FundingsByCreatedBlockIdAverageIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + FundingsByCreatedBlockIdAverageIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + FundingsByCreatedBlockIdAverageTotalFundingAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByCreatedBlockIdAverageTotalFundingAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdCountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_COUNT_ASC', + FundingsByCreatedBlockIdCountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_COUNT_DESC', + FundingsByCreatedBlockIdDistinctCountAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + FundingsByCreatedBlockIdDistinctCountAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + FundingsByCreatedBlockIdDistinctCountAssetIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + FundingsByCreatedBlockIdDistinctCountAssetIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + FundingsByCreatedBlockIdDistinctCountBlockRangeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + FundingsByCreatedBlockIdDistinctCountBlockRangeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + FundingsByCreatedBlockIdDistinctCountCreatedAtAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + FundingsByCreatedBlockIdDistinctCountCreatedAtDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + FundingsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdDistinctCountDatetimeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + FundingsByCreatedBlockIdDistinctCountDatetimeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + FundingsByCreatedBlockIdDistinctCountFundingRoundAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_ASC', + FundingsByCreatedBlockIdDistinctCountFundingRoundDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC', + FundingsByCreatedBlockIdDistinctCountIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + FundingsByCreatedBlockIdDistinctCountIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + FundingsByCreatedBlockIdDistinctCountTotalFundingAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByCreatedBlockIdDistinctCountTotalFundingAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdMaxAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + FundingsByCreatedBlockIdMaxAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + FundingsByCreatedBlockIdMaxAssetIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + FundingsByCreatedBlockIdMaxAssetIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + FundingsByCreatedBlockIdMaxBlockRangeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + FundingsByCreatedBlockIdMaxBlockRangeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + FundingsByCreatedBlockIdMaxCreatedAtAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + FundingsByCreatedBlockIdMaxCreatedAtDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + FundingsByCreatedBlockIdMaxCreatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdMaxCreatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdMaxDatetimeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + FundingsByCreatedBlockIdMaxDatetimeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + FundingsByCreatedBlockIdMaxFundingRoundAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_FUNDING_ROUND_ASC', + FundingsByCreatedBlockIdMaxFundingRoundDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_FUNDING_ROUND_DESC', + FundingsByCreatedBlockIdMaxIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + FundingsByCreatedBlockIdMaxIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + FundingsByCreatedBlockIdMaxTotalFundingAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByCreatedBlockIdMaxTotalFundingAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdMinAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + FundingsByCreatedBlockIdMinAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + FundingsByCreatedBlockIdMinAssetIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + FundingsByCreatedBlockIdMinAssetIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + FundingsByCreatedBlockIdMinBlockRangeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + FundingsByCreatedBlockIdMinBlockRangeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + FundingsByCreatedBlockIdMinCreatedAtAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + FundingsByCreatedBlockIdMinCreatedAtDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + FundingsByCreatedBlockIdMinCreatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdMinCreatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdMinDatetimeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + FundingsByCreatedBlockIdMinDatetimeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + FundingsByCreatedBlockIdMinFundingRoundAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_FUNDING_ROUND_ASC', + FundingsByCreatedBlockIdMinFundingRoundDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_FUNDING_ROUND_DESC', + FundingsByCreatedBlockIdMinIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + FundingsByCreatedBlockIdMinIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + FundingsByCreatedBlockIdMinTotalFundingAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByCreatedBlockIdMinTotalFundingAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByCreatedBlockIdMinUpdatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdMinUpdatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdStddevPopulationAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + FundingsByCreatedBlockIdStddevPopulationAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + FundingsByCreatedBlockIdStddevPopulationAssetIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + FundingsByCreatedBlockIdStddevPopulationAssetIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + FundingsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + FundingsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + FundingsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + FundingsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + FundingsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdStddevPopulationDatetimeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + FundingsByCreatedBlockIdStddevPopulationDatetimeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + FundingsByCreatedBlockIdStddevPopulationFundingRoundAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_ASC', + FundingsByCreatedBlockIdStddevPopulationFundingRoundDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC', + FundingsByCreatedBlockIdStddevPopulationIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + FundingsByCreatedBlockIdStddevPopulationIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + FundingsByCreatedBlockIdStddevPopulationTotalFundingAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByCreatedBlockIdStddevPopulationTotalFundingAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdStddevSampleAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + FundingsByCreatedBlockIdStddevSampleAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + FundingsByCreatedBlockIdStddevSampleAssetIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + FundingsByCreatedBlockIdStddevSampleAssetIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + FundingsByCreatedBlockIdStddevSampleBlockRangeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + FundingsByCreatedBlockIdStddevSampleBlockRangeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + FundingsByCreatedBlockIdStddevSampleCreatedAtAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + FundingsByCreatedBlockIdStddevSampleCreatedAtDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + FundingsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdStddevSampleDatetimeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + FundingsByCreatedBlockIdStddevSampleDatetimeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + FundingsByCreatedBlockIdStddevSampleFundingRoundAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + FundingsByCreatedBlockIdStddevSampleFundingRoundDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + FundingsByCreatedBlockIdStddevSampleIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + FundingsByCreatedBlockIdStddevSampleIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + FundingsByCreatedBlockIdStddevSampleTotalFundingAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByCreatedBlockIdStddevSampleTotalFundingAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdSumAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + FundingsByCreatedBlockIdSumAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + FundingsByCreatedBlockIdSumAssetIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + FundingsByCreatedBlockIdSumAssetIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + FundingsByCreatedBlockIdSumBlockRangeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + FundingsByCreatedBlockIdSumBlockRangeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + FundingsByCreatedBlockIdSumCreatedAtAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + FundingsByCreatedBlockIdSumCreatedAtDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + FundingsByCreatedBlockIdSumCreatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdSumCreatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdSumDatetimeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + FundingsByCreatedBlockIdSumDatetimeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + FundingsByCreatedBlockIdSumFundingRoundAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_FUNDING_ROUND_ASC', + FundingsByCreatedBlockIdSumFundingRoundDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_FUNDING_ROUND_DESC', + FundingsByCreatedBlockIdSumIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + FundingsByCreatedBlockIdSumIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + FundingsByCreatedBlockIdSumTotalFundingAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByCreatedBlockIdSumTotalFundingAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByCreatedBlockIdSumUpdatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdSumUpdatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdVariancePopulationAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + FundingsByCreatedBlockIdVariancePopulationAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + FundingsByCreatedBlockIdVariancePopulationAssetIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + FundingsByCreatedBlockIdVariancePopulationAssetIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + FundingsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + FundingsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + FundingsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + FundingsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + FundingsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdVariancePopulationDatetimeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + FundingsByCreatedBlockIdVariancePopulationDatetimeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + FundingsByCreatedBlockIdVariancePopulationFundingRoundAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + FundingsByCreatedBlockIdVariancePopulationFundingRoundDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + FundingsByCreatedBlockIdVariancePopulationIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + FundingsByCreatedBlockIdVariancePopulationIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + FundingsByCreatedBlockIdVariancePopulationTotalFundingAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByCreatedBlockIdVariancePopulationTotalFundingAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdVarianceSampleAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + FundingsByCreatedBlockIdVarianceSampleAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + FundingsByCreatedBlockIdVarianceSampleAssetIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + FundingsByCreatedBlockIdVarianceSampleAssetIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + FundingsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + FundingsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + FundingsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + FundingsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + FundingsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + FundingsByCreatedBlockIdVarianceSampleDatetimeAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + FundingsByCreatedBlockIdVarianceSampleDatetimeDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + FundingsByCreatedBlockIdVarianceSampleFundingRoundAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + FundingsByCreatedBlockIdVarianceSampleFundingRoundDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + FundingsByCreatedBlockIdVarianceSampleIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + FundingsByCreatedBlockIdVarianceSampleIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + FundingsByCreatedBlockIdVarianceSampleTotalFundingAmountAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByCreatedBlockIdVarianceSampleTotalFundingAmountDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + FundingsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'FUNDINGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdAverageAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + FundingsByUpdatedBlockIdAverageAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + FundingsByUpdatedBlockIdAverageAssetIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + FundingsByUpdatedBlockIdAverageAssetIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + FundingsByUpdatedBlockIdAverageBlockRangeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + FundingsByUpdatedBlockIdAverageBlockRangeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + FundingsByUpdatedBlockIdAverageCreatedAtAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + FundingsByUpdatedBlockIdAverageCreatedAtDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + FundingsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdAverageDatetimeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + FundingsByUpdatedBlockIdAverageDatetimeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + FundingsByUpdatedBlockIdAverageFundingRoundAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_ASC', + FundingsByUpdatedBlockIdAverageFundingRoundDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_FUNDING_ROUND_DESC', + FundingsByUpdatedBlockIdAverageIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + FundingsByUpdatedBlockIdAverageIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + FundingsByUpdatedBlockIdAverageTotalFundingAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByUpdatedBlockIdAverageTotalFundingAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdCountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + FundingsByUpdatedBlockIdCountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + FundingsByUpdatedBlockIdDistinctCountAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + FundingsByUpdatedBlockIdDistinctCountAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + FundingsByUpdatedBlockIdDistinctCountAssetIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + FundingsByUpdatedBlockIdDistinctCountAssetIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + FundingsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + FundingsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + FundingsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + FundingsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + FundingsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdDistinctCountDatetimeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + FundingsByUpdatedBlockIdDistinctCountDatetimeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + FundingsByUpdatedBlockIdDistinctCountFundingRoundAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_ASC', + FundingsByUpdatedBlockIdDistinctCountFundingRoundDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC', + FundingsByUpdatedBlockIdDistinctCountIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + FundingsByUpdatedBlockIdDistinctCountIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + FundingsByUpdatedBlockIdDistinctCountTotalFundingAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByUpdatedBlockIdDistinctCountTotalFundingAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdMaxAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + FundingsByUpdatedBlockIdMaxAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + FundingsByUpdatedBlockIdMaxAssetIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + FundingsByUpdatedBlockIdMaxAssetIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + FundingsByUpdatedBlockIdMaxBlockRangeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + FundingsByUpdatedBlockIdMaxBlockRangeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + FundingsByUpdatedBlockIdMaxCreatedAtAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + FundingsByUpdatedBlockIdMaxCreatedAtDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + FundingsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdMaxDatetimeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + FundingsByUpdatedBlockIdMaxDatetimeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + FundingsByUpdatedBlockIdMaxFundingRoundAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_FUNDING_ROUND_ASC', + FundingsByUpdatedBlockIdMaxFundingRoundDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_FUNDING_ROUND_DESC', + FundingsByUpdatedBlockIdMaxIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + FundingsByUpdatedBlockIdMaxIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + FundingsByUpdatedBlockIdMaxTotalFundingAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByUpdatedBlockIdMaxTotalFundingAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdMinAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + FundingsByUpdatedBlockIdMinAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + FundingsByUpdatedBlockIdMinAssetIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + FundingsByUpdatedBlockIdMinAssetIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + FundingsByUpdatedBlockIdMinBlockRangeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + FundingsByUpdatedBlockIdMinBlockRangeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + FundingsByUpdatedBlockIdMinCreatedAtAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + FundingsByUpdatedBlockIdMinCreatedAtDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + FundingsByUpdatedBlockIdMinCreatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdMinCreatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdMinDatetimeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + FundingsByUpdatedBlockIdMinDatetimeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + FundingsByUpdatedBlockIdMinFundingRoundAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_FUNDING_ROUND_ASC', + FundingsByUpdatedBlockIdMinFundingRoundDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_FUNDING_ROUND_DESC', + FundingsByUpdatedBlockIdMinIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + FundingsByUpdatedBlockIdMinIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + FundingsByUpdatedBlockIdMinTotalFundingAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByUpdatedBlockIdMinTotalFundingAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdStddevPopulationAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + FundingsByUpdatedBlockIdStddevPopulationAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + FundingsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + FundingsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + FundingsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + FundingsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + FundingsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + FundingsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + FundingsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdStddevPopulationDatetimeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + FundingsByUpdatedBlockIdStddevPopulationDatetimeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + FundingsByUpdatedBlockIdStddevPopulationFundingRoundAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_ASC', + FundingsByUpdatedBlockIdStddevPopulationFundingRoundDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC', + FundingsByUpdatedBlockIdStddevPopulationIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + FundingsByUpdatedBlockIdStddevPopulationIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + FundingsByUpdatedBlockIdStddevPopulationTotalFundingAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByUpdatedBlockIdStddevPopulationTotalFundingAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdStddevSampleAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + FundingsByUpdatedBlockIdStddevSampleAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + FundingsByUpdatedBlockIdStddevSampleAssetIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + FundingsByUpdatedBlockIdStddevSampleAssetIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + FundingsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + FundingsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + FundingsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + FundingsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + FundingsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdStddevSampleDatetimeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + FundingsByUpdatedBlockIdStddevSampleDatetimeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + FundingsByUpdatedBlockIdStddevSampleFundingRoundAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + FundingsByUpdatedBlockIdStddevSampleFundingRoundDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + FundingsByUpdatedBlockIdStddevSampleIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + FundingsByUpdatedBlockIdStddevSampleIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + FundingsByUpdatedBlockIdStddevSampleTotalFundingAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByUpdatedBlockIdStddevSampleTotalFundingAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdSumAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + FundingsByUpdatedBlockIdSumAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + FundingsByUpdatedBlockIdSumAssetIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + FundingsByUpdatedBlockIdSumAssetIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + FundingsByUpdatedBlockIdSumBlockRangeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + FundingsByUpdatedBlockIdSumBlockRangeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + FundingsByUpdatedBlockIdSumCreatedAtAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + FundingsByUpdatedBlockIdSumCreatedAtDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + FundingsByUpdatedBlockIdSumCreatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdSumCreatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdSumDatetimeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + FundingsByUpdatedBlockIdSumDatetimeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + FundingsByUpdatedBlockIdSumFundingRoundAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_FUNDING_ROUND_ASC', + FundingsByUpdatedBlockIdSumFundingRoundDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_FUNDING_ROUND_DESC', + FundingsByUpdatedBlockIdSumIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + FundingsByUpdatedBlockIdSumIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + FundingsByUpdatedBlockIdSumTotalFundingAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByUpdatedBlockIdSumTotalFundingAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdVariancePopulationAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + FundingsByUpdatedBlockIdVariancePopulationAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + FundingsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + FundingsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + FundingsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + FundingsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + FundingsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + FundingsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + FundingsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdVariancePopulationDatetimeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + FundingsByUpdatedBlockIdVariancePopulationDatetimeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + FundingsByUpdatedBlockIdVariancePopulationFundingRoundAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + FundingsByUpdatedBlockIdVariancePopulationFundingRoundDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + FundingsByUpdatedBlockIdVariancePopulationIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + FundingsByUpdatedBlockIdVariancePopulationIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + FundingsByUpdatedBlockIdVariancePopulationTotalFundingAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByUpdatedBlockIdVariancePopulationTotalFundingAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdVarianceSampleAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + FundingsByUpdatedBlockIdVarianceSampleAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + FundingsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + FundingsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + FundingsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + FundingsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + FundingsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + FundingsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + FundingsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + FundingsByUpdatedBlockIdVarianceSampleDatetimeAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + FundingsByUpdatedBlockIdVarianceSampleDatetimeDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + FundingsByUpdatedBlockIdVarianceSampleFundingRoundAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + FundingsByUpdatedBlockIdVarianceSampleFundingRoundDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + FundingsByUpdatedBlockIdVarianceSampleIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + FundingsByUpdatedBlockIdVarianceSampleIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + FundingsByUpdatedBlockIdVarianceSampleTotalFundingAmountAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_FUNDING_AMOUNT_ASC', + FundingsByUpdatedBlockIdVarianceSampleTotalFundingAmountDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_FUNDING_AMOUNT_DESC', + FundingsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + FundingsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'FUNDINGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + HashAsc = 'HASH_ASC', + HashDesc = 'HASH_DESC', + IdentitiesByCreatedBlockIdAverageBlockRangeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + IdentitiesByCreatedBlockIdAverageBlockRangeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + IdentitiesByCreatedBlockIdAverageCreatedAtAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + IdentitiesByCreatedBlockIdAverageCreatedAtDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + IdentitiesByCreatedBlockIdAverageCreatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdAverageCreatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdAverageDatetimeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + IdentitiesByCreatedBlockIdAverageDatetimeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + IdentitiesByCreatedBlockIdAverageDidAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_DID_ASC', + IdentitiesByCreatedBlockIdAverageDidDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_DID_DESC', + IdentitiesByCreatedBlockIdAverageEventIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + IdentitiesByCreatedBlockIdAverageEventIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + IdentitiesByCreatedBlockIdAverageIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + IdentitiesByCreatedBlockIdAverageIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + IdentitiesByCreatedBlockIdAveragePrimaryAccountAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_PRIMARY_ACCOUNT_ASC', + IdentitiesByCreatedBlockIdAveragePrimaryAccountDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_PRIMARY_ACCOUNT_DESC', + IdentitiesByCreatedBlockIdAverageSecondaryKeysFrozenAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByCreatedBlockIdAverageSecondaryKeysFrozenDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdCountAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_COUNT_ASC', + IdentitiesByCreatedBlockIdCountDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_COUNT_DESC', + IdentitiesByCreatedBlockIdDistinctCountBlockRangeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + IdentitiesByCreatedBlockIdDistinctCountBlockRangeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + IdentitiesByCreatedBlockIdDistinctCountCreatedAtAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + IdentitiesByCreatedBlockIdDistinctCountCreatedAtDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + IdentitiesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdDistinctCountDatetimeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + IdentitiesByCreatedBlockIdDistinctCountDatetimeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + IdentitiesByCreatedBlockIdDistinctCountDidAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DID_ASC', + IdentitiesByCreatedBlockIdDistinctCountDidDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DID_DESC', + IdentitiesByCreatedBlockIdDistinctCountEventIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + IdentitiesByCreatedBlockIdDistinctCountEventIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + IdentitiesByCreatedBlockIdDistinctCountIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + IdentitiesByCreatedBlockIdDistinctCountIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + IdentitiesByCreatedBlockIdDistinctCountPrimaryAccountAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PRIMARY_ACCOUNT_ASC', + IdentitiesByCreatedBlockIdDistinctCountPrimaryAccountDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PRIMARY_ACCOUNT_DESC', + IdentitiesByCreatedBlockIdDistinctCountSecondaryKeysFrozenAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByCreatedBlockIdDistinctCountSecondaryKeysFrozenDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdMaxBlockRangeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + IdentitiesByCreatedBlockIdMaxBlockRangeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + IdentitiesByCreatedBlockIdMaxCreatedAtAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + IdentitiesByCreatedBlockIdMaxCreatedAtDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + IdentitiesByCreatedBlockIdMaxCreatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdMaxCreatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdMaxDatetimeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + IdentitiesByCreatedBlockIdMaxDatetimeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + IdentitiesByCreatedBlockIdMaxDidAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_DID_ASC', + IdentitiesByCreatedBlockIdMaxDidDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_DID_DESC', + IdentitiesByCreatedBlockIdMaxEventIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_ASC', + IdentitiesByCreatedBlockIdMaxEventIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_DESC', + IdentitiesByCreatedBlockIdMaxIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + IdentitiesByCreatedBlockIdMaxIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + IdentitiesByCreatedBlockIdMaxPrimaryAccountAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_PRIMARY_ACCOUNT_ASC', + IdentitiesByCreatedBlockIdMaxPrimaryAccountDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_PRIMARY_ACCOUNT_DESC', + IdentitiesByCreatedBlockIdMaxSecondaryKeysFrozenAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByCreatedBlockIdMaxSecondaryKeysFrozenDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdMinBlockRangeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + IdentitiesByCreatedBlockIdMinBlockRangeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + IdentitiesByCreatedBlockIdMinCreatedAtAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + IdentitiesByCreatedBlockIdMinCreatedAtDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + IdentitiesByCreatedBlockIdMinCreatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdMinCreatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdMinDatetimeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + IdentitiesByCreatedBlockIdMinDatetimeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + IdentitiesByCreatedBlockIdMinDidAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_DID_ASC', + IdentitiesByCreatedBlockIdMinDidDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_DID_DESC', + IdentitiesByCreatedBlockIdMinEventIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_ASC', + IdentitiesByCreatedBlockIdMinEventIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_DESC', + IdentitiesByCreatedBlockIdMinIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + IdentitiesByCreatedBlockIdMinIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + IdentitiesByCreatedBlockIdMinPrimaryAccountAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_PRIMARY_ACCOUNT_ASC', + IdentitiesByCreatedBlockIdMinPrimaryAccountDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_PRIMARY_ACCOUNT_DESC', + IdentitiesByCreatedBlockIdMinSecondaryKeysFrozenAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByCreatedBlockIdMinSecondaryKeysFrozenDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByCreatedBlockIdMinUpdatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdMinUpdatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + IdentitiesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + IdentitiesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + IdentitiesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + IdentitiesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdStddevPopulationDatetimeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + IdentitiesByCreatedBlockIdStddevPopulationDatetimeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + IdentitiesByCreatedBlockIdStddevPopulationDidAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DID_ASC', + IdentitiesByCreatedBlockIdStddevPopulationDidDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DID_DESC', + IdentitiesByCreatedBlockIdStddevPopulationEventIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + IdentitiesByCreatedBlockIdStddevPopulationEventIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + IdentitiesByCreatedBlockIdStddevPopulationIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + IdentitiesByCreatedBlockIdStddevPopulationIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + IdentitiesByCreatedBlockIdStddevPopulationPrimaryAccountAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PRIMARY_ACCOUNT_ASC', + IdentitiesByCreatedBlockIdStddevPopulationPrimaryAccountDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PRIMARY_ACCOUNT_DESC', + IdentitiesByCreatedBlockIdStddevPopulationSecondaryKeysFrozenAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByCreatedBlockIdStddevPopulationSecondaryKeysFrozenDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdStddevSampleBlockRangeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + IdentitiesByCreatedBlockIdStddevSampleBlockRangeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + IdentitiesByCreatedBlockIdStddevSampleCreatedAtAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + IdentitiesByCreatedBlockIdStddevSampleCreatedAtDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + IdentitiesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdStddevSampleDatetimeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + IdentitiesByCreatedBlockIdStddevSampleDatetimeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + IdentitiesByCreatedBlockIdStddevSampleDidAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DID_ASC', + IdentitiesByCreatedBlockIdStddevSampleDidDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DID_DESC', + IdentitiesByCreatedBlockIdStddevSampleEventIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + IdentitiesByCreatedBlockIdStddevSampleEventIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + IdentitiesByCreatedBlockIdStddevSampleIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + IdentitiesByCreatedBlockIdStddevSampleIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + IdentitiesByCreatedBlockIdStddevSamplePrimaryAccountAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PRIMARY_ACCOUNT_ASC', + IdentitiesByCreatedBlockIdStddevSamplePrimaryAccountDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PRIMARY_ACCOUNT_DESC', + IdentitiesByCreatedBlockIdStddevSampleSecondaryKeysFrozenAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByCreatedBlockIdStddevSampleSecondaryKeysFrozenDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdSumBlockRangeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + IdentitiesByCreatedBlockIdSumBlockRangeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + IdentitiesByCreatedBlockIdSumCreatedAtAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + IdentitiesByCreatedBlockIdSumCreatedAtDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + IdentitiesByCreatedBlockIdSumCreatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdSumCreatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdSumDatetimeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + IdentitiesByCreatedBlockIdSumDatetimeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + IdentitiesByCreatedBlockIdSumDidAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_DID_ASC', + IdentitiesByCreatedBlockIdSumDidDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_DID_DESC', + IdentitiesByCreatedBlockIdSumEventIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_ASC', + IdentitiesByCreatedBlockIdSumEventIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_DESC', + IdentitiesByCreatedBlockIdSumIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + IdentitiesByCreatedBlockIdSumIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + IdentitiesByCreatedBlockIdSumPrimaryAccountAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_PRIMARY_ACCOUNT_ASC', + IdentitiesByCreatedBlockIdSumPrimaryAccountDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_PRIMARY_ACCOUNT_DESC', + IdentitiesByCreatedBlockIdSumSecondaryKeysFrozenAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByCreatedBlockIdSumSecondaryKeysFrozenDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByCreatedBlockIdSumUpdatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdSumUpdatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + IdentitiesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + IdentitiesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + IdentitiesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + IdentitiesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdVariancePopulationDatetimeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + IdentitiesByCreatedBlockIdVariancePopulationDatetimeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + IdentitiesByCreatedBlockIdVariancePopulationDidAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DID_ASC', + IdentitiesByCreatedBlockIdVariancePopulationDidDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DID_DESC', + IdentitiesByCreatedBlockIdVariancePopulationEventIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + IdentitiesByCreatedBlockIdVariancePopulationEventIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + IdentitiesByCreatedBlockIdVariancePopulationIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + IdentitiesByCreatedBlockIdVariancePopulationIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + IdentitiesByCreatedBlockIdVariancePopulationPrimaryAccountAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PRIMARY_ACCOUNT_ASC', + IdentitiesByCreatedBlockIdVariancePopulationPrimaryAccountDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PRIMARY_ACCOUNT_DESC', + IdentitiesByCreatedBlockIdVariancePopulationSecondaryKeysFrozenAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByCreatedBlockIdVariancePopulationSecondaryKeysFrozenDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + IdentitiesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + IdentitiesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + IdentitiesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + IdentitiesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + IdentitiesByCreatedBlockIdVarianceSampleDatetimeAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + IdentitiesByCreatedBlockIdVarianceSampleDatetimeDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + IdentitiesByCreatedBlockIdVarianceSampleDidAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DID_ASC', + IdentitiesByCreatedBlockIdVarianceSampleDidDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DID_DESC', + IdentitiesByCreatedBlockIdVarianceSampleEventIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + IdentitiesByCreatedBlockIdVarianceSampleEventIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + IdentitiesByCreatedBlockIdVarianceSampleIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + IdentitiesByCreatedBlockIdVarianceSampleIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + IdentitiesByCreatedBlockIdVarianceSamplePrimaryAccountAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PRIMARY_ACCOUNT_ASC', + IdentitiesByCreatedBlockIdVarianceSamplePrimaryAccountDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PRIMARY_ACCOUNT_DESC', + IdentitiesByCreatedBlockIdVarianceSampleSecondaryKeysFrozenAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByCreatedBlockIdVarianceSampleSecondaryKeysFrozenDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + IdentitiesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'IDENTITIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdAverageBlockRangeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + IdentitiesByUpdatedBlockIdAverageBlockRangeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + IdentitiesByUpdatedBlockIdAverageCreatedAtAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + IdentitiesByUpdatedBlockIdAverageCreatedAtDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + IdentitiesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdAverageDatetimeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + IdentitiesByUpdatedBlockIdAverageDatetimeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + IdentitiesByUpdatedBlockIdAverageDidAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_DID_ASC', + IdentitiesByUpdatedBlockIdAverageDidDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_DID_DESC', + IdentitiesByUpdatedBlockIdAverageEventIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + IdentitiesByUpdatedBlockIdAverageEventIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + IdentitiesByUpdatedBlockIdAverageIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + IdentitiesByUpdatedBlockIdAverageIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + IdentitiesByUpdatedBlockIdAveragePrimaryAccountAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_PRIMARY_ACCOUNT_ASC', + IdentitiesByUpdatedBlockIdAveragePrimaryAccountDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_PRIMARY_ACCOUNT_DESC', + IdentitiesByUpdatedBlockIdAverageSecondaryKeysFrozenAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByUpdatedBlockIdAverageSecondaryKeysFrozenDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdCountAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + IdentitiesByUpdatedBlockIdCountDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + IdentitiesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + IdentitiesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + IdentitiesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + IdentitiesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + IdentitiesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdDistinctCountDatetimeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + IdentitiesByUpdatedBlockIdDistinctCountDatetimeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + IdentitiesByUpdatedBlockIdDistinctCountDidAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DID_ASC', + IdentitiesByUpdatedBlockIdDistinctCountDidDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DID_DESC', + IdentitiesByUpdatedBlockIdDistinctCountEventIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + IdentitiesByUpdatedBlockIdDistinctCountEventIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + IdentitiesByUpdatedBlockIdDistinctCountIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + IdentitiesByUpdatedBlockIdDistinctCountIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + IdentitiesByUpdatedBlockIdDistinctCountPrimaryAccountAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PRIMARY_ACCOUNT_ASC', + IdentitiesByUpdatedBlockIdDistinctCountPrimaryAccountDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PRIMARY_ACCOUNT_DESC', + IdentitiesByUpdatedBlockIdDistinctCountSecondaryKeysFrozenAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByUpdatedBlockIdDistinctCountSecondaryKeysFrozenDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdMaxBlockRangeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + IdentitiesByUpdatedBlockIdMaxBlockRangeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + IdentitiesByUpdatedBlockIdMaxCreatedAtAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + IdentitiesByUpdatedBlockIdMaxCreatedAtDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + IdentitiesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdMaxDatetimeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + IdentitiesByUpdatedBlockIdMaxDatetimeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + IdentitiesByUpdatedBlockIdMaxDidAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_DID_ASC', + IdentitiesByUpdatedBlockIdMaxDidDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_DID_DESC', + IdentitiesByUpdatedBlockIdMaxEventIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_ASC', + IdentitiesByUpdatedBlockIdMaxEventIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_DESC', + IdentitiesByUpdatedBlockIdMaxIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + IdentitiesByUpdatedBlockIdMaxIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + IdentitiesByUpdatedBlockIdMaxPrimaryAccountAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_PRIMARY_ACCOUNT_ASC', + IdentitiesByUpdatedBlockIdMaxPrimaryAccountDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_PRIMARY_ACCOUNT_DESC', + IdentitiesByUpdatedBlockIdMaxSecondaryKeysFrozenAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByUpdatedBlockIdMaxSecondaryKeysFrozenDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdMinBlockRangeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + IdentitiesByUpdatedBlockIdMinBlockRangeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + IdentitiesByUpdatedBlockIdMinCreatedAtAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + IdentitiesByUpdatedBlockIdMinCreatedAtDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + IdentitiesByUpdatedBlockIdMinCreatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdMinCreatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdMinDatetimeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + IdentitiesByUpdatedBlockIdMinDatetimeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + IdentitiesByUpdatedBlockIdMinDidAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_DID_ASC', + IdentitiesByUpdatedBlockIdMinDidDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_DID_DESC', + IdentitiesByUpdatedBlockIdMinEventIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_ASC', + IdentitiesByUpdatedBlockIdMinEventIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_DESC', + IdentitiesByUpdatedBlockIdMinIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + IdentitiesByUpdatedBlockIdMinIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + IdentitiesByUpdatedBlockIdMinPrimaryAccountAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_PRIMARY_ACCOUNT_ASC', + IdentitiesByUpdatedBlockIdMinPrimaryAccountDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_PRIMARY_ACCOUNT_DESC', + IdentitiesByUpdatedBlockIdMinSecondaryKeysFrozenAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByUpdatedBlockIdMinSecondaryKeysFrozenDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + IdentitiesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + IdentitiesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + IdentitiesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + IdentitiesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdStddevPopulationDatetimeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + IdentitiesByUpdatedBlockIdStddevPopulationDatetimeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + IdentitiesByUpdatedBlockIdStddevPopulationDidAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DID_ASC', + IdentitiesByUpdatedBlockIdStddevPopulationDidDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DID_DESC', + IdentitiesByUpdatedBlockIdStddevPopulationEventIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + IdentitiesByUpdatedBlockIdStddevPopulationEventIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + IdentitiesByUpdatedBlockIdStddevPopulationIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + IdentitiesByUpdatedBlockIdStddevPopulationIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + IdentitiesByUpdatedBlockIdStddevPopulationPrimaryAccountAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PRIMARY_ACCOUNT_ASC', + IdentitiesByUpdatedBlockIdStddevPopulationPrimaryAccountDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PRIMARY_ACCOUNT_DESC', + IdentitiesByUpdatedBlockIdStddevPopulationSecondaryKeysFrozenAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByUpdatedBlockIdStddevPopulationSecondaryKeysFrozenDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + IdentitiesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + IdentitiesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + IdentitiesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + IdentitiesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdStddevSampleDatetimeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + IdentitiesByUpdatedBlockIdStddevSampleDatetimeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + IdentitiesByUpdatedBlockIdStddevSampleDidAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DID_ASC', + IdentitiesByUpdatedBlockIdStddevSampleDidDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DID_DESC', + IdentitiesByUpdatedBlockIdStddevSampleEventIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + IdentitiesByUpdatedBlockIdStddevSampleEventIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + IdentitiesByUpdatedBlockIdStddevSampleIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + IdentitiesByUpdatedBlockIdStddevSampleIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + IdentitiesByUpdatedBlockIdStddevSamplePrimaryAccountAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PRIMARY_ACCOUNT_ASC', + IdentitiesByUpdatedBlockIdStddevSamplePrimaryAccountDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PRIMARY_ACCOUNT_DESC', + IdentitiesByUpdatedBlockIdStddevSampleSecondaryKeysFrozenAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByUpdatedBlockIdStddevSampleSecondaryKeysFrozenDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdSumBlockRangeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + IdentitiesByUpdatedBlockIdSumBlockRangeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + IdentitiesByUpdatedBlockIdSumCreatedAtAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + IdentitiesByUpdatedBlockIdSumCreatedAtDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + IdentitiesByUpdatedBlockIdSumCreatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdSumCreatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdSumDatetimeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + IdentitiesByUpdatedBlockIdSumDatetimeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + IdentitiesByUpdatedBlockIdSumDidAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_DID_ASC', + IdentitiesByUpdatedBlockIdSumDidDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_DID_DESC', + IdentitiesByUpdatedBlockIdSumEventIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_ASC', + IdentitiesByUpdatedBlockIdSumEventIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_DESC', + IdentitiesByUpdatedBlockIdSumIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + IdentitiesByUpdatedBlockIdSumIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + IdentitiesByUpdatedBlockIdSumPrimaryAccountAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_PRIMARY_ACCOUNT_ASC', + IdentitiesByUpdatedBlockIdSumPrimaryAccountDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_PRIMARY_ACCOUNT_DESC', + IdentitiesByUpdatedBlockIdSumSecondaryKeysFrozenAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByUpdatedBlockIdSumSecondaryKeysFrozenDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + IdentitiesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + IdentitiesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + IdentitiesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + IdentitiesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdVariancePopulationDatetimeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + IdentitiesByUpdatedBlockIdVariancePopulationDatetimeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + IdentitiesByUpdatedBlockIdVariancePopulationDidAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DID_ASC', + IdentitiesByUpdatedBlockIdVariancePopulationDidDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DID_DESC', + IdentitiesByUpdatedBlockIdVariancePopulationEventIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + IdentitiesByUpdatedBlockIdVariancePopulationEventIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + IdentitiesByUpdatedBlockIdVariancePopulationIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + IdentitiesByUpdatedBlockIdVariancePopulationIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + IdentitiesByUpdatedBlockIdVariancePopulationPrimaryAccountAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PRIMARY_ACCOUNT_ASC', + IdentitiesByUpdatedBlockIdVariancePopulationPrimaryAccountDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PRIMARY_ACCOUNT_DESC', + IdentitiesByUpdatedBlockIdVariancePopulationSecondaryKeysFrozenAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByUpdatedBlockIdVariancePopulationSecondaryKeysFrozenDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + IdentitiesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + IdentitiesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + IdentitiesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + IdentitiesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + IdentitiesByUpdatedBlockIdVarianceSampleDatetimeAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + IdentitiesByUpdatedBlockIdVarianceSampleDatetimeDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + IdentitiesByUpdatedBlockIdVarianceSampleDidAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DID_ASC', + IdentitiesByUpdatedBlockIdVarianceSampleDidDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DID_DESC', + IdentitiesByUpdatedBlockIdVarianceSampleEventIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + IdentitiesByUpdatedBlockIdVarianceSampleEventIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + IdentitiesByUpdatedBlockIdVarianceSampleIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + IdentitiesByUpdatedBlockIdVarianceSampleIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + IdentitiesByUpdatedBlockIdVarianceSamplePrimaryAccountAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PRIMARY_ACCOUNT_ASC', + IdentitiesByUpdatedBlockIdVarianceSamplePrimaryAccountDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PRIMARY_ACCOUNT_DESC', + IdentitiesByUpdatedBlockIdVarianceSampleSecondaryKeysFrozenAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SECONDARY_KEYS_FROZEN_ASC', + IdentitiesByUpdatedBlockIdVarianceSampleSecondaryKeysFrozenDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SECONDARY_KEYS_FROZEN_DESC', + IdentitiesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + IdentitiesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'IDENTITIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + InstructionsByCreatedBlockIdAverageBlockRangeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + InstructionsByCreatedBlockIdAverageBlockRangeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + InstructionsByCreatedBlockIdAverageCreatedAtAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + InstructionsByCreatedBlockIdAverageCreatedAtDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + InstructionsByCreatedBlockIdAverageCreatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdAverageCreatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdAverageEndAfterBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_END_AFTER_BLOCK_ASC', + InstructionsByCreatedBlockIdAverageEndAfterBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_END_AFTER_BLOCK_DESC', + InstructionsByCreatedBlockIdAverageEndBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_END_BLOCK_ASC', + InstructionsByCreatedBlockIdAverageEndBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_END_BLOCK_DESC', + InstructionsByCreatedBlockIdAverageFailureReasonAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_FAILURE_REASON_ASC', + InstructionsByCreatedBlockIdAverageFailureReasonDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_FAILURE_REASON_DESC', + InstructionsByCreatedBlockIdAverageIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + InstructionsByCreatedBlockIdAverageIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + InstructionsByCreatedBlockIdAverageMediatorsAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_MEDIATORS_ASC', + InstructionsByCreatedBlockIdAverageMediatorsDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_MEDIATORS_DESC', + InstructionsByCreatedBlockIdAverageMemoAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_MEMO_ASC', + InstructionsByCreatedBlockIdAverageMemoDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_MEMO_DESC', + InstructionsByCreatedBlockIdAverageStatusAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_ASC', + InstructionsByCreatedBlockIdAverageStatusDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_DESC', + InstructionsByCreatedBlockIdAverageTradeDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TRADE_DATE_ASC', + InstructionsByCreatedBlockIdAverageTradeDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TRADE_DATE_DESC', + InstructionsByCreatedBlockIdAverageTypeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_ASC', + InstructionsByCreatedBlockIdAverageTypeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_DESC', + InstructionsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdAverageValueDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_VALUE_DATE_ASC', + InstructionsByCreatedBlockIdAverageValueDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_VALUE_DATE_DESC', + InstructionsByCreatedBlockIdAverageVenueIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_VENUE_ID_ASC', + InstructionsByCreatedBlockIdAverageVenueIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_AVERAGE_VENUE_ID_DESC', + InstructionsByCreatedBlockIdCountAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_COUNT_ASC', + InstructionsByCreatedBlockIdCountDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_COUNT_DESC', + InstructionsByCreatedBlockIdDistinctCountBlockRangeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InstructionsByCreatedBlockIdDistinctCountBlockRangeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InstructionsByCreatedBlockIdDistinctCountCreatedAtAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + InstructionsByCreatedBlockIdDistinctCountCreatedAtDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + InstructionsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdDistinctCountEndAfterBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_END_AFTER_BLOCK_ASC', + InstructionsByCreatedBlockIdDistinctCountEndAfterBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_END_AFTER_BLOCK_DESC', + InstructionsByCreatedBlockIdDistinctCountEndBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_END_BLOCK_ASC', + InstructionsByCreatedBlockIdDistinctCountEndBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_END_BLOCK_DESC', + InstructionsByCreatedBlockIdDistinctCountFailureReasonAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FAILURE_REASON_ASC', + InstructionsByCreatedBlockIdDistinctCountFailureReasonDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FAILURE_REASON_DESC', + InstructionsByCreatedBlockIdDistinctCountIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + InstructionsByCreatedBlockIdDistinctCountIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + InstructionsByCreatedBlockIdDistinctCountMediatorsAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_ASC', + InstructionsByCreatedBlockIdDistinctCountMediatorsDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_DESC', + InstructionsByCreatedBlockIdDistinctCountMemoAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMO_ASC', + InstructionsByCreatedBlockIdDistinctCountMemoDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMO_DESC', + InstructionsByCreatedBlockIdDistinctCountStatusAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + InstructionsByCreatedBlockIdDistinctCountStatusDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + InstructionsByCreatedBlockIdDistinctCountTradeDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRADE_DATE_ASC', + InstructionsByCreatedBlockIdDistinctCountTradeDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRADE_DATE_DESC', + InstructionsByCreatedBlockIdDistinctCountTypeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + InstructionsByCreatedBlockIdDistinctCountTypeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + InstructionsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdDistinctCountValueDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VALUE_DATE_ASC', + InstructionsByCreatedBlockIdDistinctCountValueDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VALUE_DATE_DESC', + InstructionsByCreatedBlockIdDistinctCountVenueIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_ASC', + InstructionsByCreatedBlockIdDistinctCountVenueIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_DESC', + InstructionsByCreatedBlockIdMaxBlockRangeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + InstructionsByCreatedBlockIdMaxBlockRangeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + InstructionsByCreatedBlockIdMaxCreatedAtAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + InstructionsByCreatedBlockIdMaxCreatedAtDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + InstructionsByCreatedBlockIdMaxCreatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdMaxCreatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdMaxEndAfterBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_END_AFTER_BLOCK_ASC', + InstructionsByCreatedBlockIdMaxEndAfterBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_END_AFTER_BLOCK_DESC', + InstructionsByCreatedBlockIdMaxEndBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_END_BLOCK_ASC', + InstructionsByCreatedBlockIdMaxEndBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_END_BLOCK_DESC', + InstructionsByCreatedBlockIdMaxFailureReasonAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_FAILURE_REASON_ASC', + InstructionsByCreatedBlockIdMaxFailureReasonDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_FAILURE_REASON_DESC', + InstructionsByCreatedBlockIdMaxIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + InstructionsByCreatedBlockIdMaxIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + InstructionsByCreatedBlockIdMaxMediatorsAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_MEDIATORS_ASC', + InstructionsByCreatedBlockIdMaxMediatorsDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_MEDIATORS_DESC', + InstructionsByCreatedBlockIdMaxMemoAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_MEMO_ASC', + InstructionsByCreatedBlockIdMaxMemoDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_MEMO_DESC', + InstructionsByCreatedBlockIdMaxStatusAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_STATUS_ASC', + InstructionsByCreatedBlockIdMaxStatusDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_STATUS_DESC', + InstructionsByCreatedBlockIdMaxTradeDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_TRADE_DATE_ASC', + InstructionsByCreatedBlockIdMaxTradeDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_TRADE_DATE_DESC', + InstructionsByCreatedBlockIdMaxTypeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_TYPE_ASC', + InstructionsByCreatedBlockIdMaxTypeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_TYPE_DESC', + InstructionsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdMaxValueDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_VALUE_DATE_ASC', + InstructionsByCreatedBlockIdMaxValueDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_VALUE_DATE_DESC', + InstructionsByCreatedBlockIdMaxVenueIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_VENUE_ID_ASC', + InstructionsByCreatedBlockIdMaxVenueIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MAX_VENUE_ID_DESC', + InstructionsByCreatedBlockIdMinBlockRangeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + InstructionsByCreatedBlockIdMinBlockRangeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + InstructionsByCreatedBlockIdMinCreatedAtAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + InstructionsByCreatedBlockIdMinCreatedAtDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + InstructionsByCreatedBlockIdMinCreatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdMinCreatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdMinEndAfterBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_END_AFTER_BLOCK_ASC', + InstructionsByCreatedBlockIdMinEndAfterBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_END_AFTER_BLOCK_DESC', + InstructionsByCreatedBlockIdMinEndBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_END_BLOCK_ASC', + InstructionsByCreatedBlockIdMinEndBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_END_BLOCK_DESC', + InstructionsByCreatedBlockIdMinFailureReasonAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_FAILURE_REASON_ASC', + InstructionsByCreatedBlockIdMinFailureReasonDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_FAILURE_REASON_DESC', + InstructionsByCreatedBlockIdMinIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + InstructionsByCreatedBlockIdMinIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + InstructionsByCreatedBlockIdMinMediatorsAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_MEDIATORS_ASC', + InstructionsByCreatedBlockIdMinMediatorsDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_MEDIATORS_DESC', + InstructionsByCreatedBlockIdMinMemoAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_MEMO_ASC', + InstructionsByCreatedBlockIdMinMemoDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_MEMO_DESC', + InstructionsByCreatedBlockIdMinStatusAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_STATUS_ASC', + InstructionsByCreatedBlockIdMinStatusDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_STATUS_DESC', + InstructionsByCreatedBlockIdMinTradeDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_TRADE_DATE_ASC', + InstructionsByCreatedBlockIdMinTradeDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_TRADE_DATE_DESC', + InstructionsByCreatedBlockIdMinTypeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_TYPE_ASC', + InstructionsByCreatedBlockIdMinTypeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_TYPE_DESC', + InstructionsByCreatedBlockIdMinUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdMinUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdMinValueDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_VALUE_DATE_ASC', + InstructionsByCreatedBlockIdMinValueDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_VALUE_DATE_DESC', + InstructionsByCreatedBlockIdMinVenueIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_VENUE_ID_ASC', + InstructionsByCreatedBlockIdMinVenueIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_MIN_VENUE_ID_DESC', + InstructionsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InstructionsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InstructionsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + InstructionsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + InstructionsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdStddevPopulationEndAfterBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_END_AFTER_BLOCK_ASC', + InstructionsByCreatedBlockIdStddevPopulationEndAfterBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_END_AFTER_BLOCK_DESC', + InstructionsByCreatedBlockIdStddevPopulationEndBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_END_BLOCK_ASC', + InstructionsByCreatedBlockIdStddevPopulationEndBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_END_BLOCK_DESC', + InstructionsByCreatedBlockIdStddevPopulationFailureReasonAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FAILURE_REASON_ASC', + InstructionsByCreatedBlockIdStddevPopulationFailureReasonDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FAILURE_REASON_DESC', + InstructionsByCreatedBlockIdStddevPopulationIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + InstructionsByCreatedBlockIdStddevPopulationIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + InstructionsByCreatedBlockIdStddevPopulationMediatorsAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_ASC', + InstructionsByCreatedBlockIdStddevPopulationMediatorsDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_DESC', + InstructionsByCreatedBlockIdStddevPopulationMemoAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMO_ASC', + InstructionsByCreatedBlockIdStddevPopulationMemoDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMO_DESC', + InstructionsByCreatedBlockIdStddevPopulationStatusAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + InstructionsByCreatedBlockIdStddevPopulationStatusDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + InstructionsByCreatedBlockIdStddevPopulationTradeDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRADE_DATE_ASC', + InstructionsByCreatedBlockIdStddevPopulationTradeDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRADE_DATE_DESC', + InstructionsByCreatedBlockIdStddevPopulationTypeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + InstructionsByCreatedBlockIdStddevPopulationTypeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + InstructionsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdStddevPopulationValueDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VALUE_DATE_ASC', + InstructionsByCreatedBlockIdStddevPopulationValueDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VALUE_DATE_DESC', + InstructionsByCreatedBlockIdStddevPopulationVenueIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_ASC', + InstructionsByCreatedBlockIdStddevPopulationVenueIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_DESC', + InstructionsByCreatedBlockIdStddevSampleBlockRangeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InstructionsByCreatedBlockIdStddevSampleBlockRangeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InstructionsByCreatedBlockIdStddevSampleCreatedAtAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + InstructionsByCreatedBlockIdStddevSampleCreatedAtDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + InstructionsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdStddevSampleEndAfterBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_END_AFTER_BLOCK_ASC', + InstructionsByCreatedBlockIdStddevSampleEndAfterBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_END_AFTER_BLOCK_DESC', + InstructionsByCreatedBlockIdStddevSampleEndBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_END_BLOCK_ASC', + InstructionsByCreatedBlockIdStddevSampleEndBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_END_BLOCK_DESC', + InstructionsByCreatedBlockIdStddevSampleFailureReasonAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FAILURE_REASON_ASC', + InstructionsByCreatedBlockIdStddevSampleFailureReasonDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FAILURE_REASON_DESC', + InstructionsByCreatedBlockIdStddevSampleIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + InstructionsByCreatedBlockIdStddevSampleIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + InstructionsByCreatedBlockIdStddevSampleMediatorsAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_ASC', + InstructionsByCreatedBlockIdStddevSampleMediatorsDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_DESC', + InstructionsByCreatedBlockIdStddevSampleMemoAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_ASC', + InstructionsByCreatedBlockIdStddevSampleMemoDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_DESC', + InstructionsByCreatedBlockIdStddevSampleStatusAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + InstructionsByCreatedBlockIdStddevSampleStatusDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + InstructionsByCreatedBlockIdStddevSampleTradeDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRADE_DATE_ASC', + InstructionsByCreatedBlockIdStddevSampleTradeDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRADE_DATE_DESC', + InstructionsByCreatedBlockIdStddevSampleTypeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + InstructionsByCreatedBlockIdStddevSampleTypeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + InstructionsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdStddevSampleValueDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_DATE_ASC', + InstructionsByCreatedBlockIdStddevSampleValueDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_DATE_DESC', + InstructionsByCreatedBlockIdStddevSampleVenueIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + InstructionsByCreatedBlockIdStddevSampleVenueIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + InstructionsByCreatedBlockIdSumBlockRangeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + InstructionsByCreatedBlockIdSumBlockRangeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + InstructionsByCreatedBlockIdSumCreatedAtAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + InstructionsByCreatedBlockIdSumCreatedAtDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + InstructionsByCreatedBlockIdSumCreatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdSumCreatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdSumEndAfterBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_END_AFTER_BLOCK_ASC', + InstructionsByCreatedBlockIdSumEndAfterBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_END_AFTER_BLOCK_DESC', + InstructionsByCreatedBlockIdSumEndBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_END_BLOCK_ASC', + InstructionsByCreatedBlockIdSumEndBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_END_BLOCK_DESC', + InstructionsByCreatedBlockIdSumFailureReasonAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_FAILURE_REASON_ASC', + InstructionsByCreatedBlockIdSumFailureReasonDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_FAILURE_REASON_DESC', + InstructionsByCreatedBlockIdSumIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + InstructionsByCreatedBlockIdSumIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + InstructionsByCreatedBlockIdSumMediatorsAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_MEDIATORS_ASC', + InstructionsByCreatedBlockIdSumMediatorsDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_MEDIATORS_DESC', + InstructionsByCreatedBlockIdSumMemoAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_MEMO_ASC', + InstructionsByCreatedBlockIdSumMemoDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_MEMO_DESC', + InstructionsByCreatedBlockIdSumStatusAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_STATUS_ASC', + InstructionsByCreatedBlockIdSumStatusDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_STATUS_DESC', + InstructionsByCreatedBlockIdSumTradeDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_TRADE_DATE_ASC', + InstructionsByCreatedBlockIdSumTradeDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_TRADE_DATE_DESC', + InstructionsByCreatedBlockIdSumTypeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_TYPE_ASC', + InstructionsByCreatedBlockIdSumTypeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_TYPE_DESC', + InstructionsByCreatedBlockIdSumUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdSumUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdSumValueDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_VALUE_DATE_ASC', + InstructionsByCreatedBlockIdSumValueDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_VALUE_DATE_DESC', + InstructionsByCreatedBlockIdSumVenueIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_VENUE_ID_ASC', + InstructionsByCreatedBlockIdSumVenueIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_SUM_VENUE_ID_DESC', + InstructionsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InstructionsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InstructionsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + InstructionsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + InstructionsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdVariancePopulationEndAfterBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_END_AFTER_BLOCK_ASC', + InstructionsByCreatedBlockIdVariancePopulationEndAfterBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_END_AFTER_BLOCK_DESC', + InstructionsByCreatedBlockIdVariancePopulationEndBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_END_BLOCK_ASC', + InstructionsByCreatedBlockIdVariancePopulationEndBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_END_BLOCK_DESC', + InstructionsByCreatedBlockIdVariancePopulationFailureReasonAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FAILURE_REASON_ASC', + InstructionsByCreatedBlockIdVariancePopulationFailureReasonDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FAILURE_REASON_DESC', + InstructionsByCreatedBlockIdVariancePopulationIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + InstructionsByCreatedBlockIdVariancePopulationIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + InstructionsByCreatedBlockIdVariancePopulationMediatorsAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_ASC', + InstructionsByCreatedBlockIdVariancePopulationMediatorsDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_DESC', + InstructionsByCreatedBlockIdVariancePopulationMemoAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_ASC', + InstructionsByCreatedBlockIdVariancePopulationMemoDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_DESC', + InstructionsByCreatedBlockIdVariancePopulationStatusAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + InstructionsByCreatedBlockIdVariancePopulationStatusDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + InstructionsByCreatedBlockIdVariancePopulationTradeDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRADE_DATE_ASC', + InstructionsByCreatedBlockIdVariancePopulationTradeDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRADE_DATE_DESC', + InstructionsByCreatedBlockIdVariancePopulationTypeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + InstructionsByCreatedBlockIdVariancePopulationTypeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + InstructionsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdVariancePopulationValueDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_DATE_ASC', + InstructionsByCreatedBlockIdVariancePopulationValueDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_DATE_DESC', + InstructionsByCreatedBlockIdVariancePopulationVenueIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + InstructionsByCreatedBlockIdVariancePopulationVenueIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + InstructionsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InstructionsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InstructionsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + InstructionsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + InstructionsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdVarianceSampleEndAfterBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_END_AFTER_BLOCK_ASC', + InstructionsByCreatedBlockIdVarianceSampleEndAfterBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_END_AFTER_BLOCK_DESC', + InstructionsByCreatedBlockIdVarianceSampleEndBlockAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_END_BLOCK_ASC', + InstructionsByCreatedBlockIdVarianceSampleEndBlockDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_END_BLOCK_DESC', + InstructionsByCreatedBlockIdVarianceSampleFailureReasonAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FAILURE_REASON_ASC', + InstructionsByCreatedBlockIdVarianceSampleFailureReasonDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FAILURE_REASON_DESC', + InstructionsByCreatedBlockIdVarianceSampleIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + InstructionsByCreatedBlockIdVarianceSampleIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + InstructionsByCreatedBlockIdVarianceSampleMediatorsAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_ASC', + InstructionsByCreatedBlockIdVarianceSampleMediatorsDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_DESC', + InstructionsByCreatedBlockIdVarianceSampleMemoAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_ASC', + InstructionsByCreatedBlockIdVarianceSampleMemoDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_DESC', + InstructionsByCreatedBlockIdVarianceSampleStatusAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + InstructionsByCreatedBlockIdVarianceSampleStatusDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + InstructionsByCreatedBlockIdVarianceSampleTradeDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRADE_DATE_ASC', + InstructionsByCreatedBlockIdVarianceSampleTradeDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRADE_DATE_DESC', + InstructionsByCreatedBlockIdVarianceSampleTypeAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + InstructionsByCreatedBlockIdVarianceSampleTypeDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + InstructionsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionsByCreatedBlockIdVarianceSampleValueDateAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_DATE_ASC', + InstructionsByCreatedBlockIdVarianceSampleValueDateDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_DATE_DESC', + InstructionsByCreatedBlockIdVarianceSampleVenueIdAsc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + InstructionsByCreatedBlockIdVarianceSampleVenueIdDesc = 'INSTRUCTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + InstructionsByUpdatedBlockIdAverageBlockRangeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + InstructionsByUpdatedBlockIdAverageBlockRangeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + InstructionsByUpdatedBlockIdAverageCreatedAtAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + InstructionsByUpdatedBlockIdAverageCreatedAtDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + InstructionsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdAverageEndAfterBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_END_AFTER_BLOCK_ASC', + InstructionsByUpdatedBlockIdAverageEndAfterBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_END_AFTER_BLOCK_DESC', + InstructionsByUpdatedBlockIdAverageEndBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_END_BLOCK_ASC', + InstructionsByUpdatedBlockIdAverageEndBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_END_BLOCK_DESC', + InstructionsByUpdatedBlockIdAverageFailureReasonAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_FAILURE_REASON_ASC', + InstructionsByUpdatedBlockIdAverageFailureReasonDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_FAILURE_REASON_DESC', + InstructionsByUpdatedBlockIdAverageIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + InstructionsByUpdatedBlockIdAverageIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + InstructionsByUpdatedBlockIdAverageMediatorsAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_MEDIATORS_ASC', + InstructionsByUpdatedBlockIdAverageMediatorsDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_MEDIATORS_DESC', + InstructionsByUpdatedBlockIdAverageMemoAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_MEMO_ASC', + InstructionsByUpdatedBlockIdAverageMemoDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_MEMO_DESC', + InstructionsByUpdatedBlockIdAverageStatusAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_ASC', + InstructionsByUpdatedBlockIdAverageStatusDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_DESC', + InstructionsByUpdatedBlockIdAverageTradeDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TRADE_DATE_ASC', + InstructionsByUpdatedBlockIdAverageTradeDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TRADE_DATE_DESC', + InstructionsByUpdatedBlockIdAverageTypeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_ASC', + InstructionsByUpdatedBlockIdAverageTypeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_DESC', + InstructionsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdAverageValueDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_VALUE_DATE_ASC', + InstructionsByUpdatedBlockIdAverageValueDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_VALUE_DATE_DESC', + InstructionsByUpdatedBlockIdAverageVenueIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_VENUE_ID_ASC', + InstructionsByUpdatedBlockIdAverageVenueIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_VENUE_ID_DESC', + InstructionsByUpdatedBlockIdCountAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + InstructionsByUpdatedBlockIdCountDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + InstructionsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InstructionsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InstructionsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + InstructionsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + InstructionsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdDistinctCountEndAfterBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_END_AFTER_BLOCK_ASC', + InstructionsByUpdatedBlockIdDistinctCountEndAfterBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_END_AFTER_BLOCK_DESC', + InstructionsByUpdatedBlockIdDistinctCountEndBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_END_BLOCK_ASC', + InstructionsByUpdatedBlockIdDistinctCountEndBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_END_BLOCK_DESC', + InstructionsByUpdatedBlockIdDistinctCountFailureReasonAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FAILURE_REASON_ASC', + InstructionsByUpdatedBlockIdDistinctCountFailureReasonDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FAILURE_REASON_DESC', + InstructionsByUpdatedBlockIdDistinctCountIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + InstructionsByUpdatedBlockIdDistinctCountIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + InstructionsByUpdatedBlockIdDistinctCountMediatorsAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_ASC', + InstructionsByUpdatedBlockIdDistinctCountMediatorsDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEDIATORS_DESC', + InstructionsByUpdatedBlockIdDistinctCountMemoAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMO_ASC', + InstructionsByUpdatedBlockIdDistinctCountMemoDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMO_DESC', + InstructionsByUpdatedBlockIdDistinctCountStatusAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + InstructionsByUpdatedBlockIdDistinctCountStatusDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + InstructionsByUpdatedBlockIdDistinctCountTradeDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRADE_DATE_ASC', + InstructionsByUpdatedBlockIdDistinctCountTradeDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRADE_DATE_DESC', + InstructionsByUpdatedBlockIdDistinctCountTypeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + InstructionsByUpdatedBlockIdDistinctCountTypeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + InstructionsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdDistinctCountValueDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VALUE_DATE_ASC', + InstructionsByUpdatedBlockIdDistinctCountValueDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VALUE_DATE_DESC', + InstructionsByUpdatedBlockIdDistinctCountVenueIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_ASC', + InstructionsByUpdatedBlockIdDistinctCountVenueIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_DESC', + InstructionsByUpdatedBlockIdMaxBlockRangeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + InstructionsByUpdatedBlockIdMaxBlockRangeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + InstructionsByUpdatedBlockIdMaxCreatedAtAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + InstructionsByUpdatedBlockIdMaxCreatedAtDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + InstructionsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdMaxEndAfterBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_END_AFTER_BLOCK_ASC', + InstructionsByUpdatedBlockIdMaxEndAfterBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_END_AFTER_BLOCK_DESC', + InstructionsByUpdatedBlockIdMaxEndBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_END_BLOCK_ASC', + InstructionsByUpdatedBlockIdMaxEndBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_END_BLOCK_DESC', + InstructionsByUpdatedBlockIdMaxFailureReasonAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_FAILURE_REASON_ASC', + InstructionsByUpdatedBlockIdMaxFailureReasonDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_FAILURE_REASON_DESC', + InstructionsByUpdatedBlockIdMaxIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + InstructionsByUpdatedBlockIdMaxIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + InstructionsByUpdatedBlockIdMaxMediatorsAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_MEDIATORS_ASC', + InstructionsByUpdatedBlockIdMaxMediatorsDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_MEDIATORS_DESC', + InstructionsByUpdatedBlockIdMaxMemoAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_MEMO_ASC', + InstructionsByUpdatedBlockIdMaxMemoDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_MEMO_DESC', + InstructionsByUpdatedBlockIdMaxStatusAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_STATUS_ASC', + InstructionsByUpdatedBlockIdMaxStatusDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_STATUS_DESC', + InstructionsByUpdatedBlockIdMaxTradeDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_TRADE_DATE_ASC', + InstructionsByUpdatedBlockIdMaxTradeDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_TRADE_DATE_DESC', + InstructionsByUpdatedBlockIdMaxTypeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_TYPE_ASC', + InstructionsByUpdatedBlockIdMaxTypeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_TYPE_DESC', + InstructionsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdMaxValueDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_VALUE_DATE_ASC', + InstructionsByUpdatedBlockIdMaxValueDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_VALUE_DATE_DESC', + InstructionsByUpdatedBlockIdMaxVenueIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_VENUE_ID_ASC', + InstructionsByUpdatedBlockIdMaxVenueIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MAX_VENUE_ID_DESC', + InstructionsByUpdatedBlockIdMinBlockRangeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + InstructionsByUpdatedBlockIdMinBlockRangeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + InstructionsByUpdatedBlockIdMinCreatedAtAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + InstructionsByUpdatedBlockIdMinCreatedAtDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + InstructionsByUpdatedBlockIdMinCreatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdMinCreatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdMinEndAfterBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_END_AFTER_BLOCK_ASC', + InstructionsByUpdatedBlockIdMinEndAfterBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_END_AFTER_BLOCK_DESC', + InstructionsByUpdatedBlockIdMinEndBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_END_BLOCK_ASC', + InstructionsByUpdatedBlockIdMinEndBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_END_BLOCK_DESC', + InstructionsByUpdatedBlockIdMinFailureReasonAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_FAILURE_REASON_ASC', + InstructionsByUpdatedBlockIdMinFailureReasonDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_FAILURE_REASON_DESC', + InstructionsByUpdatedBlockIdMinIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + InstructionsByUpdatedBlockIdMinIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + InstructionsByUpdatedBlockIdMinMediatorsAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_MEDIATORS_ASC', + InstructionsByUpdatedBlockIdMinMediatorsDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_MEDIATORS_DESC', + InstructionsByUpdatedBlockIdMinMemoAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_MEMO_ASC', + InstructionsByUpdatedBlockIdMinMemoDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_MEMO_DESC', + InstructionsByUpdatedBlockIdMinStatusAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_STATUS_ASC', + InstructionsByUpdatedBlockIdMinStatusDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_STATUS_DESC', + InstructionsByUpdatedBlockIdMinTradeDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_TRADE_DATE_ASC', + InstructionsByUpdatedBlockIdMinTradeDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_TRADE_DATE_DESC', + InstructionsByUpdatedBlockIdMinTypeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_TYPE_ASC', + InstructionsByUpdatedBlockIdMinTypeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_TYPE_DESC', + InstructionsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdMinValueDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_VALUE_DATE_ASC', + InstructionsByUpdatedBlockIdMinValueDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_VALUE_DATE_DESC', + InstructionsByUpdatedBlockIdMinVenueIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_VENUE_ID_ASC', + InstructionsByUpdatedBlockIdMinVenueIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_MIN_VENUE_ID_DESC', + InstructionsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InstructionsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InstructionsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + InstructionsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + InstructionsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdStddevPopulationEndAfterBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_END_AFTER_BLOCK_ASC', + InstructionsByUpdatedBlockIdStddevPopulationEndAfterBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_END_AFTER_BLOCK_DESC', + InstructionsByUpdatedBlockIdStddevPopulationEndBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_END_BLOCK_ASC', + InstructionsByUpdatedBlockIdStddevPopulationEndBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_END_BLOCK_DESC', + InstructionsByUpdatedBlockIdStddevPopulationFailureReasonAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FAILURE_REASON_ASC', + InstructionsByUpdatedBlockIdStddevPopulationFailureReasonDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FAILURE_REASON_DESC', + InstructionsByUpdatedBlockIdStddevPopulationIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + InstructionsByUpdatedBlockIdStddevPopulationIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + InstructionsByUpdatedBlockIdStddevPopulationMediatorsAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_ASC', + InstructionsByUpdatedBlockIdStddevPopulationMediatorsDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEDIATORS_DESC', + InstructionsByUpdatedBlockIdStddevPopulationMemoAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMO_ASC', + InstructionsByUpdatedBlockIdStddevPopulationMemoDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMO_DESC', + InstructionsByUpdatedBlockIdStddevPopulationStatusAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + InstructionsByUpdatedBlockIdStddevPopulationStatusDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + InstructionsByUpdatedBlockIdStddevPopulationTradeDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRADE_DATE_ASC', + InstructionsByUpdatedBlockIdStddevPopulationTradeDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRADE_DATE_DESC', + InstructionsByUpdatedBlockIdStddevPopulationTypeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + InstructionsByUpdatedBlockIdStddevPopulationTypeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + InstructionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdStddevPopulationValueDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VALUE_DATE_ASC', + InstructionsByUpdatedBlockIdStddevPopulationValueDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VALUE_DATE_DESC', + InstructionsByUpdatedBlockIdStddevPopulationVenueIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_ASC', + InstructionsByUpdatedBlockIdStddevPopulationVenueIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_DESC', + InstructionsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InstructionsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InstructionsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + InstructionsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + InstructionsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdStddevSampleEndAfterBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_END_AFTER_BLOCK_ASC', + InstructionsByUpdatedBlockIdStddevSampleEndAfterBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_END_AFTER_BLOCK_DESC', + InstructionsByUpdatedBlockIdStddevSampleEndBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_END_BLOCK_ASC', + InstructionsByUpdatedBlockIdStddevSampleEndBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_END_BLOCK_DESC', + InstructionsByUpdatedBlockIdStddevSampleFailureReasonAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FAILURE_REASON_ASC', + InstructionsByUpdatedBlockIdStddevSampleFailureReasonDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FAILURE_REASON_DESC', + InstructionsByUpdatedBlockIdStddevSampleIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + InstructionsByUpdatedBlockIdStddevSampleIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + InstructionsByUpdatedBlockIdStddevSampleMediatorsAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_ASC', + InstructionsByUpdatedBlockIdStddevSampleMediatorsDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEDIATORS_DESC', + InstructionsByUpdatedBlockIdStddevSampleMemoAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_ASC', + InstructionsByUpdatedBlockIdStddevSampleMemoDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_DESC', + InstructionsByUpdatedBlockIdStddevSampleStatusAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + InstructionsByUpdatedBlockIdStddevSampleStatusDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + InstructionsByUpdatedBlockIdStddevSampleTradeDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRADE_DATE_ASC', + InstructionsByUpdatedBlockIdStddevSampleTradeDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRADE_DATE_DESC', + InstructionsByUpdatedBlockIdStddevSampleTypeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + InstructionsByUpdatedBlockIdStddevSampleTypeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + InstructionsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdStddevSampleValueDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_DATE_ASC', + InstructionsByUpdatedBlockIdStddevSampleValueDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_DATE_DESC', + InstructionsByUpdatedBlockIdStddevSampleVenueIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + InstructionsByUpdatedBlockIdStddevSampleVenueIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + InstructionsByUpdatedBlockIdSumBlockRangeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + InstructionsByUpdatedBlockIdSumBlockRangeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + InstructionsByUpdatedBlockIdSumCreatedAtAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + InstructionsByUpdatedBlockIdSumCreatedAtDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + InstructionsByUpdatedBlockIdSumCreatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdSumCreatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdSumEndAfterBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_END_AFTER_BLOCK_ASC', + InstructionsByUpdatedBlockIdSumEndAfterBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_END_AFTER_BLOCK_DESC', + InstructionsByUpdatedBlockIdSumEndBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_END_BLOCK_ASC', + InstructionsByUpdatedBlockIdSumEndBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_END_BLOCK_DESC', + InstructionsByUpdatedBlockIdSumFailureReasonAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_FAILURE_REASON_ASC', + InstructionsByUpdatedBlockIdSumFailureReasonDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_FAILURE_REASON_DESC', + InstructionsByUpdatedBlockIdSumIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + InstructionsByUpdatedBlockIdSumIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + InstructionsByUpdatedBlockIdSumMediatorsAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_MEDIATORS_ASC', + InstructionsByUpdatedBlockIdSumMediatorsDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_MEDIATORS_DESC', + InstructionsByUpdatedBlockIdSumMemoAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_MEMO_ASC', + InstructionsByUpdatedBlockIdSumMemoDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_MEMO_DESC', + InstructionsByUpdatedBlockIdSumStatusAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_STATUS_ASC', + InstructionsByUpdatedBlockIdSumStatusDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_STATUS_DESC', + InstructionsByUpdatedBlockIdSumTradeDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_TRADE_DATE_ASC', + InstructionsByUpdatedBlockIdSumTradeDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_TRADE_DATE_DESC', + InstructionsByUpdatedBlockIdSumTypeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_TYPE_ASC', + InstructionsByUpdatedBlockIdSumTypeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_TYPE_DESC', + InstructionsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdSumValueDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_VALUE_DATE_ASC', + InstructionsByUpdatedBlockIdSumValueDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_VALUE_DATE_DESC', + InstructionsByUpdatedBlockIdSumVenueIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_VENUE_ID_ASC', + InstructionsByUpdatedBlockIdSumVenueIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_SUM_VENUE_ID_DESC', + InstructionsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InstructionsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InstructionsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + InstructionsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + InstructionsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdVariancePopulationEndAfterBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_END_AFTER_BLOCK_ASC', + InstructionsByUpdatedBlockIdVariancePopulationEndAfterBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_END_AFTER_BLOCK_DESC', + InstructionsByUpdatedBlockIdVariancePopulationEndBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_END_BLOCK_ASC', + InstructionsByUpdatedBlockIdVariancePopulationEndBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_END_BLOCK_DESC', + InstructionsByUpdatedBlockIdVariancePopulationFailureReasonAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FAILURE_REASON_ASC', + InstructionsByUpdatedBlockIdVariancePopulationFailureReasonDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FAILURE_REASON_DESC', + InstructionsByUpdatedBlockIdVariancePopulationIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + InstructionsByUpdatedBlockIdVariancePopulationIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + InstructionsByUpdatedBlockIdVariancePopulationMediatorsAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_ASC', + InstructionsByUpdatedBlockIdVariancePopulationMediatorsDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEDIATORS_DESC', + InstructionsByUpdatedBlockIdVariancePopulationMemoAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_ASC', + InstructionsByUpdatedBlockIdVariancePopulationMemoDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_DESC', + InstructionsByUpdatedBlockIdVariancePopulationStatusAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + InstructionsByUpdatedBlockIdVariancePopulationStatusDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + InstructionsByUpdatedBlockIdVariancePopulationTradeDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRADE_DATE_ASC', + InstructionsByUpdatedBlockIdVariancePopulationTradeDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRADE_DATE_DESC', + InstructionsByUpdatedBlockIdVariancePopulationTypeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + InstructionsByUpdatedBlockIdVariancePopulationTypeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + InstructionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdVariancePopulationValueDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_DATE_ASC', + InstructionsByUpdatedBlockIdVariancePopulationValueDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_DATE_DESC', + InstructionsByUpdatedBlockIdVariancePopulationVenueIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + InstructionsByUpdatedBlockIdVariancePopulationVenueIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + InstructionsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InstructionsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InstructionsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + InstructionsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + InstructionsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdVarianceSampleEndAfterBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_END_AFTER_BLOCK_ASC', + InstructionsByUpdatedBlockIdVarianceSampleEndAfterBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_END_AFTER_BLOCK_DESC', + InstructionsByUpdatedBlockIdVarianceSampleEndBlockAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_END_BLOCK_ASC', + InstructionsByUpdatedBlockIdVarianceSampleEndBlockDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_END_BLOCK_DESC', + InstructionsByUpdatedBlockIdVarianceSampleFailureReasonAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FAILURE_REASON_ASC', + InstructionsByUpdatedBlockIdVarianceSampleFailureReasonDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FAILURE_REASON_DESC', + InstructionsByUpdatedBlockIdVarianceSampleIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + InstructionsByUpdatedBlockIdVarianceSampleIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + InstructionsByUpdatedBlockIdVarianceSampleMediatorsAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_ASC', + InstructionsByUpdatedBlockIdVarianceSampleMediatorsDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEDIATORS_DESC', + InstructionsByUpdatedBlockIdVarianceSampleMemoAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_ASC', + InstructionsByUpdatedBlockIdVarianceSampleMemoDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_DESC', + InstructionsByUpdatedBlockIdVarianceSampleStatusAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + InstructionsByUpdatedBlockIdVarianceSampleStatusDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + InstructionsByUpdatedBlockIdVarianceSampleTradeDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRADE_DATE_ASC', + InstructionsByUpdatedBlockIdVarianceSampleTradeDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRADE_DATE_DESC', + InstructionsByUpdatedBlockIdVarianceSampleTypeAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + InstructionsByUpdatedBlockIdVarianceSampleTypeDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + InstructionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionsByUpdatedBlockIdVarianceSampleValueDateAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_DATE_ASC', + InstructionsByUpdatedBlockIdVarianceSampleValueDateDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_DATE_DESC', + InstructionsByUpdatedBlockIdVarianceSampleVenueIdAsc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + InstructionsByUpdatedBlockIdVarianceSampleVenueIdDesc = 'INSTRUCTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + InstructionAffirmationsByCreatedBlockIdAverageBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + InstructionAffirmationsByCreatedBlockIdAverageBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + InstructionAffirmationsByCreatedBlockIdAverageCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + InstructionAffirmationsByCreatedBlockIdAverageCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + InstructionAffirmationsByCreatedBlockIdAverageCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdAverageCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdAverageExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXPIRY_ASC', + InstructionAffirmationsByCreatedBlockIdAverageExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXPIRY_DESC', + InstructionAffirmationsByCreatedBlockIdAverageIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ASC', + InstructionAffirmationsByCreatedBlockIdAverageIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_DESC', + InstructionAffirmationsByCreatedBlockIdAverageIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + InstructionAffirmationsByCreatedBlockIdAverageIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + InstructionAffirmationsByCreatedBlockIdAverageInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC', + InstructionAffirmationsByCreatedBlockIdAverageInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC', + InstructionAffirmationsByCreatedBlockIdAverageIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByCreatedBlockIdAverageIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByCreatedBlockIdAverageIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_IS_MEDIATOR_ASC', + InstructionAffirmationsByCreatedBlockIdAverageIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_IS_MEDIATOR_DESC', + InstructionAffirmationsByCreatedBlockIdAverageOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByCreatedBlockIdAverageOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByCreatedBlockIdAveragePartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_PARTY_ID_ASC', + InstructionAffirmationsByCreatedBlockIdAveragePartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_PARTY_ID_DESC', + InstructionAffirmationsByCreatedBlockIdAveragePortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_PORTFOLIOS_ASC', + InstructionAffirmationsByCreatedBlockIdAveragePortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_PORTFOLIOS_DESC', + InstructionAffirmationsByCreatedBlockIdAverageStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_ASC', + InstructionAffirmationsByCreatedBlockIdAverageStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_DESC', + InstructionAffirmationsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdCountAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_COUNT_ASC', + InstructionAffirmationsByCreatedBlockIdCountDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_COUNT_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_MEDIATOR_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_MEDIATOR_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PARTY_ID_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PARTY_ID_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + InstructionAffirmationsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMaxBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + InstructionAffirmationsByCreatedBlockIdMaxBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + InstructionAffirmationsByCreatedBlockIdMaxCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + InstructionAffirmationsByCreatedBlockIdMaxCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + InstructionAffirmationsByCreatedBlockIdMaxCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMaxCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMaxExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_EXPIRY_ASC', + InstructionAffirmationsByCreatedBlockIdMaxExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_EXPIRY_DESC', + InstructionAffirmationsByCreatedBlockIdMaxIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ASC', + InstructionAffirmationsByCreatedBlockIdMaxIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_DESC', + InstructionAffirmationsByCreatedBlockIdMaxIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMaxIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMaxInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMaxInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMaxIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByCreatedBlockIdMaxIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByCreatedBlockIdMaxIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_IS_MEDIATOR_ASC', + InstructionAffirmationsByCreatedBlockIdMaxIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_IS_MEDIATOR_DESC', + InstructionAffirmationsByCreatedBlockIdMaxOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMaxOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMaxPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_PARTY_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMaxPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_PARTY_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMaxPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_PORTFOLIOS_ASC', + InstructionAffirmationsByCreatedBlockIdMaxPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_PORTFOLIOS_DESC', + InstructionAffirmationsByCreatedBlockIdMaxStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_STATUS_ASC', + InstructionAffirmationsByCreatedBlockIdMaxStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_STATUS_DESC', + InstructionAffirmationsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMinBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + InstructionAffirmationsByCreatedBlockIdMinBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + InstructionAffirmationsByCreatedBlockIdMinCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + InstructionAffirmationsByCreatedBlockIdMinCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + InstructionAffirmationsByCreatedBlockIdMinCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMinCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMinExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_EXPIRY_ASC', + InstructionAffirmationsByCreatedBlockIdMinExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_EXPIRY_DESC', + InstructionAffirmationsByCreatedBlockIdMinIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ASC', + InstructionAffirmationsByCreatedBlockIdMinIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_DESC', + InstructionAffirmationsByCreatedBlockIdMinIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMinIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMinInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMinInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMinIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByCreatedBlockIdMinIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByCreatedBlockIdMinIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_IS_MEDIATOR_ASC', + InstructionAffirmationsByCreatedBlockIdMinIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_IS_MEDIATOR_DESC', + InstructionAffirmationsByCreatedBlockIdMinOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMinOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMinPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_PARTY_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMinPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_PARTY_ID_DESC', + InstructionAffirmationsByCreatedBlockIdMinPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_PORTFOLIOS_ASC', + InstructionAffirmationsByCreatedBlockIdMinPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_PORTFOLIOS_DESC', + InstructionAffirmationsByCreatedBlockIdMinStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_STATUS_ASC', + InstructionAffirmationsByCreatedBlockIdMinStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_STATUS_DESC', + InstructionAffirmationsByCreatedBlockIdMinUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdMinUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_MEDIATOR_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_MEDIATOR_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PARTY_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PARTY_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_MEDIATOR_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_MEDIATOR_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSamplePartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PARTY_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSamplePartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PARTY_ID_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSamplePortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSamplePortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + InstructionAffirmationsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdSumBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + InstructionAffirmationsByCreatedBlockIdSumBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + InstructionAffirmationsByCreatedBlockIdSumCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + InstructionAffirmationsByCreatedBlockIdSumCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + InstructionAffirmationsByCreatedBlockIdSumCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdSumCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdSumExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_EXPIRY_ASC', + InstructionAffirmationsByCreatedBlockIdSumExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_EXPIRY_DESC', + InstructionAffirmationsByCreatedBlockIdSumIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ASC', + InstructionAffirmationsByCreatedBlockIdSumIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_DESC', + InstructionAffirmationsByCreatedBlockIdSumIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + InstructionAffirmationsByCreatedBlockIdSumIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + InstructionAffirmationsByCreatedBlockIdSumInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC', + InstructionAffirmationsByCreatedBlockIdSumInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC', + InstructionAffirmationsByCreatedBlockIdSumIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByCreatedBlockIdSumIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByCreatedBlockIdSumIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_IS_MEDIATOR_ASC', + InstructionAffirmationsByCreatedBlockIdSumIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_IS_MEDIATOR_DESC', + InstructionAffirmationsByCreatedBlockIdSumOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByCreatedBlockIdSumOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByCreatedBlockIdSumPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_PARTY_ID_ASC', + InstructionAffirmationsByCreatedBlockIdSumPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_PARTY_ID_DESC', + InstructionAffirmationsByCreatedBlockIdSumPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_PORTFOLIOS_ASC', + InstructionAffirmationsByCreatedBlockIdSumPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_PORTFOLIOS_DESC', + InstructionAffirmationsByCreatedBlockIdSumStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_STATUS_ASC', + InstructionAffirmationsByCreatedBlockIdSumStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_STATUS_DESC', + InstructionAffirmationsByCreatedBlockIdSumUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdSumUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_MEDIATOR_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_MEDIATOR_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PARTY_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PARTY_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_MEDIATOR_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_MEDIATOR_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSamplePartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PARTY_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSamplePartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PARTY_ID_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSamplePortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSamplePortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXPIRY_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXPIRY_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_MEDIATOR_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IS_MEDIATOR_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdAveragePartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PARTY_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdAveragePartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PARTY_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdAveragePortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PORTFOLIOS_ASC', + InstructionAffirmationsByUpdatedBlockIdAveragePortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PORTFOLIOS_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_DESC', + InstructionAffirmationsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdCountAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + InstructionAffirmationsByUpdatedBlockIdCountDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXPIRY_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_MEDIATOR_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_MEDIATOR_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PARTY_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PARTY_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_EXPIRY_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_EXPIRY_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_IS_MEDIATOR_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_IS_MEDIATOR_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_PARTY_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_PARTY_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_PORTFOLIOS_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_PORTFOLIOS_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_STATUS_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_STATUS_DESC', + InstructionAffirmationsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMinBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + InstructionAffirmationsByUpdatedBlockIdMinBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + InstructionAffirmationsByUpdatedBlockIdMinCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + InstructionAffirmationsByUpdatedBlockIdMinCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + InstructionAffirmationsByUpdatedBlockIdMinCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMinCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMinExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_EXPIRY_ASC', + InstructionAffirmationsByUpdatedBlockIdMinExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_EXPIRY_DESC', + InstructionAffirmationsByUpdatedBlockIdMinIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ASC', + InstructionAffirmationsByUpdatedBlockIdMinIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_DESC', + InstructionAffirmationsByUpdatedBlockIdMinIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMinIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMinInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMinInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMinIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByUpdatedBlockIdMinIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByUpdatedBlockIdMinIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_IS_MEDIATOR_ASC', + InstructionAffirmationsByUpdatedBlockIdMinIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_IS_MEDIATOR_DESC', + InstructionAffirmationsByUpdatedBlockIdMinOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMinOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMinPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_PARTY_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMinPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_PARTY_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdMinPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_PORTFOLIOS_ASC', + InstructionAffirmationsByUpdatedBlockIdMinPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_PORTFOLIOS_DESC', + InstructionAffirmationsByUpdatedBlockIdMinStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_STATUS_ASC', + InstructionAffirmationsByUpdatedBlockIdMinStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_STATUS_DESC', + InstructionAffirmationsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXPIRY_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_MEDIATOR_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_MEDIATOR_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PARTY_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PARTY_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXPIRY_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_MEDIATOR_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_MEDIATOR_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSamplePartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PARTY_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSamplePartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PARTY_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSamplePortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSamplePortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdSumBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + InstructionAffirmationsByUpdatedBlockIdSumBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + InstructionAffirmationsByUpdatedBlockIdSumCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + InstructionAffirmationsByUpdatedBlockIdSumCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + InstructionAffirmationsByUpdatedBlockIdSumCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdSumCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdSumExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_EXPIRY_ASC', + InstructionAffirmationsByUpdatedBlockIdSumExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_EXPIRY_DESC', + InstructionAffirmationsByUpdatedBlockIdSumIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ASC', + InstructionAffirmationsByUpdatedBlockIdSumIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_DESC', + InstructionAffirmationsByUpdatedBlockIdSumIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdSumIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdSumInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdSumInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdSumIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByUpdatedBlockIdSumIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByUpdatedBlockIdSumIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_IS_MEDIATOR_ASC', + InstructionAffirmationsByUpdatedBlockIdSumIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_IS_MEDIATOR_DESC', + InstructionAffirmationsByUpdatedBlockIdSumOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdSumOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdSumPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_PARTY_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdSumPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_PARTY_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdSumPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_PORTFOLIOS_ASC', + InstructionAffirmationsByUpdatedBlockIdSumPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_PORTFOLIOS_DESC', + InstructionAffirmationsByUpdatedBlockIdSumStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_STATUS_ASC', + InstructionAffirmationsByUpdatedBlockIdSumStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_STATUS_DESC', + InstructionAffirmationsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXPIRY_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_MEDIATOR_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_MEDIATOR_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PARTY_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PARTY_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXPIRY_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_MEDIATOR_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_MEDIATOR_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSamplePartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PARTY_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSamplePartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PARTY_ID_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSamplePortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSamplePortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleStatusAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleStatusDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdAverageBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + InstructionEventsByCreatedBlockIdAverageBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + InstructionEventsByCreatedBlockIdAverageCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + InstructionEventsByCreatedBlockIdAverageCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + InstructionEventsByCreatedBlockIdAverageCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdAverageCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdAverageEventAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ASC', + InstructionEventsByCreatedBlockIdAverageEventDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_DESC', + InstructionEventsByCreatedBlockIdAverageEventIdxAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + InstructionEventsByCreatedBlockIdAverageEventIdxDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + InstructionEventsByCreatedBlockIdAverageFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_FAILURE_REASON_ASC', + InstructionEventsByCreatedBlockIdAverageFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_FAILURE_REASON_DESC', + InstructionEventsByCreatedBlockIdAverageIdentityAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ASC', + InstructionEventsByCreatedBlockIdAverageIdentityDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_DESC', + InstructionEventsByCreatedBlockIdAverageIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + InstructionEventsByCreatedBlockIdAverageIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + InstructionEventsByCreatedBlockIdAverageInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC', + InstructionEventsByCreatedBlockIdAverageInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC', + InstructionEventsByCreatedBlockIdAverageOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByCreatedBlockIdAverageOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByCreatedBlockIdAveragePortfolioAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_PORTFOLIO_ASC', + InstructionEventsByCreatedBlockIdAveragePortfolioDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_PORTFOLIO_DESC', + InstructionEventsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdCountAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + InstructionEventsByCreatedBlockIdCountDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + InstructionEventsByCreatedBlockIdDistinctCountBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InstructionEventsByCreatedBlockIdDistinctCountBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InstructionEventsByCreatedBlockIdDistinctCountCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + InstructionEventsByCreatedBlockIdDistinctCountCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + InstructionEventsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdDistinctCountEventAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ASC', + InstructionEventsByCreatedBlockIdDistinctCountEventDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_DESC', + InstructionEventsByCreatedBlockIdDistinctCountEventIdxAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + InstructionEventsByCreatedBlockIdDistinctCountEventIdxDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + InstructionEventsByCreatedBlockIdDistinctCountFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FAILURE_REASON_ASC', + InstructionEventsByCreatedBlockIdDistinctCountFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FAILURE_REASON_DESC', + InstructionEventsByCreatedBlockIdDistinctCountIdentityAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ASC', + InstructionEventsByCreatedBlockIdDistinctCountIdentityDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_DESC', + InstructionEventsByCreatedBlockIdDistinctCountIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + InstructionEventsByCreatedBlockIdDistinctCountIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + InstructionEventsByCreatedBlockIdDistinctCountInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + InstructionEventsByCreatedBlockIdDistinctCountInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + InstructionEventsByCreatedBlockIdDistinctCountOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByCreatedBlockIdDistinctCountOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByCreatedBlockIdDistinctCountPortfolioAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIO_ASC', + InstructionEventsByCreatedBlockIdDistinctCountPortfolioDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIO_DESC', + InstructionEventsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdMaxBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + InstructionEventsByCreatedBlockIdMaxBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + InstructionEventsByCreatedBlockIdMaxCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + InstructionEventsByCreatedBlockIdMaxCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + InstructionEventsByCreatedBlockIdMaxCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdMaxCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdMaxEventAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_ASC', + InstructionEventsByCreatedBlockIdMaxEventDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_DESC', + InstructionEventsByCreatedBlockIdMaxEventIdxAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + InstructionEventsByCreatedBlockIdMaxEventIdxDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + InstructionEventsByCreatedBlockIdMaxFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_FAILURE_REASON_ASC', + InstructionEventsByCreatedBlockIdMaxFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_FAILURE_REASON_DESC', + InstructionEventsByCreatedBlockIdMaxIdentityAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ASC', + InstructionEventsByCreatedBlockIdMaxIdentityDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_DESC', + InstructionEventsByCreatedBlockIdMaxIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + InstructionEventsByCreatedBlockIdMaxIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + InstructionEventsByCreatedBlockIdMaxInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC', + InstructionEventsByCreatedBlockIdMaxInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC', + InstructionEventsByCreatedBlockIdMaxOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByCreatedBlockIdMaxOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByCreatedBlockIdMaxPortfolioAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_PORTFOLIO_ASC', + InstructionEventsByCreatedBlockIdMaxPortfolioDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_PORTFOLIO_DESC', + InstructionEventsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdMinBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + InstructionEventsByCreatedBlockIdMinBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + InstructionEventsByCreatedBlockIdMinCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + InstructionEventsByCreatedBlockIdMinCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + InstructionEventsByCreatedBlockIdMinCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdMinCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdMinEventAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_ASC', + InstructionEventsByCreatedBlockIdMinEventDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_DESC', + InstructionEventsByCreatedBlockIdMinEventIdxAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + InstructionEventsByCreatedBlockIdMinEventIdxDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + InstructionEventsByCreatedBlockIdMinFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_FAILURE_REASON_ASC', + InstructionEventsByCreatedBlockIdMinFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_FAILURE_REASON_DESC', + InstructionEventsByCreatedBlockIdMinIdentityAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ASC', + InstructionEventsByCreatedBlockIdMinIdentityDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_DESC', + InstructionEventsByCreatedBlockIdMinIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + InstructionEventsByCreatedBlockIdMinIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + InstructionEventsByCreatedBlockIdMinInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC', + InstructionEventsByCreatedBlockIdMinInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC', + InstructionEventsByCreatedBlockIdMinOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByCreatedBlockIdMinOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByCreatedBlockIdMinPortfolioAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_PORTFOLIO_ASC', + InstructionEventsByCreatedBlockIdMinPortfolioDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_PORTFOLIO_DESC', + InstructionEventsByCreatedBlockIdMinUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdMinUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationEventAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationEventDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationEventIdxAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationEventIdxDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FAILURE_REASON_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FAILURE_REASON_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationIdentityAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationIdentityDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationPortfolioAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIO_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationPortfolioDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIO_DESC', + InstructionEventsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdStddevSampleBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InstructionEventsByCreatedBlockIdStddevSampleBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InstructionEventsByCreatedBlockIdStddevSampleCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + InstructionEventsByCreatedBlockIdStddevSampleCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + InstructionEventsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdStddevSampleEventAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ASC', + InstructionEventsByCreatedBlockIdStddevSampleEventDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_DESC', + InstructionEventsByCreatedBlockIdStddevSampleEventIdxAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + InstructionEventsByCreatedBlockIdStddevSampleEventIdxDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + InstructionEventsByCreatedBlockIdStddevSampleFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FAILURE_REASON_ASC', + InstructionEventsByCreatedBlockIdStddevSampleFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FAILURE_REASON_DESC', + InstructionEventsByCreatedBlockIdStddevSampleIdentityAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ASC', + InstructionEventsByCreatedBlockIdStddevSampleIdentityDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_DESC', + InstructionEventsByCreatedBlockIdStddevSampleIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + InstructionEventsByCreatedBlockIdStddevSampleIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + InstructionEventsByCreatedBlockIdStddevSampleInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + InstructionEventsByCreatedBlockIdStddevSampleInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + InstructionEventsByCreatedBlockIdStddevSampleOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByCreatedBlockIdStddevSampleOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByCreatedBlockIdStddevSamplePortfolioAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIO_ASC', + InstructionEventsByCreatedBlockIdStddevSamplePortfolioDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIO_DESC', + InstructionEventsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdSumBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + InstructionEventsByCreatedBlockIdSumBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + InstructionEventsByCreatedBlockIdSumCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + InstructionEventsByCreatedBlockIdSumCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + InstructionEventsByCreatedBlockIdSumCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdSumCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdSumEventAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_ASC', + InstructionEventsByCreatedBlockIdSumEventDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_DESC', + InstructionEventsByCreatedBlockIdSumEventIdxAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + InstructionEventsByCreatedBlockIdSumEventIdxDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + InstructionEventsByCreatedBlockIdSumFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_FAILURE_REASON_ASC', + InstructionEventsByCreatedBlockIdSumFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_FAILURE_REASON_DESC', + InstructionEventsByCreatedBlockIdSumIdentityAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ASC', + InstructionEventsByCreatedBlockIdSumIdentityDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_DESC', + InstructionEventsByCreatedBlockIdSumIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + InstructionEventsByCreatedBlockIdSumIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + InstructionEventsByCreatedBlockIdSumInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC', + InstructionEventsByCreatedBlockIdSumInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC', + InstructionEventsByCreatedBlockIdSumOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByCreatedBlockIdSumOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByCreatedBlockIdSumPortfolioAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_PORTFOLIO_ASC', + InstructionEventsByCreatedBlockIdSumPortfolioDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_PORTFOLIO_DESC', + InstructionEventsByCreatedBlockIdSumUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdSumUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationEventAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationEventDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationEventIdxAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationEventIdxDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FAILURE_REASON_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FAILURE_REASON_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationIdentityAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationIdentityDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationPortfolioAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIO_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationPortfolioDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIO_DESC', + InstructionEventsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InstructionEventsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InstructionEventsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + InstructionEventsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + InstructionEventsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionEventsByCreatedBlockIdVarianceSampleEventAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ASC', + InstructionEventsByCreatedBlockIdVarianceSampleEventDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_DESC', + InstructionEventsByCreatedBlockIdVarianceSampleEventIdxAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + InstructionEventsByCreatedBlockIdVarianceSampleEventIdxDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + InstructionEventsByCreatedBlockIdVarianceSampleFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FAILURE_REASON_ASC', + InstructionEventsByCreatedBlockIdVarianceSampleFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FAILURE_REASON_DESC', + InstructionEventsByCreatedBlockIdVarianceSampleIdentityAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ASC', + InstructionEventsByCreatedBlockIdVarianceSampleIdentityDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_DESC', + InstructionEventsByCreatedBlockIdVarianceSampleIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + InstructionEventsByCreatedBlockIdVarianceSampleIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + InstructionEventsByCreatedBlockIdVarianceSampleInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + InstructionEventsByCreatedBlockIdVarianceSampleInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + InstructionEventsByCreatedBlockIdVarianceSampleOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByCreatedBlockIdVarianceSampleOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByCreatedBlockIdVarianceSamplePortfolioAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIO_ASC', + InstructionEventsByCreatedBlockIdVarianceSamplePortfolioDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIO_DESC', + InstructionEventsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionEventsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdAverageBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + InstructionEventsByUpdatedBlockIdAverageBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + InstructionEventsByUpdatedBlockIdAverageCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + InstructionEventsByUpdatedBlockIdAverageCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + InstructionEventsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdAverageEventAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ASC', + InstructionEventsByUpdatedBlockIdAverageEventDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_DESC', + InstructionEventsByUpdatedBlockIdAverageEventIdxAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + InstructionEventsByUpdatedBlockIdAverageEventIdxDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + InstructionEventsByUpdatedBlockIdAverageFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_FAILURE_REASON_ASC', + InstructionEventsByUpdatedBlockIdAverageFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_FAILURE_REASON_DESC', + InstructionEventsByUpdatedBlockIdAverageIdentityAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ASC', + InstructionEventsByUpdatedBlockIdAverageIdentityDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_DESC', + InstructionEventsByUpdatedBlockIdAverageIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + InstructionEventsByUpdatedBlockIdAverageIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + InstructionEventsByUpdatedBlockIdAverageInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC', + InstructionEventsByUpdatedBlockIdAverageInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC', + InstructionEventsByUpdatedBlockIdAverageOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByUpdatedBlockIdAverageOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByUpdatedBlockIdAveragePortfolioAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_PORTFOLIO_ASC', + InstructionEventsByUpdatedBlockIdAveragePortfolioDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_PORTFOLIO_DESC', + InstructionEventsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdCountAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + InstructionEventsByUpdatedBlockIdCountDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountEventAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountEventDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountEventIdxAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountEventIdxDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FAILURE_REASON_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FAILURE_REASON_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountIdentityAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountIdentityDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountPortfolioAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIO_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountPortfolioDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIO_DESC', + InstructionEventsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdMaxBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + InstructionEventsByUpdatedBlockIdMaxBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + InstructionEventsByUpdatedBlockIdMaxCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + InstructionEventsByUpdatedBlockIdMaxCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + InstructionEventsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdMaxEventAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ASC', + InstructionEventsByUpdatedBlockIdMaxEventDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_DESC', + InstructionEventsByUpdatedBlockIdMaxEventIdxAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + InstructionEventsByUpdatedBlockIdMaxEventIdxDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + InstructionEventsByUpdatedBlockIdMaxFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_FAILURE_REASON_ASC', + InstructionEventsByUpdatedBlockIdMaxFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_FAILURE_REASON_DESC', + InstructionEventsByUpdatedBlockIdMaxIdentityAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ASC', + InstructionEventsByUpdatedBlockIdMaxIdentityDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_DESC', + InstructionEventsByUpdatedBlockIdMaxIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + InstructionEventsByUpdatedBlockIdMaxIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + InstructionEventsByUpdatedBlockIdMaxInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC', + InstructionEventsByUpdatedBlockIdMaxInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC', + InstructionEventsByUpdatedBlockIdMaxOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByUpdatedBlockIdMaxOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByUpdatedBlockIdMaxPortfolioAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_PORTFOLIO_ASC', + InstructionEventsByUpdatedBlockIdMaxPortfolioDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_PORTFOLIO_DESC', + InstructionEventsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdMinBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + InstructionEventsByUpdatedBlockIdMinBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + InstructionEventsByUpdatedBlockIdMinCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + InstructionEventsByUpdatedBlockIdMinCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + InstructionEventsByUpdatedBlockIdMinCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdMinCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdMinEventAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ASC', + InstructionEventsByUpdatedBlockIdMinEventDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_DESC', + InstructionEventsByUpdatedBlockIdMinEventIdxAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + InstructionEventsByUpdatedBlockIdMinEventIdxDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + InstructionEventsByUpdatedBlockIdMinFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_FAILURE_REASON_ASC', + InstructionEventsByUpdatedBlockIdMinFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_FAILURE_REASON_DESC', + InstructionEventsByUpdatedBlockIdMinIdentityAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ASC', + InstructionEventsByUpdatedBlockIdMinIdentityDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_DESC', + InstructionEventsByUpdatedBlockIdMinIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + InstructionEventsByUpdatedBlockIdMinIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + InstructionEventsByUpdatedBlockIdMinInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC', + InstructionEventsByUpdatedBlockIdMinInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC', + InstructionEventsByUpdatedBlockIdMinOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByUpdatedBlockIdMinOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByUpdatedBlockIdMinPortfolioAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_PORTFOLIO_ASC', + InstructionEventsByUpdatedBlockIdMinPortfolioDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_PORTFOLIO_DESC', + InstructionEventsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationEventAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationEventDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FAILURE_REASON_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FAILURE_REASON_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationIdentityAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationIdentityDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationPortfolioAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIO_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationPortfolioDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIO_DESC', + InstructionEventsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InstructionEventsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InstructionEventsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + InstructionEventsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + InstructionEventsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdStddevSampleEventAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ASC', + InstructionEventsByUpdatedBlockIdStddevSampleEventDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_DESC', + InstructionEventsByUpdatedBlockIdStddevSampleEventIdxAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + InstructionEventsByUpdatedBlockIdStddevSampleEventIdxDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + InstructionEventsByUpdatedBlockIdStddevSampleFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FAILURE_REASON_ASC', + InstructionEventsByUpdatedBlockIdStddevSampleFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FAILURE_REASON_DESC', + InstructionEventsByUpdatedBlockIdStddevSampleIdentityAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ASC', + InstructionEventsByUpdatedBlockIdStddevSampleIdentityDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_DESC', + InstructionEventsByUpdatedBlockIdStddevSampleIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + InstructionEventsByUpdatedBlockIdStddevSampleIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + InstructionEventsByUpdatedBlockIdStddevSampleInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + InstructionEventsByUpdatedBlockIdStddevSampleInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + InstructionEventsByUpdatedBlockIdStddevSampleOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByUpdatedBlockIdStddevSampleOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByUpdatedBlockIdStddevSamplePortfolioAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIO_ASC', + InstructionEventsByUpdatedBlockIdStddevSamplePortfolioDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIO_DESC', + InstructionEventsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdSumBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + InstructionEventsByUpdatedBlockIdSumBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + InstructionEventsByUpdatedBlockIdSumCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + InstructionEventsByUpdatedBlockIdSumCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + InstructionEventsByUpdatedBlockIdSumCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdSumCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdSumEventAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ASC', + InstructionEventsByUpdatedBlockIdSumEventDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_DESC', + InstructionEventsByUpdatedBlockIdSumEventIdxAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + InstructionEventsByUpdatedBlockIdSumEventIdxDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + InstructionEventsByUpdatedBlockIdSumFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_FAILURE_REASON_ASC', + InstructionEventsByUpdatedBlockIdSumFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_FAILURE_REASON_DESC', + InstructionEventsByUpdatedBlockIdSumIdentityAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ASC', + InstructionEventsByUpdatedBlockIdSumIdentityDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_DESC', + InstructionEventsByUpdatedBlockIdSumIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + InstructionEventsByUpdatedBlockIdSumIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + InstructionEventsByUpdatedBlockIdSumInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC', + InstructionEventsByUpdatedBlockIdSumInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC', + InstructionEventsByUpdatedBlockIdSumOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByUpdatedBlockIdSumOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByUpdatedBlockIdSumPortfolioAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_PORTFOLIO_ASC', + InstructionEventsByUpdatedBlockIdSumPortfolioDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_PORTFOLIO_DESC', + InstructionEventsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationEventAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationEventDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FAILURE_REASON_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FAILURE_REASON_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationIdentityAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationIdentityDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationPortfolioAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIO_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationPortfolioDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIO_DESC', + InstructionEventsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InstructionEventsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InstructionEventsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + InstructionEventsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + InstructionEventsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionEventsByUpdatedBlockIdVarianceSampleEventAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ASC', + InstructionEventsByUpdatedBlockIdVarianceSampleEventDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_DESC', + InstructionEventsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + InstructionEventsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + InstructionEventsByUpdatedBlockIdVarianceSampleFailureReasonAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FAILURE_REASON_ASC', + InstructionEventsByUpdatedBlockIdVarianceSampleFailureReasonDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FAILURE_REASON_DESC', + InstructionEventsByUpdatedBlockIdVarianceSampleIdentityAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ASC', + InstructionEventsByUpdatedBlockIdVarianceSampleIdentityDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_DESC', + InstructionEventsByUpdatedBlockIdVarianceSampleIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + InstructionEventsByUpdatedBlockIdVarianceSampleIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + InstructionEventsByUpdatedBlockIdVarianceSampleInstructionIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + InstructionEventsByUpdatedBlockIdVarianceSampleInstructionIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + InstructionEventsByUpdatedBlockIdVarianceSampleOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsByUpdatedBlockIdVarianceSampleOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsByUpdatedBlockIdVarianceSamplePortfolioAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIO_ASC', + InstructionEventsByUpdatedBlockIdVarianceSamplePortfolioDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIO_DESC', + InstructionEventsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionEventsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdAverageBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + InstructionPartiesByCreatedBlockIdAverageBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + InstructionPartiesByCreatedBlockIdAverageCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + InstructionPartiesByCreatedBlockIdAverageCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + InstructionPartiesByCreatedBlockIdAverageCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdAverageCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdAverageIdentityAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ASC', + InstructionPartiesByCreatedBlockIdAverageIdentityDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_DESC', + InstructionPartiesByCreatedBlockIdAverageIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + InstructionPartiesByCreatedBlockIdAverageIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + InstructionPartiesByCreatedBlockIdAverageInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC', + InstructionPartiesByCreatedBlockIdAverageInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC', + InstructionPartiesByCreatedBlockIdAverageIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_IS_MEDIATOR_ASC', + InstructionPartiesByCreatedBlockIdAverageIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_IS_MEDIATOR_DESC', + InstructionPartiesByCreatedBlockIdAveragePortfoliosAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_PORTFOLIOS_ASC', + InstructionPartiesByCreatedBlockIdAveragePortfoliosDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_PORTFOLIOS_DESC', + InstructionPartiesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdCountAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_COUNT_ASC', + InstructionPartiesByCreatedBlockIdCountDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_COUNT_DESC', + InstructionPartiesByCreatedBlockIdDistinctCountBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InstructionPartiesByCreatedBlockIdDistinctCountBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InstructionPartiesByCreatedBlockIdDistinctCountCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + InstructionPartiesByCreatedBlockIdDistinctCountCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + InstructionPartiesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdDistinctCountIdentityAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ASC', + InstructionPartiesByCreatedBlockIdDistinctCountIdentityDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_DESC', + InstructionPartiesByCreatedBlockIdDistinctCountIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + InstructionPartiesByCreatedBlockIdDistinctCountIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + InstructionPartiesByCreatedBlockIdDistinctCountInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + InstructionPartiesByCreatedBlockIdDistinctCountInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + InstructionPartiesByCreatedBlockIdDistinctCountIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_MEDIATOR_ASC', + InstructionPartiesByCreatedBlockIdDistinctCountIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IS_MEDIATOR_DESC', + InstructionPartiesByCreatedBlockIdDistinctCountPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_ASC', + InstructionPartiesByCreatedBlockIdDistinctCountPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_DESC', + InstructionPartiesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdMaxBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + InstructionPartiesByCreatedBlockIdMaxBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + InstructionPartiesByCreatedBlockIdMaxCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + InstructionPartiesByCreatedBlockIdMaxCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + InstructionPartiesByCreatedBlockIdMaxCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdMaxCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdMaxIdentityAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ASC', + InstructionPartiesByCreatedBlockIdMaxIdentityDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_IDENTITY_DESC', + InstructionPartiesByCreatedBlockIdMaxIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + InstructionPartiesByCreatedBlockIdMaxIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + InstructionPartiesByCreatedBlockIdMaxInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC', + InstructionPartiesByCreatedBlockIdMaxInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC', + InstructionPartiesByCreatedBlockIdMaxIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_IS_MEDIATOR_ASC', + InstructionPartiesByCreatedBlockIdMaxIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_IS_MEDIATOR_DESC', + InstructionPartiesByCreatedBlockIdMaxPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_PORTFOLIOS_ASC', + InstructionPartiesByCreatedBlockIdMaxPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_PORTFOLIOS_DESC', + InstructionPartiesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdMinBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + InstructionPartiesByCreatedBlockIdMinBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + InstructionPartiesByCreatedBlockIdMinCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + InstructionPartiesByCreatedBlockIdMinCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + InstructionPartiesByCreatedBlockIdMinCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdMinCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdMinIdentityAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ASC', + InstructionPartiesByCreatedBlockIdMinIdentityDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_IDENTITY_DESC', + InstructionPartiesByCreatedBlockIdMinIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + InstructionPartiesByCreatedBlockIdMinIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + InstructionPartiesByCreatedBlockIdMinInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC', + InstructionPartiesByCreatedBlockIdMinInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC', + InstructionPartiesByCreatedBlockIdMinIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_IS_MEDIATOR_ASC', + InstructionPartiesByCreatedBlockIdMinIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_IS_MEDIATOR_DESC', + InstructionPartiesByCreatedBlockIdMinPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_PORTFOLIOS_ASC', + InstructionPartiesByCreatedBlockIdMinPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_PORTFOLIOS_DESC', + InstructionPartiesByCreatedBlockIdMinUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdMinUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InstructionPartiesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InstructionPartiesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + InstructionPartiesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + InstructionPartiesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdStddevPopulationIdentityAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ASC', + InstructionPartiesByCreatedBlockIdStddevPopulationIdentityDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_DESC', + InstructionPartiesByCreatedBlockIdStddevPopulationIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + InstructionPartiesByCreatedBlockIdStddevPopulationIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + InstructionPartiesByCreatedBlockIdStddevPopulationInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + InstructionPartiesByCreatedBlockIdStddevPopulationInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + InstructionPartiesByCreatedBlockIdStddevPopulationIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_MEDIATOR_ASC', + InstructionPartiesByCreatedBlockIdStddevPopulationIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IS_MEDIATOR_DESC', + InstructionPartiesByCreatedBlockIdStddevPopulationPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_ASC', + InstructionPartiesByCreatedBlockIdStddevPopulationPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_DESC', + InstructionPartiesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdStddevSampleBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InstructionPartiesByCreatedBlockIdStddevSampleBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InstructionPartiesByCreatedBlockIdStddevSampleCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + InstructionPartiesByCreatedBlockIdStddevSampleCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + InstructionPartiesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdStddevSampleIdentityAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ASC', + InstructionPartiesByCreatedBlockIdStddevSampleIdentityDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_DESC', + InstructionPartiesByCreatedBlockIdStddevSampleIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + InstructionPartiesByCreatedBlockIdStddevSampleIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + InstructionPartiesByCreatedBlockIdStddevSampleInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + InstructionPartiesByCreatedBlockIdStddevSampleInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + InstructionPartiesByCreatedBlockIdStddevSampleIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_MEDIATOR_ASC', + InstructionPartiesByCreatedBlockIdStddevSampleIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IS_MEDIATOR_DESC', + InstructionPartiesByCreatedBlockIdStddevSamplePortfoliosAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_ASC', + InstructionPartiesByCreatedBlockIdStddevSamplePortfoliosDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_DESC', + InstructionPartiesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdSumBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + InstructionPartiesByCreatedBlockIdSumBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + InstructionPartiesByCreatedBlockIdSumCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + InstructionPartiesByCreatedBlockIdSumCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + InstructionPartiesByCreatedBlockIdSumCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdSumCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdSumIdentityAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ASC', + InstructionPartiesByCreatedBlockIdSumIdentityDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_IDENTITY_DESC', + InstructionPartiesByCreatedBlockIdSumIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + InstructionPartiesByCreatedBlockIdSumIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + InstructionPartiesByCreatedBlockIdSumInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC', + InstructionPartiesByCreatedBlockIdSumInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC', + InstructionPartiesByCreatedBlockIdSumIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_IS_MEDIATOR_ASC', + InstructionPartiesByCreatedBlockIdSumIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_IS_MEDIATOR_DESC', + InstructionPartiesByCreatedBlockIdSumPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_PORTFOLIOS_ASC', + InstructionPartiesByCreatedBlockIdSumPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_PORTFOLIOS_DESC', + InstructionPartiesByCreatedBlockIdSumUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdSumUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InstructionPartiesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InstructionPartiesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + InstructionPartiesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + InstructionPartiesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdVariancePopulationIdentityAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ASC', + InstructionPartiesByCreatedBlockIdVariancePopulationIdentityDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_DESC', + InstructionPartiesByCreatedBlockIdVariancePopulationIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + InstructionPartiesByCreatedBlockIdVariancePopulationIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + InstructionPartiesByCreatedBlockIdVariancePopulationInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + InstructionPartiesByCreatedBlockIdVariancePopulationInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + InstructionPartiesByCreatedBlockIdVariancePopulationIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_MEDIATOR_ASC', + InstructionPartiesByCreatedBlockIdVariancePopulationIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IS_MEDIATOR_DESC', + InstructionPartiesByCreatedBlockIdVariancePopulationPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_ASC', + InstructionPartiesByCreatedBlockIdVariancePopulationPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_DESC', + InstructionPartiesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InstructionPartiesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InstructionPartiesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + InstructionPartiesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + InstructionPartiesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionPartiesByCreatedBlockIdVarianceSampleIdentityAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ASC', + InstructionPartiesByCreatedBlockIdVarianceSampleIdentityDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_DESC', + InstructionPartiesByCreatedBlockIdVarianceSampleIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + InstructionPartiesByCreatedBlockIdVarianceSampleIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + InstructionPartiesByCreatedBlockIdVarianceSampleInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + InstructionPartiesByCreatedBlockIdVarianceSampleInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + InstructionPartiesByCreatedBlockIdVarianceSampleIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_MEDIATOR_ASC', + InstructionPartiesByCreatedBlockIdVarianceSampleIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IS_MEDIATOR_DESC', + InstructionPartiesByCreatedBlockIdVarianceSamplePortfoliosAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_ASC', + InstructionPartiesByCreatedBlockIdVarianceSamplePortfoliosDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_DESC', + InstructionPartiesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdAverageBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + InstructionPartiesByUpdatedBlockIdAverageBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + InstructionPartiesByUpdatedBlockIdAverageCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + InstructionPartiesByUpdatedBlockIdAverageCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + InstructionPartiesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdAverageIdentityAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ASC', + InstructionPartiesByUpdatedBlockIdAverageIdentityDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_DESC', + InstructionPartiesByUpdatedBlockIdAverageIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + InstructionPartiesByUpdatedBlockIdAverageIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + InstructionPartiesByUpdatedBlockIdAverageInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC', + InstructionPartiesByUpdatedBlockIdAverageInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC', + InstructionPartiesByUpdatedBlockIdAverageIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_IS_MEDIATOR_ASC', + InstructionPartiesByUpdatedBlockIdAverageIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_IS_MEDIATOR_DESC', + InstructionPartiesByUpdatedBlockIdAveragePortfoliosAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_PORTFOLIOS_ASC', + InstructionPartiesByUpdatedBlockIdAveragePortfoliosDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_PORTFOLIOS_DESC', + InstructionPartiesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdCountAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + InstructionPartiesByUpdatedBlockIdCountDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + InstructionPartiesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InstructionPartiesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InstructionPartiesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + InstructionPartiesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + InstructionPartiesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdDistinctCountIdentityAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ASC', + InstructionPartiesByUpdatedBlockIdDistinctCountIdentityDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_DESC', + InstructionPartiesByUpdatedBlockIdDistinctCountIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + InstructionPartiesByUpdatedBlockIdDistinctCountIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + InstructionPartiesByUpdatedBlockIdDistinctCountInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + InstructionPartiesByUpdatedBlockIdDistinctCountInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + InstructionPartiesByUpdatedBlockIdDistinctCountIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_MEDIATOR_ASC', + InstructionPartiesByUpdatedBlockIdDistinctCountIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IS_MEDIATOR_DESC', + InstructionPartiesByUpdatedBlockIdDistinctCountPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_ASC', + InstructionPartiesByUpdatedBlockIdDistinctCountPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_DESC', + InstructionPartiesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdMaxBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + InstructionPartiesByUpdatedBlockIdMaxBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + InstructionPartiesByUpdatedBlockIdMaxCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + InstructionPartiesByUpdatedBlockIdMaxCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + InstructionPartiesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdMaxIdentityAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ASC', + InstructionPartiesByUpdatedBlockIdMaxIdentityDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_DESC', + InstructionPartiesByUpdatedBlockIdMaxIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + InstructionPartiesByUpdatedBlockIdMaxIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + InstructionPartiesByUpdatedBlockIdMaxInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC', + InstructionPartiesByUpdatedBlockIdMaxInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC', + InstructionPartiesByUpdatedBlockIdMaxIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_IS_MEDIATOR_ASC', + InstructionPartiesByUpdatedBlockIdMaxIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_IS_MEDIATOR_DESC', + InstructionPartiesByUpdatedBlockIdMaxPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_PORTFOLIOS_ASC', + InstructionPartiesByUpdatedBlockIdMaxPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_PORTFOLIOS_DESC', + InstructionPartiesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdMinBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + InstructionPartiesByUpdatedBlockIdMinBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + InstructionPartiesByUpdatedBlockIdMinCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + InstructionPartiesByUpdatedBlockIdMinCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + InstructionPartiesByUpdatedBlockIdMinCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdMinCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdMinIdentityAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ASC', + InstructionPartiesByUpdatedBlockIdMinIdentityDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_DESC', + InstructionPartiesByUpdatedBlockIdMinIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + InstructionPartiesByUpdatedBlockIdMinIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + InstructionPartiesByUpdatedBlockIdMinInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC', + InstructionPartiesByUpdatedBlockIdMinInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC', + InstructionPartiesByUpdatedBlockIdMinIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_IS_MEDIATOR_ASC', + InstructionPartiesByUpdatedBlockIdMinIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_IS_MEDIATOR_DESC', + InstructionPartiesByUpdatedBlockIdMinPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_PORTFOLIOS_ASC', + InstructionPartiesByUpdatedBlockIdMinPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_PORTFOLIOS_DESC', + InstructionPartiesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InstructionPartiesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InstructionPartiesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + InstructionPartiesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + InstructionPartiesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdStddevPopulationIdentityAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ASC', + InstructionPartiesByUpdatedBlockIdStddevPopulationIdentityDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_DESC', + InstructionPartiesByUpdatedBlockIdStddevPopulationIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + InstructionPartiesByUpdatedBlockIdStddevPopulationIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + InstructionPartiesByUpdatedBlockIdStddevPopulationInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + InstructionPartiesByUpdatedBlockIdStddevPopulationInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + InstructionPartiesByUpdatedBlockIdStddevPopulationIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_MEDIATOR_ASC', + InstructionPartiesByUpdatedBlockIdStddevPopulationIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IS_MEDIATOR_DESC', + InstructionPartiesByUpdatedBlockIdStddevPopulationPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_ASC', + InstructionPartiesByUpdatedBlockIdStddevPopulationPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_DESC', + InstructionPartiesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InstructionPartiesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InstructionPartiesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + InstructionPartiesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + InstructionPartiesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdStddevSampleIdentityAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ASC', + InstructionPartiesByUpdatedBlockIdStddevSampleIdentityDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_DESC', + InstructionPartiesByUpdatedBlockIdStddevSampleIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + InstructionPartiesByUpdatedBlockIdStddevSampleIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + InstructionPartiesByUpdatedBlockIdStddevSampleInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + InstructionPartiesByUpdatedBlockIdStddevSampleInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + InstructionPartiesByUpdatedBlockIdStddevSampleIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_MEDIATOR_ASC', + InstructionPartiesByUpdatedBlockIdStddevSampleIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IS_MEDIATOR_DESC', + InstructionPartiesByUpdatedBlockIdStddevSamplePortfoliosAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_ASC', + InstructionPartiesByUpdatedBlockIdStddevSamplePortfoliosDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_DESC', + InstructionPartiesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdSumBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + InstructionPartiesByUpdatedBlockIdSumBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + InstructionPartiesByUpdatedBlockIdSumCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + InstructionPartiesByUpdatedBlockIdSumCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + InstructionPartiesByUpdatedBlockIdSumCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdSumCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdSumIdentityAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ASC', + InstructionPartiesByUpdatedBlockIdSumIdentityDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_DESC', + InstructionPartiesByUpdatedBlockIdSumIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + InstructionPartiesByUpdatedBlockIdSumIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + InstructionPartiesByUpdatedBlockIdSumInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC', + InstructionPartiesByUpdatedBlockIdSumInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC', + InstructionPartiesByUpdatedBlockIdSumIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_IS_MEDIATOR_ASC', + InstructionPartiesByUpdatedBlockIdSumIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_IS_MEDIATOR_DESC', + InstructionPartiesByUpdatedBlockIdSumPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_PORTFOLIOS_ASC', + InstructionPartiesByUpdatedBlockIdSumPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_PORTFOLIOS_DESC', + InstructionPartiesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InstructionPartiesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InstructionPartiesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + InstructionPartiesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + InstructionPartiesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdVariancePopulationIdentityAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ASC', + InstructionPartiesByUpdatedBlockIdVariancePopulationIdentityDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_DESC', + InstructionPartiesByUpdatedBlockIdVariancePopulationIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + InstructionPartiesByUpdatedBlockIdVariancePopulationIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + InstructionPartiesByUpdatedBlockIdVariancePopulationInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + InstructionPartiesByUpdatedBlockIdVariancePopulationInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + InstructionPartiesByUpdatedBlockIdVariancePopulationIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_MEDIATOR_ASC', + InstructionPartiesByUpdatedBlockIdVariancePopulationIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IS_MEDIATOR_DESC', + InstructionPartiesByUpdatedBlockIdVariancePopulationPortfoliosAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_ASC', + InstructionPartiesByUpdatedBlockIdVariancePopulationPortfoliosDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_DESC', + InstructionPartiesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InstructionPartiesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InstructionPartiesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + InstructionPartiesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + InstructionPartiesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionPartiesByUpdatedBlockIdVarianceSampleIdentityAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ASC', + InstructionPartiesByUpdatedBlockIdVarianceSampleIdentityDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_DESC', + InstructionPartiesByUpdatedBlockIdVarianceSampleIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + InstructionPartiesByUpdatedBlockIdVarianceSampleIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + InstructionPartiesByUpdatedBlockIdVarianceSampleInstructionIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + InstructionPartiesByUpdatedBlockIdVarianceSampleInstructionIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + InstructionPartiesByUpdatedBlockIdVarianceSampleIsMediatorAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_MEDIATOR_ASC', + InstructionPartiesByUpdatedBlockIdVarianceSampleIsMediatorDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IS_MEDIATOR_DESC', + InstructionPartiesByUpdatedBlockIdVarianceSamplePortfoliosAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_ASC', + InstructionPartiesByUpdatedBlockIdVarianceSamplePortfoliosDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_DESC', + InstructionPartiesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionPartiesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'INSTRUCTION_PARTIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdAverageBlockRangeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + InvestmentsByCreatedBlockIdAverageBlockRangeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + InvestmentsByCreatedBlockIdAverageCreatedAtAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + InvestmentsByCreatedBlockIdAverageCreatedAtDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + InvestmentsByCreatedBlockIdAverageCreatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdAverageCreatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdAverageDatetimeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + InvestmentsByCreatedBlockIdAverageDatetimeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + InvestmentsByCreatedBlockIdAverageIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + InvestmentsByCreatedBlockIdAverageIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + InvestmentsByCreatedBlockIdAverageInvestorIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_INVESTOR_ID_ASC', + InvestmentsByCreatedBlockIdAverageInvestorIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_INVESTOR_ID_DESC', + InvestmentsByCreatedBlockIdAverageOfferingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_OFFERING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdAverageOfferingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_OFFERING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdAverageOfferingTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdAverageOfferingTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdAverageOfferingTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_OFFERING_TOKEN_ASC', + InvestmentsByCreatedBlockIdAverageOfferingTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_OFFERING_TOKEN_DESC', + InvestmentsByCreatedBlockIdAverageRaiseTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdAverageRaiseTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdAverageRaiseTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_RAISE_TOKEN_ASC', + InvestmentsByCreatedBlockIdAverageRaiseTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_RAISE_TOKEN_DESC', + InvestmentsByCreatedBlockIdAverageRaisingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_RAISING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdAverageRaisingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_RAISING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdAverageStoIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_STO_ID_ASC', + InvestmentsByCreatedBlockIdAverageStoIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_STO_ID_DESC', + InvestmentsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdCountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + InvestmentsByCreatedBlockIdCountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + InvestmentsByCreatedBlockIdDistinctCountBlockRangeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InvestmentsByCreatedBlockIdDistinctCountBlockRangeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InvestmentsByCreatedBlockIdDistinctCountCreatedAtAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + InvestmentsByCreatedBlockIdDistinctCountCreatedAtDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + InvestmentsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdDistinctCountDatetimeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + InvestmentsByCreatedBlockIdDistinctCountDatetimeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + InvestmentsByCreatedBlockIdDistinctCountIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + InvestmentsByCreatedBlockIdDistinctCountIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + InvestmentsByCreatedBlockIdDistinctCountInvestorIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INVESTOR_ID_ASC', + InvestmentsByCreatedBlockIdDistinctCountInvestorIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INVESTOR_ID_DESC', + InvestmentsByCreatedBlockIdDistinctCountOfferingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdDistinctCountOfferingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdDistinctCountOfferingTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdDistinctCountOfferingTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdDistinctCountOfferingTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_TOKEN_ASC', + InvestmentsByCreatedBlockIdDistinctCountOfferingTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_TOKEN_DESC', + InvestmentsByCreatedBlockIdDistinctCountRaiseTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdDistinctCountRaiseTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdDistinctCountRaiseTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISE_TOKEN_ASC', + InvestmentsByCreatedBlockIdDistinctCountRaiseTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISE_TOKEN_DESC', + InvestmentsByCreatedBlockIdDistinctCountRaisingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdDistinctCountRaisingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdDistinctCountStoIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STO_ID_ASC', + InvestmentsByCreatedBlockIdDistinctCountStoIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STO_ID_DESC', + InvestmentsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdMaxBlockRangeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + InvestmentsByCreatedBlockIdMaxBlockRangeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + InvestmentsByCreatedBlockIdMaxCreatedAtAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + InvestmentsByCreatedBlockIdMaxCreatedAtDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + InvestmentsByCreatedBlockIdMaxCreatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdMaxCreatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdMaxDatetimeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + InvestmentsByCreatedBlockIdMaxDatetimeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + InvestmentsByCreatedBlockIdMaxIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + InvestmentsByCreatedBlockIdMaxIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + InvestmentsByCreatedBlockIdMaxInvestorIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_INVESTOR_ID_ASC', + InvestmentsByCreatedBlockIdMaxInvestorIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_INVESTOR_ID_DESC', + InvestmentsByCreatedBlockIdMaxOfferingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_OFFERING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdMaxOfferingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_OFFERING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdMaxOfferingTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdMaxOfferingTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdMaxOfferingTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_OFFERING_TOKEN_ASC', + InvestmentsByCreatedBlockIdMaxOfferingTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_OFFERING_TOKEN_DESC', + InvestmentsByCreatedBlockIdMaxRaiseTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdMaxRaiseTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdMaxRaiseTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_RAISE_TOKEN_ASC', + InvestmentsByCreatedBlockIdMaxRaiseTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_RAISE_TOKEN_DESC', + InvestmentsByCreatedBlockIdMaxRaisingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_RAISING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdMaxRaisingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_RAISING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdMaxStoIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_STO_ID_ASC', + InvestmentsByCreatedBlockIdMaxStoIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_STO_ID_DESC', + InvestmentsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdMinBlockRangeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + InvestmentsByCreatedBlockIdMinBlockRangeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + InvestmentsByCreatedBlockIdMinCreatedAtAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + InvestmentsByCreatedBlockIdMinCreatedAtDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + InvestmentsByCreatedBlockIdMinCreatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdMinCreatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdMinDatetimeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + InvestmentsByCreatedBlockIdMinDatetimeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + InvestmentsByCreatedBlockIdMinIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + InvestmentsByCreatedBlockIdMinIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + InvestmentsByCreatedBlockIdMinInvestorIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_INVESTOR_ID_ASC', + InvestmentsByCreatedBlockIdMinInvestorIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_INVESTOR_ID_DESC', + InvestmentsByCreatedBlockIdMinOfferingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_OFFERING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdMinOfferingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_OFFERING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdMinOfferingTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdMinOfferingTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdMinOfferingTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_OFFERING_TOKEN_ASC', + InvestmentsByCreatedBlockIdMinOfferingTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_OFFERING_TOKEN_DESC', + InvestmentsByCreatedBlockIdMinRaiseTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdMinRaiseTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdMinRaiseTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_RAISE_TOKEN_ASC', + InvestmentsByCreatedBlockIdMinRaiseTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_RAISE_TOKEN_DESC', + InvestmentsByCreatedBlockIdMinRaisingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_RAISING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdMinRaisingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_RAISING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdMinStoIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_STO_ID_ASC', + InvestmentsByCreatedBlockIdMinStoIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_STO_ID_DESC', + InvestmentsByCreatedBlockIdMinUpdatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdMinUpdatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InvestmentsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InvestmentsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + InvestmentsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + InvestmentsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdStddevPopulationDatetimeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + InvestmentsByCreatedBlockIdStddevPopulationDatetimeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + InvestmentsByCreatedBlockIdStddevPopulationIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + InvestmentsByCreatedBlockIdStddevPopulationIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + InvestmentsByCreatedBlockIdStddevPopulationInvestorIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INVESTOR_ID_ASC', + InvestmentsByCreatedBlockIdStddevPopulationInvestorIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INVESTOR_ID_DESC', + InvestmentsByCreatedBlockIdStddevPopulationOfferingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdStddevPopulationOfferingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdStddevPopulationOfferingTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdStddevPopulationOfferingTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdStddevPopulationOfferingTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_TOKEN_ASC', + InvestmentsByCreatedBlockIdStddevPopulationOfferingTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_TOKEN_DESC', + InvestmentsByCreatedBlockIdStddevPopulationRaiseTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdStddevPopulationRaiseTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdStddevPopulationRaiseTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISE_TOKEN_ASC', + InvestmentsByCreatedBlockIdStddevPopulationRaiseTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISE_TOKEN_DESC', + InvestmentsByCreatedBlockIdStddevPopulationRaisingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdStddevPopulationRaisingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdStddevPopulationStoIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STO_ID_ASC', + InvestmentsByCreatedBlockIdStddevPopulationStoIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STO_ID_DESC', + InvestmentsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdStddevSampleBlockRangeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InvestmentsByCreatedBlockIdStddevSampleBlockRangeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InvestmentsByCreatedBlockIdStddevSampleCreatedAtAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + InvestmentsByCreatedBlockIdStddevSampleCreatedAtDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + InvestmentsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdStddevSampleDatetimeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + InvestmentsByCreatedBlockIdStddevSampleDatetimeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + InvestmentsByCreatedBlockIdStddevSampleIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + InvestmentsByCreatedBlockIdStddevSampleIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + InvestmentsByCreatedBlockIdStddevSampleInvestorIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INVESTOR_ID_ASC', + InvestmentsByCreatedBlockIdStddevSampleInvestorIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INVESTOR_ID_DESC', + InvestmentsByCreatedBlockIdStddevSampleOfferingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdStddevSampleOfferingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdStddevSampleOfferingTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdStddevSampleOfferingTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdStddevSampleOfferingTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_TOKEN_ASC', + InvestmentsByCreatedBlockIdStddevSampleOfferingTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_TOKEN_DESC', + InvestmentsByCreatedBlockIdStddevSampleRaiseTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdStddevSampleRaiseTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdStddevSampleRaiseTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISE_TOKEN_ASC', + InvestmentsByCreatedBlockIdStddevSampleRaiseTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISE_TOKEN_DESC', + InvestmentsByCreatedBlockIdStddevSampleRaisingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdStddevSampleRaisingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdStddevSampleStoIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STO_ID_ASC', + InvestmentsByCreatedBlockIdStddevSampleStoIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STO_ID_DESC', + InvestmentsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdSumBlockRangeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + InvestmentsByCreatedBlockIdSumBlockRangeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + InvestmentsByCreatedBlockIdSumCreatedAtAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + InvestmentsByCreatedBlockIdSumCreatedAtDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + InvestmentsByCreatedBlockIdSumCreatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdSumCreatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdSumDatetimeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + InvestmentsByCreatedBlockIdSumDatetimeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + InvestmentsByCreatedBlockIdSumIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + InvestmentsByCreatedBlockIdSumIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + InvestmentsByCreatedBlockIdSumInvestorIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_INVESTOR_ID_ASC', + InvestmentsByCreatedBlockIdSumInvestorIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_INVESTOR_ID_DESC', + InvestmentsByCreatedBlockIdSumOfferingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_OFFERING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdSumOfferingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_OFFERING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdSumOfferingTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdSumOfferingTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdSumOfferingTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_OFFERING_TOKEN_ASC', + InvestmentsByCreatedBlockIdSumOfferingTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_OFFERING_TOKEN_DESC', + InvestmentsByCreatedBlockIdSumRaiseTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdSumRaiseTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdSumRaiseTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_RAISE_TOKEN_ASC', + InvestmentsByCreatedBlockIdSumRaiseTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_RAISE_TOKEN_DESC', + InvestmentsByCreatedBlockIdSumRaisingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_RAISING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdSumRaisingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_RAISING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdSumStoIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_STO_ID_ASC', + InvestmentsByCreatedBlockIdSumStoIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_STO_ID_DESC', + InvestmentsByCreatedBlockIdSumUpdatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdSumUpdatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InvestmentsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InvestmentsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + InvestmentsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + InvestmentsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdVariancePopulationDatetimeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + InvestmentsByCreatedBlockIdVariancePopulationDatetimeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + InvestmentsByCreatedBlockIdVariancePopulationIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + InvestmentsByCreatedBlockIdVariancePopulationIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + InvestmentsByCreatedBlockIdVariancePopulationInvestorIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INVESTOR_ID_ASC', + InvestmentsByCreatedBlockIdVariancePopulationInvestorIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INVESTOR_ID_DESC', + InvestmentsByCreatedBlockIdVariancePopulationOfferingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdVariancePopulationOfferingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdVariancePopulationOfferingTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdVariancePopulationOfferingTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdVariancePopulationOfferingTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_TOKEN_ASC', + InvestmentsByCreatedBlockIdVariancePopulationOfferingTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_TOKEN_DESC', + InvestmentsByCreatedBlockIdVariancePopulationRaiseTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdVariancePopulationRaiseTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdVariancePopulationRaiseTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISE_TOKEN_ASC', + InvestmentsByCreatedBlockIdVariancePopulationRaiseTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISE_TOKEN_DESC', + InvestmentsByCreatedBlockIdVariancePopulationRaisingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdVariancePopulationRaisingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdVariancePopulationStoIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STO_ID_ASC', + InvestmentsByCreatedBlockIdVariancePopulationStoIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STO_ID_DESC', + InvestmentsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InvestmentsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InvestmentsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + InvestmentsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + InvestmentsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InvestmentsByCreatedBlockIdVarianceSampleDatetimeAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + InvestmentsByCreatedBlockIdVarianceSampleDatetimeDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + InvestmentsByCreatedBlockIdVarianceSampleIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + InvestmentsByCreatedBlockIdVarianceSampleIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + InvestmentsByCreatedBlockIdVarianceSampleInvestorIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INVESTOR_ID_ASC', + InvestmentsByCreatedBlockIdVarianceSampleInvestorIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INVESTOR_ID_DESC', + InvestmentsByCreatedBlockIdVarianceSampleOfferingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdVarianceSampleOfferingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdVarianceSampleOfferingTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdVarianceSampleOfferingTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdVarianceSampleOfferingTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_ASC', + InvestmentsByCreatedBlockIdVarianceSampleOfferingTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_DESC', + InvestmentsByCreatedBlockIdVarianceSampleRaiseTokenAmountAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByCreatedBlockIdVarianceSampleRaiseTokenAmountDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByCreatedBlockIdVarianceSampleRaiseTokenAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISE_TOKEN_ASC', + InvestmentsByCreatedBlockIdVarianceSampleRaiseTokenDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISE_TOKEN_DESC', + InvestmentsByCreatedBlockIdVarianceSampleRaisingAssetIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_ASC', + InvestmentsByCreatedBlockIdVarianceSampleRaisingAssetIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_DESC', + InvestmentsByCreatedBlockIdVarianceSampleStoIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STO_ID_ASC', + InvestmentsByCreatedBlockIdVarianceSampleStoIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STO_ID_DESC', + InvestmentsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InvestmentsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'INVESTMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdAverageBlockRangeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + InvestmentsByUpdatedBlockIdAverageBlockRangeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + InvestmentsByUpdatedBlockIdAverageCreatedAtAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + InvestmentsByUpdatedBlockIdAverageCreatedAtDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + InvestmentsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdAverageDatetimeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + InvestmentsByUpdatedBlockIdAverageDatetimeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + InvestmentsByUpdatedBlockIdAverageIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + InvestmentsByUpdatedBlockIdAverageIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + InvestmentsByUpdatedBlockIdAverageInvestorIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_INVESTOR_ID_ASC', + InvestmentsByUpdatedBlockIdAverageInvestorIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_INVESTOR_ID_DESC', + InvestmentsByUpdatedBlockIdAverageOfferingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_OFFERING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdAverageOfferingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_OFFERING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdAverageOfferingTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdAverageOfferingTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdAverageOfferingTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_OFFERING_TOKEN_ASC', + InvestmentsByUpdatedBlockIdAverageOfferingTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_OFFERING_TOKEN_DESC', + InvestmentsByUpdatedBlockIdAverageRaiseTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdAverageRaiseTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdAverageRaiseTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISE_TOKEN_ASC', + InvestmentsByUpdatedBlockIdAverageRaiseTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISE_TOKEN_DESC', + InvestmentsByUpdatedBlockIdAverageRaisingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdAverageRaisingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdAverageStoIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_STO_ID_ASC', + InvestmentsByUpdatedBlockIdAverageStoIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_STO_ID_DESC', + InvestmentsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdCountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + InvestmentsByUpdatedBlockIdCountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + InvestmentsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InvestmentsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InvestmentsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + InvestmentsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + InvestmentsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdDistinctCountDatetimeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + InvestmentsByUpdatedBlockIdDistinctCountDatetimeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + InvestmentsByUpdatedBlockIdDistinctCountIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + InvestmentsByUpdatedBlockIdDistinctCountIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + InvestmentsByUpdatedBlockIdDistinctCountInvestorIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INVESTOR_ID_ASC', + InvestmentsByUpdatedBlockIdDistinctCountInvestorIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INVESTOR_ID_DESC', + InvestmentsByUpdatedBlockIdDistinctCountOfferingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdDistinctCountOfferingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdDistinctCountOfferingTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdDistinctCountOfferingTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdDistinctCountOfferingTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_TOKEN_ASC', + InvestmentsByUpdatedBlockIdDistinctCountOfferingTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_TOKEN_DESC', + InvestmentsByUpdatedBlockIdDistinctCountRaiseTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdDistinctCountRaiseTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdDistinctCountRaiseTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISE_TOKEN_ASC', + InvestmentsByUpdatedBlockIdDistinctCountRaiseTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISE_TOKEN_DESC', + InvestmentsByUpdatedBlockIdDistinctCountRaisingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdDistinctCountRaisingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdDistinctCountStoIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STO_ID_ASC', + InvestmentsByUpdatedBlockIdDistinctCountStoIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STO_ID_DESC', + InvestmentsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdMaxBlockRangeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + InvestmentsByUpdatedBlockIdMaxBlockRangeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + InvestmentsByUpdatedBlockIdMaxCreatedAtAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + InvestmentsByUpdatedBlockIdMaxCreatedAtDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + InvestmentsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdMaxDatetimeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + InvestmentsByUpdatedBlockIdMaxDatetimeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + InvestmentsByUpdatedBlockIdMaxIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + InvestmentsByUpdatedBlockIdMaxIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + InvestmentsByUpdatedBlockIdMaxInvestorIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_INVESTOR_ID_ASC', + InvestmentsByUpdatedBlockIdMaxInvestorIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_INVESTOR_ID_DESC', + InvestmentsByUpdatedBlockIdMaxOfferingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_OFFERING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdMaxOfferingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_OFFERING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdMaxOfferingTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdMaxOfferingTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdMaxOfferingTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_OFFERING_TOKEN_ASC', + InvestmentsByUpdatedBlockIdMaxOfferingTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_OFFERING_TOKEN_DESC', + InvestmentsByUpdatedBlockIdMaxRaiseTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdMaxRaiseTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdMaxRaiseTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_RAISE_TOKEN_ASC', + InvestmentsByUpdatedBlockIdMaxRaiseTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_RAISE_TOKEN_DESC', + InvestmentsByUpdatedBlockIdMaxRaisingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_RAISING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdMaxRaisingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_RAISING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdMaxStoIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_STO_ID_ASC', + InvestmentsByUpdatedBlockIdMaxStoIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_STO_ID_DESC', + InvestmentsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdMinBlockRangeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + InvestmentsByUpdatedBlockIdMinBlockRangeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + InvestmentsByUpdatedBlockIdMinCreatedAtAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + InvestmentsByUpdatedBlockIdMinCreatedAtDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + InvestmentsByUpdatedBlockIdMinCreatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdMinCreatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdMinDatetimeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + InvestmentsByUpdatedBlockIdMinDatetimeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + InvestmentsByUpdatedBlockIdMinIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + InvestmentsByUpdatedBlockIdMinIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + InvestmentsByUpdatedBlockIdMinInvestorIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_INVESTOR_ID_ASC', + InvestmentsByUpdatedBlockIdMinInvestorIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_INVESTOR_ID_DESC', + InvestmentsByUpdatedBlockIdMinOfferingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_OFFERING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdMinOfferingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_OFFERING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdMinOfferingTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdMinOfferingTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdMinOfferingTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_OFFERING_TOKEN_ASC', + InvestmentsByUpdatedBlockIdMinOfferingTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_OFFERING_TOKEN_DESC', + InvestmentsByUpdatedBlockIdMinRaiseTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdMinRaiseTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdMinRaiseTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_RAISE_TOKEN_ASC', + InvestmentsByUpdatedBlockIdMinRaiseTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_RAISE_TOKEN_DESC', + InvestmentsByUpdatedBlockIdMinRaisingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_RAISING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdMinRaisingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_RAISING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdMinStoIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_STO_ID_ASC', + InvestmentsByUpdatedBlockIdMinStoIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_STO_ID_DESC', + InvestmentsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationDatetimeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationDatetimeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationInvestorIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INVESTOR_ID_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationInvestorIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INVESTOR_ID_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationOfferingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationOfferingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationOfferingTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationOfferingTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationOfferingTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_TOKEN_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationOfferingTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_TOKEN_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationRaiseTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationRaiseTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationRaiseTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISE_TOKEN_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationRaiseTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISE_TOKEN_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationRaisingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationRaisingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationStoIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STO_ID_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationStoIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STO_ID_DESC', + InvestmentsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InvestmentsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InvestmentsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + InvestmentsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + InvestmentsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdStddevSampleDatetimeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + InvestmentsByUpdatedBlockIdStddevSampleDatetimeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + InvestmentsByUpdatedBlockIdStddevSampleIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + InvestmentsByUpdatedBlockIdStddevSampleIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + InvestmentsByUpdatedBlockIdStddevSampleInvestorIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INVESTOR_ID_ASC', + InvestmentsByUpdatedBlockIdStddevSampleInvestorIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INVESTOR_ID_DESC', + InvestmentsByUpdatedBlockIdStddevSampleOfferingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdStddevSampleOfferingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdStddevSampleOfferingTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdStddevSampleOfferingTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdStddevSampleOfferingTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_TOKEN_ASC', + InvestmentsByUpdatedBlockIdStddevSampleOfferingTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_TOKEN_DESC', + InvestmentsByUpdatedBlockIdStddevSampleRaiseTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdStddevSampleRaiseTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdStddevSampleRaiseTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISE_TOKEN_ASC', + InvestmentsByUpdatedBlockIdStddevSampleRaiseTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISE_TOKEN_DESC', + InvestmentsByUpdatedBlockIdStddevSampleRaisingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdStddevSampleRaisingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdStddevSampleStoIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STO_ID_ASC', + InvestmentsByUpdatedBlockIdStddevSampleStoIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STO_ID_DESC', + InvestmentsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdSumBlockRangeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + InvestmentsByUpdatedBlockIdSumBlockRangeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + InvestmentsByUpdatedBlockIdSumCreatedAtAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + InvestmentsByUpdatedBlockIdSumCreatedAtDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + InvestmentsByUpdatedBlockIdSumCreatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdSumCreatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdSumDatetimeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + InvestmentsByUpdatedBlockIdSumDatetimeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + InvestmentsByUpdatedBlockIdSumIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + InvestmentsByUpdatedBlockIdSumIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + InvestmentsByUpdatedBlockIdSumInvestorIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_INVESTOR_ID_ASC', + InvestmentsByUpdatedBlockIdSumInvestorIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_INVESTOR_ID_DESC', + InvestmentsByUpdatedBlockIdSumOfferingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_OFFERING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdSumOfferingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_OFFERING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdSumOfferingTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdSumOfferingTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdSumOfferingTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_OFFERING_TOKEN_ASC', + InvestmentsByUpdatedBlockIdSumOfferingTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_OFFERING_TOKEN_DESC', + InvestmentsByUpdatedBlockIdSumRaiseTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdSumRaiseTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdSumRaiseTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_RAISE_TOKEN_ASC', + InvestmentsByUpdatedBlockIdSumRaiseTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_RAISE_TOKEN_DESC', + InvestmentsByUpdatedBlockIdSumRaisingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_RAISING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdSumRaisingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_RAISING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdSumStoIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_STO_ID_ASC', + InvestmentsByUpdatedBlockIdSumStoIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_STO_ID_DESC', + InvestmentsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationDatetimeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationDatetimeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationInvestorIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INVESTOR_ID_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationInvestorIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INVESTOR_ID_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationOfferingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationOfferingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationOfferingTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationOfferingTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationOfferingTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_TOKEN_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationOfferingTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_TOKEN_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationRaiseTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationRaiseTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationRaiseTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISE_TOKEN_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationRaiseTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISE_TOKEN_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationRaisingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationRaisingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationStoIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STO_ID_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationStoIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STO_ID_DESC', + InvestmentsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleDatetimeAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleDatetimeDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleInvestorIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INVESTOR_ID_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleInvestorIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INVESTOR_ID_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleOfferingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleOfferingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleOfferingTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleOfferingTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleOfferingTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleOfferingTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleRaiseTokenAmountAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleRaiseTokenAmountDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleRaiseTokenAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISE_TOKEN_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleRaiseTokenDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISE_TOKEN_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleRaisingAssetIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleRaisingAssetIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleStoIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STO_ID_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleStoIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STO_ID_DESC', + InvestmentsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InvestmentsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'INVESTMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdAverageAddressesAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_ADDRESSES_ASC', + LegsByCreatedBlockIdAverageAddressesDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_ADDRESSES_DESC', + LegsByCreatedBlockIdAverageAmountAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + LegsByCreatedBlockIdAverageAmountDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + LegsByCreatedBlockIdAverageAssetIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + LegsByCreatedBlockIdAverageAssetIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + LegsByCreatedBlockIdAverageBlockRangeAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + LegsByCreatedBlockIdAverageBlockRangeDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + LegsByCreatedBlockIdAverageCreatedAtAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + LegsByCreatedBlockIdAverageCreatedAtDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + LegsByCreatedBlockIdAverageCreatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdAverageCreatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdAverageFromAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_ASC', + LegsByCreatedBlockIdAverageFromDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_DESC', + LegsByCreatedBlockIdAverageFromPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_PORTFOLIO_ASC', + LegsByCreatedBlockIdAverageFromPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_PORTFOLIO_DESC', + LegsByCreatedBlockIdAverageIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + LegsByCreatedBlockIdAverageIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + LegsByCreatedBlockIdAverageInstructionIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC', + LegsByCreatedBlockIdAverageInstructionIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC', + LegsByCreatedBlockIdAverageLegIndexAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_LEG_INDEX_ASC', + LegsByCreatedBlockIdAverageLegIndexDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_LEG_INDEX_DESC', + LegsByCreatedBlockIdAverageLegTypeAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_LEG_TYPE_ASC', + LegsByCreatedBlockIdAverageLegTypeDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_LEG_TYPE_DESC', + LegsByCreatedBlockIdAverageNftIdsAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_NFT_IDS_ASC', + LegsByCreatedBlockIdAverageNftIdsDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_NFT_IDS_DESC', + LegsByCreatedBlockIdAverageTickerAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_TICKER_ASC', + LegsByCreatedBlockIdAverageTickerDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_TICKER_DESC', + LegsByCreatedBlockIdAverageToAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_TO_ASC', + LegsByCreatedBlockIdAverageToDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_TO_DESC', + LegsByCreatedBlockIdAverageToPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_TO_PORTFOLIO_ASC', + LegsByCreatedBlockIdAverageToPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_TO_PORTFOLIO_DESC', + LegsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdCountAsc = 'LEGS_BY_CREATED_BLOCK_ID_COUNT_ASC', + LegsByCreatedBlockIdCountDesc = 'LEGS_BY_CREATED_BLOCK_ID_COUNT_DESC', + LegsByCreatedBlockIdDistinctCountAddressesAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDRESSES_ASC', + LegsByCreatedBlockIdDistinctCountAddressesDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDRESSES_DESC', + LegsByCreatedBlockIdDistinctCountAmountAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + LegsByCreatedBlockIdDistinctCountAmountDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + LegsByCreatedBlockIdDistinctCountAssetIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + LegsByCreatedBlockIdDistinctCountAssetIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + LegsByCreatedBlockIdDistinctCountBlockRangeAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + LegsByCreatedBlockIdDistinctCountBlockRangeDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + LegsByCreatedBlockIdDistinctCountCreatedAtAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + LegsByCreatedBlockIdDistinctCountCreatedAtDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + LegsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdDistinctCountFromAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_ASC', + LegsByCreatedBlockIdDistinctCountFromDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_DESC', + LegsByCreatedBlockIdDistinctCountFromPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_PORTFOLIO_ASC', + LegsByCreatedBlockIdDistinctCountFromPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_PORTFOLIO_DESC', + LegsByCreatedBlockIdDistinctCountIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + LegsByCreatedBlockIdDistinctCountIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + LegsByCreatedBlockIdDistinctCountInstructionIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + LegsByCreatedBlockIdDistinctCountInstructionIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + LegsByCreatedBlockIdDistinctCountLegIndexAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LEG_INDEX_ASC', + LegsByCreatedBlockIdDistinctCountLegIndexDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LEG_INDEX_DESC', + LegsByCreatedBlockIdDistinctCountLegTypeAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LEG_TYPE_ASC', + LegsByCreatedBlockIdDistinctCountLegTypeDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LEG_TYPE_DESC', + LegsByCreatedBlockIdDistinctCountNftIdsAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_ASC', + LegsByCreatedBlockIdDistinctCountNftIdsDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_DESC', + LegsByCreatedBlockIdDistinctCountTickerAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TICKER_ASC', + LegsByCreatedBlockIdDistinctCountTickerDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TICKER_DESC', + LegsByCreatedBlockIdDistinctCountToAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ASC', + LegsByCreatedBlockIdDistinctCountToDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_DESC', + LegsByCreatedBlockIdDistinctCountToPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_PORTFOLIO_ASC', + LegsByCreatedBlockIdDistinctCountToPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_PORTFOLIO_DESC', + LegsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdMaxAddressesAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_ADDRESSES_ASC', + LegsByCreatedBlockIdMaxAddressesDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_ADDRESSES_DESC', + LegsByCreatedBlockIdMaxAmountAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + LegsByCreatedBlockIdMaxAmountDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + LegsByCreatedBlockIdMaxAssetIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + LegsByCreatedBlockIdMaxAssetIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + LegsByCreatedBlockIdMaxBlockRangeAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + LegsByCreatedBlockIdMaxBlockRangeDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + LegsByCreatedBlockIdMaxCreatedAtAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + LegsByCreatedBlockIdMaxCreatedAtDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + LegsByCreatedBlockIdMaxCreatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdMaxCreatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdMaxFromAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_FROM_ASC', + LegsByCreatedBlockIdMaxFromDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_FROM_DESC', + LegsByCreatedBlockIdMaxFromPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_FROM_PORTFOLIO_ASC', + LegsByCreatedBlockIdMaxFromPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_FROM_PORTFOLIO_DESC', + LegsByCreatedBlockIdMaxIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + LegsByCreatedBlockIdMaxIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + LegsByCreatedBlockIdMaxInstructionIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC', + LegsByCreatedBlockIdMaxInstructionIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC', + LegsByCreatedBlockIdMaxLegIndexAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_LEG_INDEX_ASC', + LegsByCreatedBlockIdMaxLegIndexDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_LEG_INDEX_DESC', + LegsByCreatedBlockIdMaxLegTypeAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_LEG_TYPE_ASC', + LegsByCreatedBlockIdMaxLegTypeDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_LEG_TYPE_DESC', + LegsByCreatedBlockIdMaxNftIdsAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_NFT_IDS_ASC', + LegsByCreatedBlockIdMaxNftIdsDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_NFT_IDS_DESC', + LegsByCreatedBlockIdMaxTickerAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_TICKER_ASC', + LegsByCreatedBlockIdMaxTickerDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_TICKER_DESC', + LegsByCreatedBlockIdMaxToAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_TO_ASC', + LegsByCreatedBlockIdMaxToDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_TO_DESC', + LegsByCreatedBlockIdMaxToPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_TO_PORTFOLIO_ASC', + LegsByCreatedBlockIdMaxToPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_TO_PORTFOLIO_DESC', + LegsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdMinAddressesAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_ADDRESSES_ASC', + LegsByCreatedBlockIdMinAddressesDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_ADDRESSES_DESC', + LegsByCreatedBlockIdMinAmountAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + LegsByCreatedBlockIdMinAmountDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + LegsByCreatedBlockIdMinAssetIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + LegsByCreatedBlockIdMinAssetIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + LegsByCreatedBlockIdMinBlockRangeAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + LegsByCreatedBlockIdMinBlockRangeDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + LegsByCreatedBlockIdMinCreatedAtAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + LegsByCreatedBlockIdMinCreatedAtDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + LegsByCreatedBlockIdMinCreatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdMinCreatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdMinFromAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_FROM_ASC', + LegsByCreatedBlockIdMinFromDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_FROM_DESC', + LegsByCreatedBlockIdMinFromPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_FROM_PORTFOLIO_ASC', + LegsByCreatedBlockIdMinFromPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_FROM_PORTFOLIO_DESC', + LegsByCreatedBlockIdMinIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + LegsByCreatedBlockIdMinIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + LegsByCreatedBlockIdMinInstructionIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC', + LegsByCreatedBlockIdMinInstructionIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC', + LegsByCreatedBlockIdMinLegIndexAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_LEG_INDEX_ASC', + LegsByCreatedBlockIdMinLegIndexDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_LEG_INDEX_DESC', + LegsByCreatedBlockIdMinLegTypeAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_LEG_TYPE_ASC', + LegsByCreatedBlockIdMinLegTypeDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_LEG_TYPE_DESC', + LegsByCreatedBlockIdMinNftIdsAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_NFT_IDS_ASC', + LegsByCreatedBlockIdMinNftIdsDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_NFT_IDS_DESC', + LegsByCreatedBlockIdMinTickerAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_TICKER_ASC', + LegsByCreatedBlockIdMinTickerDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_TICKER_DESC', + LegsByCreatedBlockIdMinToAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_TO_ASC', + LegsByCreatedBlockIdMinToDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_TO_DESC', + LegsByCreatedBlockIdMinToPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_TO_PORTFOLIO_ASC', + LegsByCreatedBlockIdMinToPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_TO_PORTFOLIO_DESC', + LegsByCreatedBlockIdMinUpdatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdMinUpdatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdStddevPopulationAddressesAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDRESSES_ASC', + LegsByCreatedBlockIdStddevPopulationAddressesDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDRESSES_DESC', + LegsByCreatedBlockIdStddevPopulationAmountAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + LegsByCreatedBlockIdStddevPopulationAmountDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + LegsByCreatedBlockIdStddevPopulationAssetIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + LegsByCreatedBlockIdStddevPopulationAssetIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + LegsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + LegsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + LegsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + LegsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + LegsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdStddevPopulationFromAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_ASC', + LegsByCreatedBlockIdStddevPopulationFromDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_DESC', + LegsByCreatedBlockIdStddevPopulationFromPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_PORTFOLIO_ASC', + LegsByCreatedBlockIdStddevPopulationFromPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_PORTFOLIO_DESC', + LegsByCreatedBlockIdStddevPopulationIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + LegsByCreatedBlockIdStddevPopulationIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + LegsByCreatedBlockIdStddevPopulationInstructionIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + LegsByCreatedBlockIdStddevPopulationInstructionIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + LegsByCreatedBlockIdStddevPopulationLegIndexAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LEG_INDEX_ASC', + LegsByCreatedBlockIdStddevPopulationLegIndexDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LEG_INDEX_DESC', + LegsByCreatedBlockIdStddevPopulationLegTypeAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LEG_TYPE_ASC', + LegsByCreatedBlockIdStddevPopulationLegTypeDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LEG_TYPE_DESC', + LegsByCreatedBlockIdStddevPopulationNftIdsAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_ASC', + LegsByCreatedBlockIdStddevPopulationNftIdsDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_DESC', + LegsByCreatedBlockIdStddevPopulationTickerAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TICKER_ASC', + LegsByCreatedBlockIdStddevPopulationTickerDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TICKER_DESC', + LegsByCreatedBlockIdStddevPopulationToAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ASC', + LegsByCreatedBlockIdStddevPopulationToDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_DESC', + LegsByCreatedBlockIdStddevPopulationToPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_PORTFOLIO_ASC', + LegsByCreatedBlockIdStddevPopulationToPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_PORTFOLIO_DESC', + LegsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdStddevSampleAddressesAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESSES_ASC', + LegsByCreatedBlockIdStddevSampleAddressesDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESSES_DESC', + LegsByCreatedBlockIdStddevSampleAmountAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + LegsByCreatedBlockIdStddevSampleAmountDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + LegsByCreatedBlockIdStddevSampleAssetIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + LegsByCreatedBlockIdStddevSampleAssetIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + LegsByCreatedBlockIdStddevSampleBlockRangeAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + LegsByCreatedBlockIdStddevSampleBlockRangeDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + LegsByCreatedBlockIdStddevSampleCreatedAtAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + LegsByCreatedBlockIdStddevSampleCreatedAtDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + LegsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdStddevSampleFromAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ASC', + LegsByCreatedBlockIdStddevSampleFromDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_DESC', + LegsByCreatedBlockIdStddevSampleFromPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_ASC', + LegsByCreatedBlockIdStddevSampleFromPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_DESC', + LegsByCreatedBlockIdStddevSampleIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + LegsByCreatedBlockIdStddevSampleIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + LegsByCreatedBlockIdStddevSampleInstructionIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + LegsByCreatedBlockIdStddevSampleInstructionIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + LegsByCreatedBlockIdStddevSampleLegIndexAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LEG_INDEX_ASC', + LegsByCreatedBlockIdStddevSampleLegIndexDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LEG_INDEX_DESC', + LegsByCreatedBlockIdStddevSampleLegTypeAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LEG_TYPE_ASC', + LegsByCreatedBlockIdStddevSampleLegTypeDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LEG_TYPE_DESC', + LegsByCreatedBlockIdStddevSampleNftIdsAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + LegsByCreatedBlockIdStddevSampleNftIdsDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + LegsByCreatedBlockIdStddevSampleTickerAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_ASC', + LegsByCreatedBlockIdStddevSampleTickerDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_DESC', + LegsByCreatedBlockIdStddevSampleToAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ASC', + LegsByCreatedBlockIdStddevSampleToDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_DESC', + LegsByCreatedBlockIdStddevSampleToPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ASC', + LegsByCreatedBlockIdStddevSampleToPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_PORTFOLIO_DESC', + LegsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdSumAddressesAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_ADDRESSES_ASC', + LegsByCreatedBlockIdSumAddressesDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_ADDRESSES_DESC', + LegsByCreatedBlockIdSumAmountAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + LegsByCreatedBlockIdSumAmountDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + LegsByCreatedBlockIdSumAssetIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + LegsByCreatedBlockIdSumAssetIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + LegsByCreatedBlockIdSumBlockRangeAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + LegsByCreatedBlockIdSumBlockRangeDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + LegsByCreatedBlockIdSumCreatedAtAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + LegsByCreatedBlockIdSumCreatedAtDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + LegsByCreatedBlockIdSumCreatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdSumCreatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdSumFromAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_FROM_ASC', + LegsByCreatedBlockIdSumFromDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_FROM_DESC', + LegsByCreatedBlockIdSumFromPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_FROM_PORTFOLIO_ASC', + LegsByCreatedBlockIdSumFromPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_FROM_PORTFOLIO_DESC', + LegsByCreatedBlockIdSumIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + LegsByCreatedBlockIdSumIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + LegsByCreatedBlockIdSumInstructionIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC', + LegsByCreatedBlockIdSumInstructionIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC', + LegsByCreatedBlockIdSumLegIndexAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_LEG_INDEX_ASC', + LegsByCreatedBlockIdSumLegIndexDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_LEG_INDEX_DESC', + LegsByCreatedBlockIdSumLegTypeAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_LEG_TYPE_ASC', + LegsByCreatedBlockIdSumLegTypeDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_LEG_TYPE_DESC', + LegsByCreatedBlockIdSumNftIdsAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_NFT_IDS_ASC', + LegsByCreatedBlockIdSumNftIdsDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_NFT_IDS_DESC', + LegsByCreatedBlockIdSumTickerAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_TICKER_ASC', + LegsByCreatedBlockIdSumTickerDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_TICKER_DESC', + LegsByCreatedBlockIdSumToAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_TO_ASC', + LegsByCreatedBlockIdSumToDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_TO_DESC', + LegsByCreatedBlockIdSumToPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_TO_PORTFOLIO_ASC', + LegsByCreatedBlockIdSumToPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_TO_PORTFOLIO_DESC', + LegsByCreatedBlockIdSumUpdatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdSumUpdatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdVariancePopulationAddressesAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESSES_ASC', + LegsByCreatedBlockIdVariancePopulationAddressesDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESSES_DESC', + LegsByCreatedBlockIdVariancePopulationAmountAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + LegsByCreatedBlockIdVariancePopulationAmountDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + LegsByCreatedBlockIdVariancePopulationAssetIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + LegsByCreatedBlockIdVariancePopulationAssetIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + LegsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + LegsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + LegsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + LegsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + LegsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdVariancePopulationFromAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ASC', + LegsByCreatedBlockIdVariancePopulationFromDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_DESC', + LegsByCreatedBlockIdVariancePopulationFromPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_ASC', + LegsByCreatedBlockIdVariancePopulationFromPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_DESC', + LegsByCreatedBlockIdVariancePopulationIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + LegsByCreatedBlockIdVariancePopulationIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + LegsByCreatedBlockIdVariancePopulationInstructionIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + LegsByCreatedBlockIdVariancePopulationInstructionIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + LegsByCreatedBlockIdVariancePopulationLegIndexAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LEG_INDEX_ASC', + LegsByCreatedBlockIdVariancePopulationLegIndexDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LEG_INDEX_DESC', + LegsByCreatedBlockIdVariancePopulationLegTypeAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LEG_TYPE_ASC', + LegsByCreatedBlockIdVariancePopulationLegTypeDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LEG_TYPE_DESC', + LegsByCreatedBlockIdVariancePopulationNftIdsAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + LegsByCreatedBlockIdVariancePopulationNftIdsDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + LegsByCreatedBlockIdVariancePopulationTickerAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_ASC', + LegsByCreatedBlockIdVariancePopulationTickerDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_DESC', + LegsByCreatedBlockIdVariancePopulationToAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ASC', + LegsByCreatedBlockIdVariancePopulationToDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_DESC', + LegsByCreatedBlockIdVariancePopulationToPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ASC', + LegsByCreatedBlockIdVariancePopulationToPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_PORTFOLIO_DESC', + LegsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdVarianceSampleAddressesAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESSES_ASC', + LegsByCreatedBlockIdVarianceSampleAddressesDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESSES_DESC', + LegsByCreatedBlockIdVarianceSampleAmountAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + LegsByCreatedBlockIdVarianceSampleAmountDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + LegsByCreatedBlockIdVarianceSampleAssetIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + LegsByCreatedBlockIdVarianceSampleAssetIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + LegsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + LegsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + LegsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + LegsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + LegsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + LegsByCreatedBlockIdVarianceSampleFromAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ASC', + LegsByCreatedBlockIdVarianceSampleFromDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_DESC', + LegsByCreatedBlockIdVarianceSampleFromPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_ASC', + LegsByCreatedBlockIdVarianceSampleFromPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_DESC', + LegsByCreatedBlockIdVarianceSampleIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + LegsByCreatedBlockIdVarianceSampleIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + LegsByCreatedBlockIdVarianceSampleInstructionIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + LegsByCreatedBlockIdVarianceSampleInstructionIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + LegsByCreatedBlockIdVarianceSampleLegIndexAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_INDEX_ASC', + LegsByCreatedBlockIdVarianceSampleLegIndexDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_INDEX_DESC', + LegsByCreatedBlockIdVarianceSampleLegTypeAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_TYPE_ASC', + LegsByCreatedBlockIdVarianceSampleLegTypeDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_TYPE_DESC', + LegsByCreatedBlockIdVarianceSampleNftIdsAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + LegsByCreatedBlockIdVarianceSampleNftIdsDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + LegsByCreatedBlockIdVarianceSampleTickerAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_ASC', + LegsByCreatedBlockIdVarianceSampleTickerDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_DESC', + LegsByCreatedBlockIdVarianceSampleToAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ASC', + LegsByCreatedBlockIdVarianceSampleToDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_DESC', + LegsByCreatedBlockIdVarianceSampleToPortfolioAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ASC', + LegsByCreatedBlockIdVarianceSampleToPortfolioDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_DESC', + LegsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + LegsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'LEGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdAverageAddressesAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDRESSES_ASC', + LegsByUpdatedBlockIdAverageAddressesDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDRESSES_DESC', + LegsByUpdatedBlockIdAverageAmountAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + LegsByUpdatedBlockIdAverageAmountDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + LegsByUpdatedBlockIdAverageAssetIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + LegsByUpdatedBlockIdAverageAssetIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + LegsByUpdatedBlockIdAverageBlockRangeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + LegsByUpdatedBlockIdAverageBlockRangeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + LegsByUpdatedBlockIdAverageCreatedAtAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + LegsByUpdatedBlockIdAverageCreatedAtDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + LegsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdAverageFromAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_ASC', + LegsByUpdatedBlockIdAverageFromDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_DESC', + LegsByUpdatedBlockIdAverageFromPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_PORTFOLIO_ASC', + LegsByUpdatedBlockIdAverageFromPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_PORTFOLIO_DESC', + LegsByUpdatedBlockIdAverageIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + LegsByUpdatedBlockIdAverageIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + LegsByUpdatedBlockIdAverageInstructionIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_ASC', + LegsByUpdatedBlockIdAverageInstructionIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_INSTRUCTION_ID_DESC', + LegsByUpdatedBlockIdAverageLegIndexAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_LEG_INDEX_ASC', + LegsByUpdatedBlockIdAverageLegIndexDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_LEG_INDEX_DESC', + LegsByUpdatedBlockIdAverageLegTypeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_LEG_TYPE_ASC', + LegsByUpdatedBlockIdAverageLegTypeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_LEG_TYPE_DESC', + LegsByUpdatedBlockIdAverageNftIdsAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_NFT_IDS_ASC', + LegsByUpdatedBlockIdAverageNftIdsDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_NFT_IDS_DESC', + LegsByUpdatedBlockIdAverageTickerAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_TICKER_ASC', + LegsByUpdatedBlockIdAverageTickerDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_TICKER_DESC', + LegsByUpdatedBlockIdAverageToAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ASC', + LegsByUpdatedBlockIdAverageToDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_DESC', + LegsByUpdatedBlockIdAverageToPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_PORTFOLIO_ASC', + LegsByUpdatedBlockIdAverageToPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_PORTFOLIO_DESC', + LegsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdCountAsc = 'LEGS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + LegsByUpdatedBlockIdCountDesc = 'LEGS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + LegsByUpdatedBlockIdDistinctCountAddressesAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDRESSES_ASC', + LegsByUpdatedBlockIdDistinctCountAddressesDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDRESSES_DESC', + LegsByUpdatedBlockIdDistinctCountAmountAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + LegsByUpdatedBlockIdDistinctCountAmountDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + LegsByUpdatedBlockIdDistinctCountAssetIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + LegsByUpdatedBlockIdDistinctCountAssetIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + LegsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + LegsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + LegsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + LegsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + LegsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdDistinctCountFromAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_ASC', + LegsByUpdatedBlockIdDistinctCountFromDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_DESC', + LegsByUpdatedBlockIdDistinctCountFromPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_PORTFOLIO_ASC', + LegsByUpdatedBlockIdDistinctCountFromPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_PORTFOLIO_DESC', + LegsByUpdatedBlockIdDistinctCountIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + LegsByUpdatedBlockIdDistinctCountIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + LegsByUpdatedBlockIdDistinctCountInstructionIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + LegsByUpdatedBlockIdDistinctCountInstructionIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + LegsByUpdatedBlockIdDistinctCountLegIndexAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LEG_INDEX_ASC', + LegsByUpdatedBlockIdDistinctCountLegIndexDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LEG_INDEX_DESC', + LegsByUpdatedBlockIdDistinctCountLegTypeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LEG_TYPE_ASC', + LegsByUpdatedBlockIdDistinctCountLegTypeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LEG_TYPE_DESC', + LegsByUpdatedBlockIdDistinctCountNftIdsAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_ASC', + LegsByUpdatedBlockIdDistinctCountNftIdsDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_DESC', + LegsByUpdatedBlockIdDistinctCountTickerAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TICKER_ASC', + LegsByUpdatedBlockIdDistinctCountTickerDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TICKER_DESC', + LegsByUpdatedBlockIdDistinctCountToAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ASC', + LegsByUpdatedBlockIdDistinctCountToDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_DESC', + LegsByUpdatedBlockIdDistinctCountToPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_PORTFOLIO_ASC', + LegsByUpdatedBlockIdDistinctCountToPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_PORTFOLIO_DESC', + LegsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdMaxAddressesAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_ADDRESSES_ASC', + LegsByUpdatedBlockIdMaxAddressesDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_ADDRESSES_DESC', + LegsByUpdatedBlockIdMaxAmountAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + LegsByUpdatedBlockIdMaxAmountDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + LegsByUpdatedBlockIdMaxAssetIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + LegsByUpdatedBlockIdMaxAssetIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + LegsByUpdatedBlockIdMaxBlockRangeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + LegsByUpdatedBlockIdMaxBlockRangeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + LegsByUpdatedBlockIdMaxCreatedAtAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + LegsByUpdatedBlockIdMaxCreatedAtDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + LegsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdMaxFromAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_FROM_ASC', + LegsByUpdatedBlockIdMaxFromDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_FROM_DESC', + LegsByUpdatedBlockIdMaxFromPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_FROM_PORTFOLIO_ASC', + LegsByUpdatedBlockIdMaxFromPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_FROM_PORTFOLIO_DESC', + LegsByUpdatedBlockIdMaxIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + LegsByUpdatedBlockIdMaxIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + LegsByUpdatedBlockIdMaxInstructionIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_ASC', + LegsByUpdatedBlockIdMaxInstructionIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_INSTRUCTION_ID_DESC', + LegsByUpdatedBlockIdMaxLegIndexAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_LEG_INDEX_ASC', + LegsByUpdatedBlockIdMaxLegIndexDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_LEG_INDEX_DESC', + LegsByUpdatedBlockIdMaxLegTypeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_LEG_TYPE_ASC', + LegsByUpdatedBlockIdMaxLegTypeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_LEG_TYPE_DESC', + LegsByUpdatedBlockIdMaxNftIdsAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_NFT_IDS_ASC', + LegsByUpdatedBlockIdMaxNftIdsDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_NFT_IDS_DESC', + LegsByUpdatedBlockIdMaxTickerAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_TICKER_ASC', + LegsByUpdatedBlockIdMaxTickerDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_TICKER_DESC', + LegsByUpdatedBlockIdMaxToAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_TO_ASC', + LegsByUpdatedBlockIdMaxToDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_TO_DESC', + LegsByUpdatedBlockIdMaxToPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_TO_PORTFOLIO_ASC', + LegsByUpdatedBlockIdMaxToPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_TO_PORTFOLIO_DESC', + LegsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdMinAddressesAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_ADDRESSES_ASC', + LegsByUpdatedBlockIdMinAddressesDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_ADDRESSES_DESC', + LegsByUpdatedBlockIdMinAmountAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + LegsByUpdatedBlockIdMinAmountDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + LegsByUpdatedBlockIdMinAssetIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + LegsByUpdatedBlockIdMinAssetIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + LegsByUpdatedBlockIdMinBlockRangeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + LegsByUpdatedBlockIdMinBlockRangeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + LegsByUpdatedBlockIdMinCreatedAtAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + LegsByUpdatedBlockIdMinCreatedAtDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + LegsByUpdatedBlockIdMinCreatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdMinCreatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdMinFromAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_FROM_ASC', + LegsByUpdatedBlockIdMinFromDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_FROM_DESC', + LegsByUpdatedBlockIdMinFromPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_FROM_PORTFOLIO_ASC', + LegsByUpdatedBlockIdMinFromPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_FROM_PORTFOLIO_DESC', + LegsByUpdatedBlockIdMinIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + LegsByUpdatedBlockIdMinIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + LegsByUpdatedBlockIdMinInstructionIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_ASC', + LegsByUpdatedBlockIdMinInstructionIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_INSTRUCTION_ID_DESC', + LegsByUpdatedBlockIdMinLegIndexAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_LEG_INDEX_ASC', + LegsByUpdatedBlockIdMinLegIndexDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_LEG_INDEX_DESC', + LegsByUpdatedBlockIdMinLegTypeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_LEG_TYPE_ASC', + LegsByUpdatedBlockIdMinLegTypeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_LEG_TYPE_DESC', + LegsByUpdatedBlockIdMinNftIdsAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_NFT_IDS_ASC', + LegsByUpdatedBlockIdMinNftIdsDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_NFT_IDS_DESC', + LegsByUpdatedBlockIdMinTickerAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_TICKER_ASC', + LegsByUpdatedBlockIdMinTickerDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_TICKER_DESC', + LegsByUpdatedBlockIdMinToAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_TO_ASC', + LegsByUpdatedBlockIdMinToDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_TO_DESC', + LegsByUpdatedBlockIdMinToPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_TO_PORTFOLIO_ASC', + LegsByUpdatedBlockIdMinToPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_TO_PORTFOLIO_DESC', + LegsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdStddevPopulationAddressesAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDRESSES_ASC', + LegsByUpdatedBlockIdStddevPopulationAddressesDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDRESSES_DESC', + LegsByUpdatedBlockIdStddevPopulationAmountAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + LegsByUpdatedBlockIdStddevPopulationAmountDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + LegsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + LegsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + LegsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + LegsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + LegsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + LegsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + LegsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdStddevPopulationFromAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_ASC', + LegsByUpdatedBlockIdStddevPopulationFromDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_DESC', + LegsByUpdatedBlockIdStddevPopulationFromPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_PORTFOLIO_ASC', + LegsByUpdatedBlockIdStddevPopulationFromPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_PORTFOLIO_DESC', + LegsByUpdatedBlockIdStddevPopulationIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + LegsByUpdatedBlockIdStddevPopulationIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + LegsByUpdatedBlockIdStddevPopulationInstructionIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + LegsByUpdatedBlockIdStddevPopulationInstructionIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + LegsByUpdatedBlockIdStddevPopulationLegIndexAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LEG_INDEX_ASC', + LegsByUpdatedBlockIdStddevPopulationLegIndexDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LEG_INDEX_DESC', + LegsByUpdatedBlockIdStddevPopulationLegTypeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LEG_TYPE_ASC', + LegsByUpdatedBlockIdStddevPopulationLegTypeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LEG_TYPE_DESC', + LegsByUpdatedBlockIdStddevPopulationNftIdsAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_ASC', + LegsByUpdatedBlockIdStddevPopulationNftIdsDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_DESC', + LegsByUpdatedBlockIdStddevPopulationTickerAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TICKER_ASC', + LegsByUpdatedBlockIdStddevPopulationTickerDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TICKER_DESC', + LegsByUpdatedBlockIdStddevPopulationToAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ASC', + LegsByUpdatedBlockIdStddevPopulationToDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_DESC', + LegsByUpdatedBlockIdStddevPopulationToPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_PORTFOLIO_ASC', + LegsByUpdatedBlockIdStddevPopulationToPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_PORTFOLIO_DESC', + LegsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdStddevSampleAddressesAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESSES_ASC', + LegsByUpdatedBlockIdStddevSampleAddressesDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESSES_DESC', + LegsByUpdatedBlockIdStddevSampleAmountAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + LegsByUpdatedBlockIdStddevSampleAmountDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + LegsByUpdatedBlockIdStddevSampleAssetIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + LegsByUpdatedBlockIdStddevSampleAssetIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + LegsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + LegsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + LegsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + LegsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + LegsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdStddevSampleFromAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ASC', + LegsByUpdatedBlockIdStddevSampleFromDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_DESC', + LegsByUpdatedBlockIdStddevSampleFromPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_ASC', + LegsByUpdatedBlockIdStddevSampleFromPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_DESC', + LegsByUpdatedBlockIdStddevSampleIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + LegsByUpdatedBlockIdStddevSampleIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + LegsByUpdatedBlockIdStddevSampleInstructionIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + LegsByUpdatedBlockIdStddevSampleInstructionIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + LegsByUpdatedBlockIdStddevSampleLegIndexAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LEG_INDEX_ASC', + LegsByUpdatedBlockIdStddevSampleLegIndexDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LEG_INDEX_DESC', + LegsByUpdatedBlockIdStddevSampleLegTypeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LEG_TYPE_ASC', + LegsByUpdatedBlockIdStddevSampleLegTypeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LEG_TYPE_DESC', + LegsByUpdatedBlockIdStddevSampleNftIdsAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + LegsByUpdatedBlockIdStddevSampleNftIdsDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + LegsByUpdatedBlockIdStddevSampleTickerAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_ASC', + LegsByUpdatedBlockIdStddevSampleTickerDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TICKER_DESC', + LegsByUpdatedBlockIdStddevSampleToAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ASC', + LegsByUpdatedBlockIdStddevSampleToDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_DESC', + LegsByUpdatedBlockIdStddevSampleToPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ASC', + LegsByUpdatedBlockIdStddevSampleToPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_PORTFOLIO_DESC', + LegsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdSumAddressesAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_ADDRESSES_ASC', + LegsByUpdatedBlockIdSumAddressesDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_ADDRESSES_DESC', + LegsByUpdatedBlockIdSumAmountAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + LegsByUpdatedBlockIdSumAmountDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + LegsByUpdatedBlockIdSumAssetIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + LegsByUpdatedBlockIdSumAssetIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + LegsByUpdatedBlockIdSumBlockRangeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + LegsByUpdatedBlockIdSumBlockRangeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + LegsByUpdatedBlockIdSumCreatedAtAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + LegsByUpdatedBlockIdSumCreatedAtDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + LegsByUpdatedBlockIdSumCreatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdSumCreatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdSumFromAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_FROM_ASC', + LegsByUpdatedBlockIdSumFromDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_FROM_DESC', + LegsByUpdatedBlockIdSumFromPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_FROM_PORTFOLIO_ASC', + LegsByUpdatedBlockIdSumFromPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_FROM_PORTFOLIO_DESC', + LegsByUpdatedBlockIdSumIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + LegsByUpdatedBlockIdSumIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + LegsByUpdatedBlockIdSumInstructionIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_ASC', + LegsByUpdatedBlockIdSumInstructionIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_INSTRUCTION_ID_DESC', + LegsByUpdatedBlockIdSumLegIndexAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_LEG_INDEX_ASC', + LegsByUpdatedBlockIdSumLegIndexDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_LEG_INDEX_DESC', + LegsByUpdatedBlockIdSumLegTypeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_LEG_TYPE_ASC', + LegsByUpdatedBlockIdSumLegTypeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_LEG_TYPE_DESC', + LegsByUpdatedBlockIdSumNftIdsAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_NFT_IDS_ASC', + LegsByUpdatedBlockIdSumNftIdsDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_NFT_IDS_DESC', + LegsByUpdatedBlockIdSumTickerAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_TICKER_ASC', + LegsByUpdatedBlockIdSumTickerDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_TICKER_DESC', + LegsByUpdatedBlockIdSumToAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_TO_ASC', + LegsByUpdatedBlockIdSumToDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_TO_DESC', + LegsByUpdatedBlockIdSumToPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_TO_PORTFOLIO_ASC', + LegsByUpdatedBlockIdSumToPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_TO_PORTFOLIO_DESC', + LegsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdVariancePopulationAddressesAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESSES_ASC', + LegsByUpdatedBlockIdVariancePopulationAddressesDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESSES_DESC', + LegsByUpdatedBlockIdVariancePopulationAmountAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + LegsByUpdatedBlockIdVariancePopulationAmountDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + LegsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + LegsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + LegsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + LegsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + LegsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + LegsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + LegsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdVariancePopulationFromAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ASC', + LegsByUpdatedBlockIdVariancePopulationFromDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_DESC', + LegsByUpdatedBlockIdVariancePopulationFromPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_ASC', + LegsByUpdatedBlockIdVariancePopulationFromPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_DESC', + LegsByUpdatedBlockIdVariancePopulationIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + LegsByUpdatedBlockIdVariancePopulationIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + LegsByUpdatedBlockIdVariancePopulationInstructionIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + LegsByUpdatedBlockIdVariancePopulationInstructionIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + LegsByUpdatedBlockIdVariancePopulationLegIndexAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LEG_INDEX_ASC', + LegsByUpdatedBlockIdVariancePopulationLegIndexDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LEG_INDEX_DESC', + LegsByUpdatedBlockIdVariancePopulationLegTypeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LEG_TYPE_ASC', + LegsByUpdatedBlockIdVariancePopulationLegTypeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LEG_TYPE_DESC', + LegsByUpdatedBlockIdVariancePopulationNftIdsAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + LegsByUpdatedBlockIdVariancePopulationNftIdsDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + LegsByUpdatedBlockIdVariancePopulationTickerAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_ASC', + LegsByUpdatedBlockIdVariancePopulationTickerDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TICKER_DESC', + LegsByUpdatedBlockIdVariancePopulationToAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ASC', + LegsByUpdatedBlockIdVariancePopulationToDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_DESC', + LegsByUpdatedBlockIdVariancePopulationToPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ASC', + LegsByUpdatedBlockIdVariancePopulationToPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_PORTFOLIO_DESC', + LegsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdVarianceSampleAddressesAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESSES_ASC', + LegsByUpdatedBlockIdVarianceSampleAddressesDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESSES_DESC', + LegsByUpdatedBlockIdVarianceSampleAmountAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + LegsByUpdatedBlockIdVarianceSampleAmountDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + LegsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + LegsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + LegsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + LegsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + LegsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + LegsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + LegsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + LegsByUpdatedBlockIdVarianceSampleFromAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ASC', + LegsByUpdatedBlockIdVarianceSampleFromDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_DESC', + LegsByUpdatedBlockIdVarianceSampleFromPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_ASC', + LegsByUpdatedBlockIdVarianceSampleFromPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_DESC', + LegsByUpdatedBlockIdVarianceSampleIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + LegsByUpdatedBlockIdVarianceSampleIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + LegsByUpdatedBlockIdVarianceSampleInstructionIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + LegsByUpdatedBlockIdVarianceSampleInstructionIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + LegsByUpdatedBlockIdVarianceSampleLegIndexAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_INDEX_ASC', + LegsByUpdatedBlockIdVarianceSampleLegIndexDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_INDEX_DESC', + LegsByUpdatedBlockIdVarianceSampleLegTypeAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_TYPE_ASC', + LegsByUpdatedBlockIdVarianceSampleLegTypeDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_TYPE_DESC', + LegsByUpdatedBlockIdVarianceSampleNftIdsAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + LegsByUpdatedBlockIdVarianceSampleNftIdsDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + LegsByUpdatedBlockIdVarianceSampleTickerAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_ASC', + LegsByUpdatedBlockIdVarianceSampleTickerDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TICKER_DESC', + LegsByUpdatedBlockIdVarianceSampleToAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ASC', + LegsByUpdatedBlockIdVarianceSampleToDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_DESC', + LegsByUpdatedBlockIdVarianceSampleToPortfolioAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ASC', + LegsByUpdatedBlockIdVarianceSampleToPortfolioDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_DESC', + LegsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + LegsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'LEGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdAverageAddressAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_ADDRESS_ASC', + MultiSigsByCreatedBlockIdAverageAddressDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_ADDRESS_DESC', + MultiSigsByCreatedBlockIdAverageBlockRangeAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + MultiSigsByCreatedBlockIdAverageBlockRangeDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + MultiSigsByCreatedBlockIdAverageCreatedAtAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + MultiSigsByCreatedBlockIdAverageCreatedAtDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + MultiSigsByCreatedBlockIdAverageCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdAverageCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdAverageCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatedBlockIdAverageCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatedBlockIdAverageCreatorIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + MultiSigsByCreatedBlockIdAverageCreatorIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + MultiSigsByCreatedBlockIdAverageIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + MultiSigsByCreatedBlockIdAverageIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + MultiSigsByCreatedBlockIdAverageSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatedBlockIdAverageSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdCountAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_COUNT_ASC', + MultiSigsByCreatedBlockIdCountDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_COUNT_DESC', + MultiSigsByCreatedBlockIdDistinctCountAddressAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_ASC', + MultiSigsByCreatedBlockIdDistinctCountAddressDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_DESC', + MultiSigsByCreatedBlockIdDistinctCountBlockRangeAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MultiSigsByCreatedBlockIdDistinctCountBlockRangeDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MultiSigsByCreatedBlockIdDistinctCountCreatedAtAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + MultiSigsByCreatedBlockIdDistinctCountCreatedAtDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + MultiSigsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdDistinctCountCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatedBlockIdDistinctCountCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatedBlockIdDistinctCountCreatorIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + MultiSigsByCreatedBlockIdDistinctCountCreatorIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + MultiSigsByCreatedBlockIdDistinctCountIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + MultiSigsByCreatedBlockIdDistinctCountIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + MultiSigsByCreatedBlockIdDistinctCountSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatedBlockIdDistinctCountSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdMaxAddressAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_ADDRESS_ASC', + MultiSigsByCreatedBlockIdMaxAddressDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_ADDRESS_DESC', + MultiSigsByCreatedBlockIdMaxBlockRangeAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + MultiSigsByCreatedBlockIdMaxBlockRangeDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + MultiSigsByCreatedBlockIdMaxCreatedAtAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + MultiSigsByCreatedBlockIdMaxCreatedAtDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + MultiSigsByCreatedBlockIdMaxCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdMaxCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdMaxCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatedBlockIdMaxCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatedBlockIdMaxCreatorIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + MultiSigsByCreatedBlockIdMaxCreatorIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + MultiSigsByCreatedBlockIdMaxIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + MultiSigsByCreatedBlockIdMaxIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + MultiSigsByCreatedBlockIdMaxSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatedBlockIdMaxSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdMinAddressAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_ADDRESS_ASC', + MultiSigsByCreatedBlockIdMinAddressDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_ADDRESS_DESC', + MultiSigsByCreatedBlockIdMinBlockRangeAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + MultiSigsByCreatedBlockIdMinBlockRangeDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + MultiSigsByCreatedBlockIdMinCreatedAtAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + MultiSigsByCreatedBlockIdMinCreatedAtDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + MultiSigsByCreatedBlockIdMinCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdMinCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdMinCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatedBlockIdMinCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatedBlockIdMinCreatorIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + MultiSigsByCreatedBlockIdMinCreatorIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + MultiSigsByCreatedBlockIdMinIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + MultiSigsByCreatedBlockIdMinIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + MultiSigsByCreatedBlockIdMinSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatedBlockIdMinSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatedBlockIdMinUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdMinUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdStddevPopulationAddressAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_ASC', + MultiSigsByCreatedBlockIdStddevPopulationAddressDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_DESC', + MultiSigsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MultiSigsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MultiSigsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + MultiSigsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + MultiSigsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdStddevPopulationCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatedBlockIdStddevPopulationCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatedBlockIdStddevPopulationCreatorIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + MultiSigsByCreatedBlockIdStddevPopulationCreatorIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + MultiSigsByCreatedBlockIdStddevPopulationIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + MultiSigsByCreatedBlockIdStddevPopulationIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + MultiSigsByCreatedBlockIdStddevPopulationSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatedBlockIdStddevPopulationSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdStddevSampleAddressAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_ASC', + MultiSigsByCreatedBlockIdStddevSampleAddressDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_DESC', + MultiSigsByCreatedBlockIdStddevSampleBlockRangeAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MultiSigsByCreatedBlockIdStddevSampleBlockRangeDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MultiSigsByCreatedBlockIdStddevSampleCreatedAtAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + MultiSigsByCreatedBlockIdStddevSampleCreatedAtDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + MultiSigsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdStddevSampleCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatedBlockIdStddevSampleCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatedBlockIdStddevSampleCreatorIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + MultiSigsByCreatedBlockIdStddevSampleCreatorIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + MultiSigsByCreatedBlockIdStddevSampleIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + MultiSigsByCreatedBlockIdStddevSampleIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + MultiSigsByCreatedBlockIdStddevSampleSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatedBlockIdStddevSampleSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdSumAddressAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_ADDRESS_ASC', + MultiSigsByCreatedBlockIdSumAddressDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_ADDRESS_DESC', + MultiSigsByCreatedBlockIdSumBlockRangeAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + MultiSigsByCreatedBlockIdSumBlockRangeDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + MultiSigsByCreatedBlockIdSumCreatedAtAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + MultiSigsByCreatedBlockIdSumCreatedAtDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + MultiSigsByCreatedBlockIdSumCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdSumCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdSumCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatedBlockIdSumCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatedBlockIdSumCreatorIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + MultiSigsByCreatedBlockIdSumCreatorIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + MultiSigsByCreatedBlockIdSumIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + MultiSigsByCreatedBlockIdSumIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + MultiSigsByCreatedBlockIdSumSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatedBlockIdSumSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatedBlockIdSumUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdSumUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdVariancePopulationAddressAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_ASC', + MultiSigsByCreatedBlockIdVariancePopulationAddressDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_DESC', + MultiSigsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MultiSigsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MultiSigsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + MultiSigsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + MultiSigsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdVariancePopulationCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatedBlockIdVariancePopulationCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatedBlockIdVariancePopulationCreatorIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + MultiSigsByCreatedBlockIdVariancePopulationCreatorIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + MultiSigsByCreatedBlockIdVariancePopulationIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + MultiSigsByCreatedBlockIdVariancePopulationIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + MultiSigsByCreatedBlockIdVariancePopulationSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatedBlockIdVariancePopulationSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdVarianceSampleAddressAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + MultiSigsByCreatedBlockIdVarianceSampleAddressDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + MultiSigsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MultiSigsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MultiSigsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + MultiSigsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + MultiSigsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatedBlockIdVarianceSampleCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatedBlockIdVarianceSampleCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatedBlockIdVarianceSampleCreatorIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + MultiSigsByCreatedBlockIdVarianceSampleCreatorIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + MultiSigsByCreatedBlockIdVarianceSampleIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + MultiSigsByCreatedBlockIdVarianceSampleIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + MultiSigsByCreatedBlockIdVarianceSampleSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatedBlockIdVarianceSampleSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdAverageAddressAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDRESS_ASC', + MultiSigsByUpdatedBlockIdAverageAddressDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDRESS_DESC', + MultiSigsByUpdatedBlockIdAverageBlockRangeAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + MultiSigsByUpdatedBlockIdAverageBlockRangeDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + MultiSigsByUpdatedBlockIdAverageCreatedAtAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + MultiSigsByUpdatedBlockIdAverageCreatedAtDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + MultiSigsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdAverageCreatorAccountIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByUpdatedBlockIdAverageCreatorAccountIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByUpdatedBlockIdAverageCreatorIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + MultiSigsByUpdatedBlockIdAverageCreatorIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + MultiSigsByUpdatedBlockIdAverageIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + MultiSigsByUpdatedBlockIdAverageIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + MultiSigsByUpdatedBlockIdAverageSignaturesRequiredAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNATURES_REQUIRED_ASC', + MultiSigsByUpdatedBlockIdAverageSignaturesRequiredDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNATURES_REQUIRED_DESC', + MultiSigsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdCountAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + MultiSigsByUpdatedBlockIdCountDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + MultiSigsByUpdatedBlockIdDistinctCountAddressAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_ASC', + MultiSigsByUpdatedBlockIdDistinctCountAddressDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_DESC', + MultiSigsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MultiSigsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MultiSigsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + MultiSigsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + MultiSigsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdDistinctCountCreatorAccountIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByUpdatedBlockIdDistinctCountCreatorAccountIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByUpdatedBlockIdDistinctCountCreatorIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + MultiSigsByUpdatedBlockIdDistinctCountCreatorIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + MultiSigsByUpdatedBlockIdDistinctCountIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + MultiSigsByUpdatedBlockIdDistinctCountIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + MultiSigsByUpdatedBlockIdDistinctCountSignaturesRequiredAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNATURES_REQUIRED_ASC', + MultiSigsByUpdatedBlockIdDistinctCountSignaturesRequiredDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNATURES_REQUIRED_DESC', + MultiSigsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdMaxAddressAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_ADDRESS_ASC', + MultiSigsByUpdatedBlockIdMaxAddressDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_ADDRESS_DESC', + MultiSigsByUpdatedBlockIdMaxBlockRangeAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + MultiSigsByUpdatedBlockIdMaxBlockRangeDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + MultiSigsByUpdatedBlockIdMaxCreatedAtAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + MultiSigsByUpdatedBlockIdMaxCreatedAtDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + MultiSigsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdMaxCreatorAccountIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByUpdatedBlockIdMaxCreatorAccountIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByUpdatedBlockIdMaxCreatorIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + MultiSigsByUpdatedBlockIdMaxCreatorIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + MultiSigsByUpdatedBlockIdMaxIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + MultiSigsByUpdatedBlockIdMaxIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + MultiSigsByUpdatedBlockIdMaxSignaturesRequiredAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_SIGNATURES_REQUIRED_ASC', + MultiSigsByUpdatedBlockIdMaxSignaturesRequiredDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_SIGNATURES_REQUIRED_DESC', + MultiSigsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdMinAddressAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_ADDRESS_ASC', + MultiSigsByUpdatedBlockIdMinAddressDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_ADDRESS_DESC', + MultiSigsByUpdatedBlockIdMinBlockRangeAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + MultiSigsByUpdatedBlockIdMinBlockRangeDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + MultiSigsByUpdatedBlockIdMinCreatedAtAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + MultiSigsByUpdatedBlockIdMinCreatedAtDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + MultiSigsByUpdatedBlockIdMinCreatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdMinCreatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdMinCreatorAccountIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByUpdatedBlockIdMinCreatorAccountIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByUpdatedBlockIdMinCreatorIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + MultiSigsByUpdatedBlockIdMinCreatorIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + MultiSigsByUpdatedBlockIdMinIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + MultiSigsByUpdatedBlockIdMinIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + MultiSigsByUpdatedBlockIdMinSignaturesRequiredAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_SIGNATURES_REQUIRED_ASC', + MultiSigsByUpdatedBlockIdMinSignaturesRequiredDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_SIGNATURES_REQUIRED_DESC', + MultiSigsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdStddevPopulationAddressAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_ASC', + MultiSigsByUpdatedBlockIdStddevPopulationAddressDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_DESC', + MultiSigsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MultiSigsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MultiSigsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + MultiSigsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + MultiSigsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdStddevPopulationCreatorAccountIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByUpdatedBlockIdStddevPopulationCreatorAccountIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByUpdatedBlockIdStddevPopulationCreatorIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + MultiSigsByUpdatedBlockIdStddevPopulationCreatorIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + MultiSigsByUpdatedBlockIdStddevPopulationIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + MultiSigsByUpdatedBlockIdStddevPopulationIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + MultiSigsByUpdatedBlockIdStddevPopulationSignaturesRequiredAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNATURES_REQUIRED_ASC', + MultiSigsByUpdatedBlockIdStddevPopulationSignaturesRequiredDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNATURES_REQUIRED_DESC', + MultiSigsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdStddevSampleAddressAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_ASC', + MultiSigsByUpdatedBlockIdStddevSampleAddressDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_DESC', + MultiSigsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MultiSigsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MultiSigsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + MultiSigsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + MultiSigsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdStddevSampleCreatorAccountIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByUpdatedBlockIdStddevSampleCreatorAccountIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByUpdatedBlockIdStddevSampleCreatorIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + MultiSigsByUpdatedBlockIdStddevSampleCreatorIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + MultiSigsByUpdatedBlockIdStddevSampleIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + MultiSigsByUpdatedBlockIdStddevSampleIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + MultiSigsByUpdatedBlockIdStddevSampleSignaturesRequiredAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNATURES_REQUIRED_ASC', + MultiSigsByUpdatedBlockIdStddevSampleSignaturesRequiredDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNATURES_REQUIRED_DESC', + MultiSigsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdSumAddressAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_ADDRESS_ASC', + MultiSigsByUpdatedBlockIdSumAddressDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_ADDRESS_DESC', + MultiSigsByUpdatedBlockIdSumBlockRangeAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + MultiSigsByUpdatedBlockIdSumBlockRangeDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + MultiSigsByUpdatedBlockIdSumCreatedAtAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + MultiSigsByUpdatedBlockIdSumCreatedAtDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + MultiSigsByUpdatedBlockIdSumCreatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdSumCreatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdSumCreatorAccountIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByUpdatedBlockIdSumCreatorAccountIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByUpdatedBlockIdSumCreatorIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + MultiSigsByUpdatedBlockIdSumCreatorIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + MultiSigsByUpdatedBlockIdSumIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + MultiSigsByUpdatedBlockIdSumIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + MultiSigsByUpdatedBlockIdSumSignaturesRequiredAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_SIGNATURES_REQUIRED_ASC', + MultiSigsByUpdatedBlockIdSumSignaturesRequiredDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_SIGNATURES_REQUIRED_DESC', + MultiSigsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdVariancePopulationAddressAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_ASC', + MultiSigsByUpdatedBlockIdVariancePopulationAddressDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_DESC', + MultiSigsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MultiSigsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MultiSigsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + MultiSigsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + MultiSigsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdVariancePopulationCreatorAccountIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByUpdatedBlockIdVariancePopulationCreatorAccountIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByUpdatedBlockIdVariancePopulationCreatorIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + MultiSigsByUpdatedBlockIdVariancePopulationCreatorIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + MultiSigsByUpdatedBlockIdVariancePopulationIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + MultiSigsByUpdatedBlockIdVariancePopulationIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + MultiSigsByUpdatedBlockIdVariancePopulationSignaturesRequiredAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNATURES_REQUIRED_ASC', + MultiSigsByUpdatedBlockIdVariancePopulationSignaturesRequiredDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNATURES_REQUIRED_DESC', + MultiSigsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdVarianceSampleAddressAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + MultiSigsByUpdatedBlockIdVarianceSampleAddressDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + MultiSigsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MultiSigsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MultiSigsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + MultiSigsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + MultiSigsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigsByUpdatedBlockIdVarianceSampleCreatorAccountIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByUpdatedBlockIdVarianceSampleCreatorAccountIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByUpdatedBlockIdVarianceSampleCreatorIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + MultiSigsByUpdatedBlockIdVarianceSampleCreatorIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + MultiSigsByUpdatedBlockIdVarianceSampleIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + MultiSigsByUpdatedBlockIdVarianceSampleIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + MultiSigsByUpdatedBlockIdVarianceSampleSignaturesRequiredAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNATURES_REQUIRED_ASC', + MultiSigsByUpdatedBlockIdVarianceSampleSignaturesRequiredDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNATURES_REQUIRED_DESC', + MultiSigsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'MULTI_SIGS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdAverageApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdAverageApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdAverageBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatedBlockIdAverageBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatedBlockIdAverageCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + MultiSigProposalsByCreatedBlockIdAverageCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + MultiSigProposalsByCreatedBlockIdAverageCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdAverageCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdAverageCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatedBlockIdAverageCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatedBlockIdAverageCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + MultiSigProposalsByCreatedBlockIdAverageCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + MultiSigProposalsByCreatedBlockIdAverageDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + MultiSigProposalsByCreatedBlockIdAverageDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + MultiSigProposalsByCreatedBlockIdAverageEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + MultiSigProposalsByCreatedBlockIdAverageEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + MultiSigProposalsByCreatedBlockIdAverageExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatedBlockIdAverageExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatedBlockIdAverageIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + MultiSigProposalsByCreatedBlockIdAverageIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + MultiSigProposalsByCreatedBlockIdAverageMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_MULTISIG_ID_ASC', + MultiSigProposalsByCreatedBlockIdAverageMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_MULTISIG_ID_DESC', + MultiSigProposalsByCreatedBlockIdAverageParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_PARAMS_ASC', + MultiSigProposalsByCreatedBlockIdAverageParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_PARAMS_DESC', + MultiSigProposalsByCreatedBlockIdAverageProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatedBlockIdAverageProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatedBlockIdAverageRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdAverageRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdAverageStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_ASC', + MultiSigProposalsByCreatedBlockIdAverageStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_DESC', + MultiSigProposalsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MULTISIG_ID_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MULTISIG_ID_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PARAMS_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PARAMS_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + MultiSigProposalsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdMaxApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdMaxApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdMaxBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatedBlockIdMaxBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatedBlockIdMaxCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + MultiSigProposalsByCreatedBlockIdMaxCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + MultiSigProposalsByCreatedBlockIdMaxCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdMaxCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdMaxCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatedBlockIdMaxCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatedBlockIdMaxCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + MultiSigProposalsByCreatedBlockIdMaxCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + MultiSigProposalsByCreatedBlockIdMaxDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + MultiSigProposalsByCreatedBlockIdMaxDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + MultiSigProposalsByCreatedBlockIdMaxEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + MultiSigProposalsByCreatedBlockIdMaxEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + MultiSigProposalsByCreatedBlockIdMaxExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatedBlockIdMaxExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatedBlockIdMaxIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + MultiSigProposalsByCreatedBlockIdMaxIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + MultiSigProposalsByCreatedBlockIdMaxMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_MULTISIG_ID_ASC', + MultiSigProposalsByCreatedBlockIdMaxMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_MULTISIG_ID_DESC', + MultiSigProposalsByCreatedBlockIdMaxParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_PARAMS_ASC', + MultiSigProposalsByCreatedBlockIdMaxParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_PARAMS_DESC', + MultiSigProposalsByCreatedBlockIdMaxProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatedBlockIdMaxProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatedBlockIdMaxRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdMaxRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdMaxStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_STATUS_ASC', + MultiSigProposalsByCreatedBlockIdMaxStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_STATUS_DESC', + MultiSigProposalsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdMinApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdMinApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdMinBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatedBlockIdMinBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatedBlockIdMinCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + MultiSigProposalsByCreatedBlockIdMinCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + MultiSigProposalsByCreatedBlockIdMinCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdMinCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdMinCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatedBlockIdMinCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatedBlockIdMinCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + MultiSigProposalsByCreatedBlockIdMinCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + MultiSigProposalsByCreatedBlockIdMinDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + MultiSigProposalsByCreatedBlockIdMinDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + MultiSigProposalsByCreatedBlockIdMinEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + MultiSigProposalsByCreatedBlockIdMinEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + MultiSigProposalsByCreatedBlockIdMinExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatedBlockIdMinExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatedBlockIdMinIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + MultiSigProposalsByCreatedBlockIdMinIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + MultiSigProposalsByCreatedBlockIdMinMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_MULTISIG_ID_ASC', + MultiSigProposalsByCreatedBlockIdMinMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_MULTISIG_ID_DESC', + MultiSigProposalsByCreatedBlockIdMinParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_PARAMS_ASC', + MultiSigProposalsByCreatedBlockIdMinParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_PARAMS_DESC', + MultiSigProposalsByCreatedBlockIdMinProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatedBlockIdMinProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatedBlockIdMinRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdMinRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdMinStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_STATUS_ASC', + MultiSigProposalsByCreatedBlockIdMinStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_STATUS_DESC', + MultiSigProposalsByCreatedBlockIdMinUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdMinUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MULTISIG_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MULTISIG_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PARAMS_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PARAMS_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + MultiSigProposalsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MULTISIG_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MULTISIG_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PARAMS_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PARAMS_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + MultiSigProposalsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdSumApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdSumApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdSumBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatedBlockIdSumBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatedBlockIdSumCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + MultiSigProposalsByCreatedBlockIdSumCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + MultiSigProposalsByCreatedBlockIdSumCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdSumCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdSumCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatedBlockIdSumCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatedBlockIdSumCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + MultiSigProposalsByCreatedBlockIdSumCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + MultiSigProposalsByCreatedBlockIdSumDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + MultiSigProposalsByCreatedBlockIdSumDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + MultiSigProposalsByCreatedBlockIdSumEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + MultiSigProposalsByCreatedBlockIdSumEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + MultiSigProposalsByCreatedBlockIdSumExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatedBlockIdSumExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatedBlockIdSumIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + MultiSigProposalsByCreatedBlockIdSumIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + MultiSigProposalsByCreatedBlockIdSumMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_MULTISIG_ID_ASC', + MultiSigProposalsByCreatedBlockIdSumMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_MULTISIG_ID_DESC', + MultiSigProposalsByCreatedBlockIdSumParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_PARAMS_ASC', + MultiSigProposalsByCreatedBlockIdSumParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_PARAMS_DESC', + MultiSigProposalsByCreatedBlockIdSumProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatedBlockIdSumProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatedBlockIdSumRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdSumRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdSumStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_STATUS_ASC', + MultiSigProposalsByCreatedBlockIdSumStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_STATUS_DESC', + MultiSigProposalsByCreatedBlockIdSumUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdSumUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MULTISIG_ID_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MULTISIG_ID_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PARAMS_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PARAMS_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + MultiSigProposalsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MULTISIG_ID_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MULTISIG_ID_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PARAMS_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PARAMS_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + MultiSigProposalsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdAverageApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_APPROVAL_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdAverageApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_APPROVAL_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdAverageBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + MultiSigProposalsByUpdatedBlockIdAverageBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + MultiSigProposalsByUpdatedBlockIdAverageCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + MultiSigProposalsByUpdatedBlockIdAverageCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + MultiSigProposalsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdAverageCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByUpdatedBlockIdAverageCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByUpdatedBlockIdAverageCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + MultiSigProposalsByUpdatedBlockIdAverageCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + MultiSigProposalsByUpdatedBlockIdAverageDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + MultiSigProposalsByUpdatedBlockIdAverageDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + MultiSigProposalsByUpdatedBlockIdAverageEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdAverageEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdAverageExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdAverageExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdAverageIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + MultiSigProposalsByUpdatedBlockIdAverageIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + MultiSigProposalsByUpdatedBlockIdAverageMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_MULTISIG_ID_ASC', + MultiSigProposalsByUpdatedBlockIdAverageMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_MULTISIG_ID_DESC', + MultiSigProposalsByUpdatedBlockIdAverageParamsAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_PARAMS_ASC', + MultiSigProposalsByUpdatedBlockIdAverageParamsDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_PARAMS_DESC', + MultiSigProposalsByUpdatedBlockIdAverageProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_ASC', + MultiSigProposalsByUpdatedBlockIdAverageProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_DESC', + MultiSigProposalsByUpdatedBlockIdAverageRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_REJECTION_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdAverageRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_REJECTION_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdAverageStatusAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_ASC', + MultiSigProposalsByUpdatedBlockIdAverageStatusDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_DESC', + MultiSigProposalsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_APPROVAL_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_APPROVAL_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MULTISIG_ID_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MULTISIG_ID_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountParamsAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PARAMS_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountParamsDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PARAMS_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_REJECTION_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_REJECTION_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountStatusAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountStatusDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + MultiSigProposalsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMaxApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_APPROVAL_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdMaxApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_APPROVAL_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdMaxBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + MultiSigProposalsByUpdatedBlockIdMaxBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + MultiSigProposalsByUpdatedBlockIdMaxCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + MultiSigProposalsByUpdatedBlockIdMaxCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + MultiSigProposalsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMaxCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByUpdatedBlockIdMaxCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByUpdatedBlockIdMaxCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMaxCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMaxDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + MultiSigProposalsByUpdatedBlockIdMaxDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + MultiSigProposalsByUpdatedBlockIdMaxEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdMaxEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdMaxExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_EXTRINSIC_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdMaxExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_EXTRINSIC_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdMaxIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMaxIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMaxMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_MULTISIG_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMaxMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_MULTISIG_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMaxParamsAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_PARAMS_ASC', + MultiSigProposalsByUpdatedBlockIdMaxParamsDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_PARAMS_DESC', + MultiSigProposalsByUpdatedBlockIdMaxProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_PROPOSAL_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMaxProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_PROPOSAL_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMaxRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_REJECTION_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdMaxRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_REJECTION_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdMaxStatusAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_STATUS_ASC', + MultiSigProposalsByUpdatedBlockIdMaxStatusDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_STATUS_DESC', + MultiSigProposalsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMinApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_APPROVAL_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdMinApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_APPROVAL_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdMinBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + MultiSigProposalsByUpdatedBlockIdMinBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + MultiSigProposalsByUpdatedBlockIdMinCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + MultiSigProposalsByUpdatedBlockIdMinCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + MultiSigProposalsByUpdatedBlockIdMinCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMinCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMinCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByUpdatedBlockIdMinCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByUpdatedBlockIdMinCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMinCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMinDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + MultiSigProposalsByUpdatedBlockIdMinDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + MultiSigProposalsByUpdatedBlockIdMinEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdMinEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdMinExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_EXTRINSIC_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdMinExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_EXTRINSIC_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdMinIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMinIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMinMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_MULTISIG_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMinMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_MULTISIG_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMinParamsAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_PARAMS_ASC', + MultiSigProposalsByUpdatedBlockIdMinParamsDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_PARAMS_DESC', + MultiSigProposalsByUpdatedBlockIdMinProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_PROPOSAL_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMinProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_PROPOSAL_ID_DESC', + MultiSigProposalsByUpdatedBlockIdMinRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_REJECTION_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdMinRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_REJECTION_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdMinStatusAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_STATUS_ASC', + MultiSigProposalsByUpdatedBlockIdMinStatusDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_STATUS_DESC', + MultiSigProposalsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_APPROVAL_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_APPROVAL_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MULTISIG_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MULTISIG_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationParamsAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PARAMS_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationParamsDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PARAMS_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_REJECTION_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_REJECTION_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationStatusAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationStatusDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_APPROVAL_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_APPROVAL_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MULTISIG_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MULTISIG_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleParamsAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PARAMS_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleParamsDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PARAMS_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_REJECTION_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_REJECTION_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleStatusAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleStatusDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + MultiSigProposalsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdSumApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_APPROVAL_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdSumApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_APPROVAL_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdSumBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + MultiSigProposalsByUpdatedBlockIdSumBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + MultiSigProposalsByUpdatedBlockIdSumCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + MultiSigProposalsByUpdatedBlockIdSumCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + MultiSigProposalsByUpdatedBlockIdSumCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdSumCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdSumCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByUpdatedBlockIdSumCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByUpdatedBlockIdSumCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + MultiSigProposalsByUpdatedBlockIdSumCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + MultiSigProposalsByUpdatedBlockIdSumDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + MultiSigProposalsByUpdatedBlockIdSumDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + MultiSigProposalsByUpdatedBlockIdSumEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdSumEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdSumExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_EXTRINSIC_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdSumExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_EXTRINSIC_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdSumIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + MultiSigProposalsByUpdatedBlockIdSumIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + MultiSigProposalsByUpdatedBlockIdSumMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_MULTISIG_ID_ASC', + MultiSigProposalsByUpdatedBlockIdSumMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_MULTISIG_ID_DESC', + MultiSigProposalsByUpdatedBlockIdSumParamsAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_PARAMS_ASC', + MultiSigProposalsByUpdatedBlockIdSumParamsDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_PARAMS_DESC', + MultiSigProposalsByUpdatedBlockIdSumProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_PROPOSAL_ID_ASC', + MultiSigProposalsByUpdatedBlockIdSumProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_PROPOSAL_ID_DESC', + MultiSigProposalsByUpdatedBlockIdSumRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_REJECTION_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdSumRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_REJECTION_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdSumStatusAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_STATUS_ASC', + MultiSigProposalsByUpdatedBlockIdSumStatusDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_STATUS_DESC', + MultiSigProposalsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_APPROVAL_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_APPROVAL_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MULTISIG_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MULTISIG_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationParamsAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PARAMS_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationParamsDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PARAMS_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_REJECTION_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_REJECTION_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationStatusAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationStatusDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_APPROVAL_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_APPROVAL_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MULTISIG_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MULTISIG_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleParamsAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PARAMS_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleParamsDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PARAMS_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_REJECTION_COUNT_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_REJECTION_COUNT_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleStatusAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleStatusDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdAverageActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_ACTION_ASC', + MultiSigProposalVotesByCreatedBlockIdAverageActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_ACTION_DESC', + MultiSigProposalVotesByCreatedBlockIdAverageBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + MultiSigProposalVotesByCreatedBlockIdAverageBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + MultiSigProposalVotesByCreatedBlockIdAverageCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + MultiSigProposalVotesByCreatedBlockIdAverageCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + MultiSigProposalVotesByCreatedBlockIdAverageCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdAverageCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdAverageDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + MultiSigProposalVotesByCreatedBlockIdAverageDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + MultiSigProposalVotesByCreatedBlockIdAverageEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdAverageEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdAverageExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdAverageExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdAverageIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdAverageIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdAverageProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdAverageProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdAverageSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_SIGNER_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdAverageSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_SIGNER_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdCountAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_COUNT_ASC', + MultiSigProposalVotesByCreatedBlockIdCountDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_COUNT_DESC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACTION_ASC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACTION_DESC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdMaxActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_ACTION_ASC', + MultiSigProposalVotesByCreatedBlockIdMaxActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_ACTION_DESC', + MultiSigProposalVotesByCreatedBlockIdMaxBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + MultiSigProposalVotesByCreatedBlockIdMaxBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + MultiSigProposalVotesByCreatedBlockIdMaxCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + MultiSigProposalVotesByCreatedBlockIdMaxCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + MultiSigProposalVotesByCreatedBlockIdMaxCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdMaxCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdMaxDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + MultiSigProposalVotesByCreatedBlockIdMaxDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + MultiSigProposalVotesByCreatedBlockIdMaxEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdMaxEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdMaxExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdMaxExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdMaxIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdMaxIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdMaxProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_PROPOSAL_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdMaxProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_PROPOSAL_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdMaxSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_SIGNER_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdMaxSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_SIGNER_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdMinActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_ACTION_ASC', + MultiSigProposalVotesByCreatedBlockIdMinActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_ACTION_DESC', + MultiSigProposalVotesByCreatedBlockIdMinBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + MultiSigProposalVotesByCreatedBlockIdMinBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + MultiSigProposalVotesByCreatedBlockIdMinCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + MultiSigProposalVotesByCreatedBlockIdMinCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + MultiSigProposalVotesByCreatedBlockIdMinCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdMinCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdMinDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + MultiSigProposalVotesByCreatedBlockIdMinDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + MultiSigProposalVotesByCreatedBlockIdMinEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdMinEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdMinExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdMinExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdMinIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdMinIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdMinProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_PROPOSAL_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdMinProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_PROPOSAL_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdMinSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_SIGNER_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdMinSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_SIGNER_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdMinUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdMinUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACTION_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACTION_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACTION_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACTION_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdSumActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_ACTION_ASC', + MultiSigProposalVotesByCreatedBlockIdSumActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_ACTION_DESC', + MultiSigProposalVotesByCreatedBlockIdSumBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + MultiSigProposalVotesByCreatedBlockIdSumBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + MultiSigProposalVotesByCreatedBlockIdSumCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + MultiSigProposalVotesByCreatedBlockIdSumCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + MultiSigProposalVotesByCreatedBlockIdSumCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdSumCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdSumDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + MultiSigProposalVotesByCreatedBlockIdSumDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + MultiSigProposalVotesByCreatedBlockIdSumEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdSumEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdSumExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdSumExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdSumIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdSumIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdSumProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_PROPOSAL_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdSumProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_PROPOSAL_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdSumSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_SIGNER_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdSumSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_SIGNER_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdSumUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdSumUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACTION_ASC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACTION_DESC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACTION_ASC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACTION_DESC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_ID_DESC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdAverageActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_ACTION_ASC', + MultiSigProposalVotesByUpdatedBlockIdAverageActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_ACTION_DESC', + MultiSigProposalVotesByUpdatedBlockIdAverageBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + MultiSigProposalVotesByUpdatedBlockIdAverageBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + MultiSigProposalVotesByUpdatedBlockIdAverageCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + MultiSigProposalVotesByUpdatedBlockIdAverageCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + MultiSigProposalVotesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdAverageDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + MultiSigProposalVotesByUpdatedBlockIdAverageDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + MultiSigProposalVotesByUpdatedBlockIdAverageEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdAverageEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdAverageExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdAverageExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdAverageIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdAverageIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdAverageProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdAverageProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdAverageSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNER_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdAverageSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNER_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdCountAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + MultiSigProposalVotesByUpdatedBlockIdCountDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACTION_ASC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACTION_DESC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdMaxActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_ACTION_ASC', + MultiSigProposalVotesByUpdatedBlockIdMaxActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_ACTION_DESC', + MultiSigProposalVotesByUpdatedBlockIdMaxBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + MultiSigProposalVotesByUpdatedBlockIdMaxBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + MultiSigProposalVotesByUpdatedBlockIdMaxCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + MultiSigProposalVotesByUpdatedBlockIdMaxCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + MultiSigProposalVotesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdMaxDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + MultiSigProposalVotesByUpdatedBlockIdMaxDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + MultiSigProposalVotesByUpdatedBlockIdMaxEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdMaxEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdMaxExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdMaxExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdMaxIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdMaxIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdMaxProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_PROPOSAL_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdMaxProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_PROPOSAL_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdMaxSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_SIGNER_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdMaxSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_SIGNER_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdMinActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_ACTION_ASC', + MultiSigProposalVotesByUpdatedBlockIdMinActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_ACTION_DESC', + MultiSigProposalVotesByUpdatedBlockIdMinBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + MultiSigProposalVotesByUpdatedBlockIdMinBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + MultiSigProposalVotesByUpdatedBlockIdMinCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + MultiSigProposalVotesByUpdatedBlockIdMinCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + MultiSigProposalVotesByUpdatedBlockIdMinCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdMinCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdMinDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + MultiSigProposalVotesByUpdatedBlockIdMinDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + MultiSigProposalVotesByUpdatedBlockIdMinEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdMinEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdMinExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdMinExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdMinIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdMinIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdMinProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_PROPOSAL_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdMinProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_PROPOSAL_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdMinSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_SIGNER_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdMinSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_SIGNER_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACTION_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACTION_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACTION_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACTION_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdSumActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_ACTION_ASC', + MultiSigProposalVotesByUpdatedBlockIdSumActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_ACTION_DESC', + MultiSigProposalVotesByUpdatedBlockIdSumBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + MultiSigProposalVotesByUpdatedBlockIdSumBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + MultiSigProposalVotesByUpdatedBlockIdSumCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + MultiSigProposalVotesByUpdatedBlockIdSumCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + MultiSigProposalVotesByUpdatedBlockIdSumCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdSumCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdSumDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + MultiSigProposalVotesByUpdatedBlockIdSumDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + MultiSigProposalVotesByUpdatedBlockIdSumEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdSumEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdSumExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdSumExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdSumIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdSumIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdSumProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_PROPOSAL_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdSumProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_PROPOSAL_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdSumSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_SIGNER_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdSumSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_SIGNER_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACTION_ASC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACTION_DESC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleActionAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACTION_ASC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleActionDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACTION_DESC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleDatetimeAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleDatetimeDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleEventIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleEventIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleExtrinsicIdxAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleExtrinsicIdxDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleProposalIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleProposalIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleSignerIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleSignerIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_ID_DESC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalVotesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdAverageBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + MultiSigSignersByCreatedBlockIdAverageBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + MultiSigSignersByCreatedBlockIdAverageCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + MultiSigSignersByCreatedBlockIdAverageCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + MultiSigSignersByCreatedBlockIdAverageCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdAverageCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdAverageIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + MultiSigSignersByCreatedBlockIdAverageIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + MultiSigSignersByCreatedBlockIdAverageMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_MULTISIG_ID_ASC', + MultiSigSignersByCreatedBlockIdAverageMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_MULTISIG_ID_DESC', + MultiSigSignersByCreatedBlockIdAverageSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_SIGNER_TYPE_ASC', + MultiSigSignersByCreatedBlockIdAverageSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_SIGNER_TYPE_DESC', + MultiSigSignersByCreatedBlockIdAverageSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_SIGNER_VALUE_ASC', + MultiSigSignersByCreatedBlockIdAverageSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_SIGNER_VALUE_DESC', + MultiSigSignersByCreatedBlockIdAverageStatusAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_ASC', + MultiSigSignersByCreatedBlockIdAverageStatusDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_DESC', + MultiSigSignersByCreatedBlockIdAverageUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdAverageUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdCountAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_COUNT_ASC', + MultiSigSignersByCreatedBlockIdCountDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_COUNT_DESC', + MultiSigSignersByCreatedBlockIdDistinctCountBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MultiSigSignersByCreatedBlockIdDistinctCountBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MultiSigSignersByCreatedBlockIdDistinctCountCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + MultiSigSignersByCreatedBlockIdDistinctCountCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + MultiSigSignersByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdDistinctCountIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + MultiSigSignersByCreatedBlockIdDistinctCountIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + MultiSigSignersByCreatedBlockIdDistinctCountMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MULTISIG_ID_ASC', + MultiSigSignersByCreatedBlockIdDistinctCountMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MULTISIG_ID_DESC', + MultiSigSignersByCreatedBlockIdDistinctCountSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_TYPE_ASC', + MultiSigSignersByCreatedBlockIdDistinctCountSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_TYPE_DESC', + MultiSigSignersByCreatedBlockIdDistinctCountSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_VALUE_ASC', + MultiSigSignersByCreatedBlockIdDistinctCountSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_VALUE_DESC', + MultiSigSignersByCreatedBlockIdDistinctCountStatusAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + MultiSigSignersByCreatedBlockIdDistinctCountStatusDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + MultiSigSignersByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdMaxBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + MultiSigSignersByCreatedBlockIdMaxBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + MultiSigSignersByCreatedBlockIdMaxCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + MultiSigSignersByCreatedBlockIdMaxCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + MultiSigSignersByCreatedBlockIdMaxCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdMaxCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdMaxIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + MultiSigSignersByCreatedBlockIdMaxIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + MultiSigSignersByCreatedBlockIdMaxMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_MULTISIG_ID_ASC', + MultiSigSignersByCreatedBlockIdMaxMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_MULTISIG_ID_DESC', + MultiSigSignersByCreatedBlockIdMaxSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_SIGNER_TYPE_ASC', + MultiSigSignersByCreatedBlockIdMaxSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_SIGNER_TYPE_DESC', + MultiSigSignersByCreatedBlockIdMaxSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_SIGNER_VALUE_ASC', + MultiSigSignersByCreatedBlockIdMaxSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_SIGNER_VALUE_DESC', + MultiSigSignersByCreatedBlockIdMaxStatusAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_STATUS_ASC', + MultiSigSignersByCreatedBlockIdMaxStatusDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_STATUS_DESC', + MultiSigSignersByCreatedBlockIdMaxUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdMaxUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdMinBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + MultiSigSignersByCreatedBlockIdMinBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + MultiSigSignersByCreatedBlockIdMinCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + MultiSigSignersByCreatedBlockIdMinCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + MultiSigSignersByCreatedBlockIdMinCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdMinCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdMinIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + MultiSigSignersByCreatedBlockIdMinIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + MultiSigSignersByCreatedBlockIdMinMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_MULTISIG_ID_ASC', + MultiSigSignersByCreatedBlockIdMinMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_MULTISIG_ID_DESC', + MultiSigSignersByCreatedBlockIdMinSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_SIGNER_TYPE_ASC', + MultiSigSignersByCreatedBlockIdMinSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_SIGNER_TYPE_DESC', + MultiSigSignersByCreatedBlockIdMinSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_SIGNER_VALUE_ASC', + MultiSigSignersByCreatedBlockIdMinSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_SIGNER_VALUE_DESC', + MultiSigSignersByCreatedBlockIdMinStatusAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_STATUS_ASC', + MultiSigSignersByCreatedBlockIdMinStatusDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_STATUS_DESC', + MultiSigSignersByCreatedBlockIdMinUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdMinUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdStddevPopulationBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MultiSigSignersByCreatedBlockIdStddevPopulationBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MultiSigSignersByCreatedBlockIdStddevPopulationCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + MultiSigSignersByCreatedBlockIdStddevPopulationCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + MultiSigSignersByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdStddevPopulationIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + MultiSigSignersByCreatedBlockIdStddevPopulationIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + MultiSigSignersByCreatedBlockIdStddevPopulationMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MULTISIG_ID_ASC', + MultiSigSignersByCreatedBlockIdStddevPopulationMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MULTISIG_ID_DESC', + MultiSigSignersByCreatedBlockIdStddevPopulationSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_TYPE_ASC', + MultiSigSignersByCreatedBlockIdStddevPopulationSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_TYPE_DESC', + MultiSigSignersByCreatedBlockIdStddevPopulationSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_VALUE_ASC', + MultiSigSignersByCreatedBlockIdStddevPopulationSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_VALUE_DESC', + MultiSigSignersByCreatedBlockIdStddevPopulationStatusAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + MultiSigSignersByCreatedBlockIdStddevPopulationStatusDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + MultiSigSignersByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdStddevSampleBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MultiSigSignersByCreatedBlockIdStddevSampleBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MultiSigSignersByCreatedBlockIdStddevSampleCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + MultiSigSignersByCreatedBlockIdStddevSampleCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + MultiSigSignersByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdStddevSampleIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + MultiSigSignersByCreatedBlockIdStddevSampleIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + MultiSigSignersByCreatedBlockIdStddevSampleMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MULTISIG_ID_ASC', + MultiSigSignersByCreatedBlockIdStddevSampleMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MULTISIG_ID_DESC', + MultiSigSignersByCreatedBlockIdStddevSampleSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_TYPE_ASC', + MultiSigSignersByCreatedBlockIdStddevSampleSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_TYPE_DESC', + MultiSigSignersByCreatedBlockIdStddevSampleSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_VALUE_ASC', + MultiSigSignersByCreatedBlockIdStddevSampleSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_VALUE_DESC', + MultiSigSignersByCreatedBlockIdStddevSampleStatusAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + MultiSigSignersByCreatedBlockIdStddevSampleStatusDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + MultiSigSignersByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdSumBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + MultiSigSignersByCreatedBlockIdSumBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + MultiSigSignersByCreatedBlockIdSumCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + MultiSigSignersByCreatedBlockIdSumCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + MultiSigSignersByCreatedBlockIdSumCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdSumCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdSumIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + MultiSigSignersByCreatedBlockIdSumIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + MultiSigSignersByCreatedBlockIdSumMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_MULTISIG_ID_ASC', + MultiSigSignersByCreatedBlockIdSumMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_MULTISIG_ID_DESC', + MultiSigSignersByCreatedBlockIdSumSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_SIGNER_TYPE_ASC', + MultiSigSignersByCreatedBlockIdSumSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_SIGNER_TYPE_DESC', + MultiSigSignersByCreatedBlockIdSumSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_SIGNER_VALUE_ASC', + MultiSigSignersByCreatedBlockIdSumSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_SIGNER_VALUE_DESC', + MultiSigSignersByCreatedBlockIdSumStatusAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_STATUS_ASC', + MultiSigSignersByCreatedBlockIdSumStatusDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_STATUS_DESC', + MultiSigSignersByCreatedBlockIdSumUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdSumUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdVariancePopulationBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MultiSigSignersByCreatedBlockIdVariancePopulationBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MultiSigSignersByCreatedBlockIdVariancePopulationCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + MultiSigSignersByCreatedBlockIdVariancePopulationCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + MultiSigSignersByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdVariancePopulationIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + MultiSigSignersByCreatedBlockIdVariancePopulationIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + MultiSigSignersByCreatedBlockIdVariancePopulationMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MULTISIG_ID_ASC', + MultiSigSignersByCreatedBlockIdVariancePopulationMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MULTISIG_ID_DESC', + MultiSigSignersByCreatedBlockIdVariancePopulationSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_TYPE_ASC', + MultiSigSignersByCreatedBlockIdVariancePopulationSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_TYPE_DESC', + MultiSigSignersByCreatedBlockIdVariancePopulationSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_VALUE_ASC', + MultiSigSignersByCreatedBlockIdVariancePopulationSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_VALUE_DESC', + MultiSigSignersByCreatedBlockIdVariancePopulationStatusAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + MultiSigSignersByCreatedBlockIdVariancePopulationStatusDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + MultiSigSignersByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdVarianceSampleBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MultiSigSignersByCreatedBlockIdVarianceSampleBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MultiSigSignersByCreatedBlockIdVarianceSampleCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + MultiSigSignersByCreatedBlockIdVarianceSampleCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + MultiSigSignersByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigSignersByCreatedBlockIdVarianceSampleIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + MultiSigSignersByCreatedBlockIdVarianceSampleIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + MultiSigSignersByCreatedBlockIdVarianceSampleMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MULTISIG_ID_ASC', + MultiSigSignersByCreatedBlockIdVarianceSampleMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MULTISIG_ID_DESC', + MultiSigSignersByCreatedBlockIdVarianceSampleSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_TYPE_ASC', + MultiSigSignersByCreatedBlockIdVarianceSampleSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_TYPE_DESC', + MultiSigSignersByCreatedBlockIdVarianceSampleSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_VALUE_ASC', + MultiSigSignersByCreatedBlockIdVarianceSampleSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_VALUE_DESC', + MultiSigSignersByCreatedBlockIdVarianceSampleStatusAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + MultiSigSignersByCreatedBlockIdVarianceSampleStatusDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + MultiSigSignersByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdAverageBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + MultiSigSignersByUpdatedBlockIdAverageBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + MultiSigSignersByUpdatedBlockIdAverageCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + MultiSigSignersByUpdatedBlockIdAverageCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + MultiSigSignersByUpdatedBlockIdAverageCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdAverageCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdAverageIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + MultiSigSignersByUpdatedBlockIdAverageIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + MultiSigSignersByUpdatedBlockIdAverageMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_MULTISIG_ID_ASC', + MultiSigSignersByUpdatedBlockIdAverageMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_MULTISIG_ID_DESC', + MultiSigSignersByUpdatedBlockIdAverageSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNER_TYPE_ASC', + MultiSigSignersByUpdatedBlockIdAverageSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNER_TYPE_DESC', + MultiSigSignersByUpdatedBlockIdAverageSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNER_VALUE_ASC', + MultiSigSignersByUpdatedBlockIdAverageSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNER_VALUE_DESC', + MultiSigSignersByUpdatedBlockIdAverageStatusAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_ASC', + MultiSigSignersByUpdatedBlockIdAverageStatusDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_DESC', + MultiSigSignersByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdCountAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + MultiSigSignersByUpdatedBlockIdCountDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + MultiSigSignersByUpdatedBlockIdDistinctCountBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MultiSigSignersByUpdatedBlockIdDistinctCountBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MultiSigSignersByUpdatedBlockIdDistinctCountCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + MultiSigSignersByUpdatedBlockIdDistinctCountCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + MultiSigSignersByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdDistinctCountIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + MultiSigSignersByUpdatedBlockIdDistinctCountIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + MultiSigSignersByUpdatedBlockIdDistinctCountMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MULTISIG_ID_ASC', + MultiSigSignersByUpdatedBlockIdDistinctCountMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MULTISIG_ID_DESC', + MultiSigSignersByUpdatedBlockIdDistinctCountSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_TYPE_ASC', + MultiSigSignersByUpdatedBlockIdDistinctCountSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_TYPE_DESC', + MultiSigSignersByUpdatedBlockIdDistinctCountSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_VALUE_ASC', + MultiSigSignersByUpdatedBlockIdDistinctCountSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_VALUE_DESC', + MultiSigSignersByUpdatedBlockIdDistinctCountStatusAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + MultiSigSignersByUpdatedBlockIdDistinctCountStatusDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + MultiSigSignersByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdMaxBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + MultiSigSignersByUpdatedBlockIdMaxBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + MultiSigSignersByUpdatedBlockIdMaxCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + MultiSigSignersByUpdatedBlockIdMaxCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + MultiSigSignersByUpdatedBlockIdMaxCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdMaxCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdMaxIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + MultiSigSignersByUpdatedBlockIdMaxIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + MultiSigSignersByUpdatedBlockIdMaxMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_MULTISIG_ID_ASC', + MultiSigSignersByUpdatedBlockIdMaxMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_MULTISIG_ID_DESC', + MultiSigSignersByUpdatedBlockIdMaxSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_SIGNER_TYPE_ASC', + MultiSigSignersByUpdatedBlockIdMaxSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_SIGNER_TYPE_DESC', + MultiSigSignersByUpdatedBlockIdMaxSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_SIGNER_VALUE_ASC', + MultiSigSignersByUpdatedBlockIdMaxSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_SIGNER_VALUE_DESC', + MultiSigSignersByUpdatedBlockIdMaxStatusAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_STATUS_ASC', + MultiSigSignersByUpdatedBlockIdMaxStatusDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_STATUS_DESC', + MultiSigSignersByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdMinBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + MultiSigSignersByUpdatedBlockIdMinBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + MultiSigSignersByUpdatedBlockIdMinCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + MultiSigSignersByUpdatedBlockIdMinCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + MultiSigSignersByUpdatedBlockIdMinCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdMinCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdMinIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + MultiSigSignersByUpdatedBlockIdMinIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + MultiSigSignersByUpdatedBlockIdMinMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_MULTISIG_ID_ASC', + MultiSigSignersByUpdatedBlockIdMinMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_MULTISIG_ID_DESC', + MultiSigSignersByUpdatedBlockIdMinSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_SIGNER_TYPE_ASC', + MultiSigSignersByUpdatedBlockIdMinSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_SIGNER_TYPE_DESC', + MultiSigSignersByUpdatedBlockIdMinSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_SIGNER_VALUE_ASC', + MultiSigSignersByUpdatedBlockIdMinSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_SIGNER_VALUE_DESC', + MultiSigSignersByUpdatedBlockIdMinStatusAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_STATUS_ASC', + MultiSigSignersByUpdatedBlockIdMinStatusDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_STATUS_DESC', + MultiSigSignersByUpdatedBlockIdMinUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdMinUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MultiSigSignersByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MultiSigSignersByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + MultiSigSignersByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + MultiSigSignersByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdStddevPopulationIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + MultiSigSignersByUpdatedBlockIdStddevPopulationIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + MultiSigSignersByUpdatedBlockIdStddevPopulationMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MULTISIG_ID_ASC', + MultiSigSignersByUpdatedBlockIdStddevPopulationMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MULTISIG_ID_DESC', + MultiSigSignersByUpdatedBlockIdStddevPopulationSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_TYPE_ASC', + MultiSigSignersByUpdatedBlockIdStddevPopulationSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_TYPE_DESC', + MultiSigSignersByUpdatedBlockIdStddevPopulationSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_VALUE_ASC', + MultiSigSignersByUpdatedBlockIdStddevPopulationSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_VALUE_DESC', + MultiSigSignersByUpdatedBlockIdStddevPopulationStatusAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + MultiSigSignersByUpdatedBlockIdStddevPopulationStatusDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + MultiSigSignersByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdStddevSampleBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MultiSigSignersByUpdatedBlockIdStddevSampleBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MultiSigSignersByUpdatedBlockIdStddevSampleCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + MultiSigSignersByUpdatedBlockIdStddevSampleCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + MultiSigSignersByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdStddevSampleIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + MultiSigSignersByUpdatedBlockIdStddevSampleIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + MultiSigSignersByUpdatedBlockIdStddevSampleMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MULTISIG_ID_ASC', + MultiSigSignersByUpdatedBlockIdStddevSampleMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MULTISIG_ID_DESC', + MultiSigSignersByUpdatedBlockIdStddevSampleSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_TYPE_ASC', + MultiSigSignersByUpdatedBlockIdStddevSampleSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_TYPE_DESC', + MultiSigSignersByUpdatedBlockIdStddevSampleSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_VALUE_ASC', + MultiSigSignersByUpdatedBlockIdStddevSampleSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_VALUE_DESC', + MultiSigSignersByUpdatedBlockIdStddevSampleStatusAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + MultiSigSignersByUpdatedBlockIdStddevSampleStatusDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + MultiSigSignersByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdSumBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + MultiSigSignersByUpdatedBlockIdSumBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + MultiSigSignersByUpdatedBlockIdSumCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + MultiSigSignersByUpdatedBlockIdSumCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + MultiSigSignersByUpdatedBlockIdSumCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdSumCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdSumIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + MultiSigSignersByUpdatedBlockIdSumIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + MultiSigSignersByUpdatedBlockIdSumMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_MULTISIG_ID_ASC', + MultiSigSignersByUpdatedBlockIdSumMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_MULTISIG_ID_DESC', + MultiSigSignersByUpdatedBlockIdSumSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_SIGNER_TYPE_ASC', + MultiSigSignersByUpdatedBlockIdSumSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_SIGNER_TYPE_DESC', + MultiSigSignersByUpdatedBlockIdSumSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_SIGNER_VALUE_ASC', + MultiSigSignersByUpdatedBlockIdSumSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_SIGNER_VALUE_DESC', + MultiSigSignersByUpdatedBlockIdSumStatusAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_STATUS_ASC', + MultiSigSignersByUpdatedBlockIdSumStatusDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_STATUS_DESC', + MultiSigSignersByUpdatedBlockIdSumUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdSumUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MultiSigSignersByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MultiSigSignersByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + MultiSigSignersByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + MultiSigSignersByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdVariancePopulationIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + MultiSigSignersByUpdatedBlockIdVariancePopulationIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + MultiSigSignersByUpdatedBlockIdVariancePopulationMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MULTISIG_ID_ASC', + MultiSigSignersByUpdatedBlockIdVariancePopulationMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MULTISIG_ID_DESC', + MultiSigSignersByUpdatedBlockIdVariancePopulationSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_TYPE_ASC', + MultiSigSignersByUpdatedBlockIdVariancePopulationSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_TYPE_DESC', + MultiSigSignersByUpdatedBlockIdVariancePopulationSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_VALUE_ASC', + MultiSigSignersByUpdatedBlockIdVariancePopulationSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_VALUE_DESC', + MultiSigSignersByUpdatedBlockIdVariancePopulationStatusAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + MultiSigSignersByUpdatedBlockIdVariancePopulationStatusDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + MultiSigSignersByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MultiSigSignersByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MultiSigSignersByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + MultiSigSignersByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + MultiSigSignersByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigSignersByUpdatedBlockIdVarianceSampleIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + MultiSigSignersByUpdatedBlockIdVarianceSampleIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + MultiSigSignersByUpdatedBlockIdVarianceSampleMultisigIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MULTISIG_ID_ASC', + MultiSigSignersByUpdatedBlockIdVarianceSampleMultisigIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MULTISIG_ID_DESC', + MultiSigSignersByUpdatedBlockIdVarianceSampleSignerTypeAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_TYPE_ASC', + MultiSigSignersByUpdatedBlockIdVarianceSampleSignerTypeDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_TYPE_DESC', + MultiSigSignersByUpdatedBlockIdVarianceSampleSignerValueAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_VALUE_ASC', + MultiSigSignersByUpdatedBlockIdVarianceSampleSignerValueDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_VALUE_DESC', + MultiSigSignersByUpdatedBlockIdVarianceSampleStatusAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + MultiSigSignersByUpdatedBlockIdVarianceSampleStatusDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + MultiSigSignersByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigSignersByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'MULTI_SIG_SIGNERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + Natural = 'NATURAL', + NftHoldersByCreatedBlockIdAverageAssetIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + NftHoldersByCreatedBlockIdAverageAssetIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + NftHoldersByCreatedBlockIdAverageBlockRangeAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + NftHoldersByCreatedBlockIdAverageBlockRangeDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + NftHoldersByCreatedBlockIdAverageCreatedAtAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + NftHoldersByCreatedBlockIdAverageCreatedAtDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + NftHoldersByCreatedBlockIdAverageCreatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdAverageCreatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdAverageIdentityIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + NftHoldersByCreatedBlockIdAverageIdentityIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + NftHoldersByCreatedBlockIdAverageIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + NftHoldersByCreatedBlockIdAverageIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + NftHoldersByCreatedBlockIdAverageNftIdsAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_NFT_IDS_ASC', + NftHoldersByCreatedBlockIdAverageNftIdsDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_NFT_IDS_DESC', + NftHoldersByCreatedBlockIdAverageUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdAverageUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdCountAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_COUNT_ASC', + NftHoldersByCreatedBlockIdCountDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_COUNT_DESC', + NftHoldersByCreatedBlockIdDistinctCountAssetIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + NftHoldersByCreatedBlockIdDistinctCountAssetIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + NftHoldersByCreatedBlockIdDistinctCountBlockRangeAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + NftHoldersByCreatedBlockIdDistinctCountBlockRangeDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + NftHoldersByCreatedBlockIdDistinctCountCreatedAtAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + NftHoldersByCreatedBlockIdDistinctCountCreatedAtDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + NftHoldersByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdDistinctCountIdentityIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + NftHoldersByCreatedBlockIdDistinctCountIdentityIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + NftHoldersByCreatedBlockIdDistinctCountIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + NftHoldersByCreatedBlockIdDistinctCountIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + NftHoldersByCreatedBlockIdDistinctCountNftIdsAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_ASC', + NftHoldersByCreatedBlockIdDistinctCountNftIdsDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_DESC', + NftHoldersByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdMaxAssetIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + NftHoldersByCreatedBlockIdMaxAssetIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + NftHoldersByCreatedBlockIdMaxBlockRangeAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + NftHoldersByCreatedBlockIdMaxBlockRangeDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + NftHoldersByCreatedBlockIdMaxCreatedAtAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + NftHoldersByCreatedBlockIdMaxCreatedAtDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + NftHoldersByCreatedBlockIdMaxCreatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdMaxCreatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdMaxIdentityIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + NftHoldersByCreatedBlockIdMaxIdentityIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + NftHoldersByCreatedBlockIdMaxIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + NftHoldersByCreatedBlockIdMaxIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + NftHoldersByCreatedBlockIdMaxNftIdsAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_NFT_IDS_ASC', + NftHoldersByCreatedBlockIdMaxNftIdsDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_NFT_IDS_DESC', + NftHoldersByCreatedBlockIdMaxUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdMaxUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdMinAssetIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + NftHoldersByCreatedBlockIdMinAssetIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + NftHoldersByCreatedBlockIdMinBlockRangeAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + NftHoldersByCreatedBlockIdMinBlockRangeDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + NftHoldersByCreatedBlockIdMinCreatedAtAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + NftHoldersByCreatedBlockIdMinCreatedAtDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + NftHoldersByCreatedBlockIdMinCreatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdMinCreatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdMinIdentityIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + NftHoldersByCreatedBlockIdMinIdentityIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + NftHoldersByCreatedBlockIdMinIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + NftHoldersByCreatedBlockIdMinIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + NftHoldersByCreatedBlockIdMinNftIdsAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_NFT_IDS_ASC', + NftHoldersByCreatedBlockIdMinNftIdsDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_NFT_IDS_DESC', + NftHoldersByCreatedBlockIdMinUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdMinUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdStddevPopulationAssetIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + NftHoldersByCreatedBlockIdStddevPopulationAssetIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + NftHoldersByCreatedBlockIdStddevPopulationBlockRangeAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + NftHoldersByCreatedBlockIdStddevPopulationBlockRangeDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + NftHoldersByCreatedBlockIdStddevPopulationCreatedAtAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + NftHoldersByCreatedBlockIdStddevPopulationCreatedAtDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + NftHoldersByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdStddevPopulationIdentityIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + NftHoldersByCreatedBlockIdStddevPopulationIdentityIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + NftHoldersByCreatedBlockIdStddevPopulationIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + NftHoldersByCreatedBlockIdStddevPopulationIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + NftHoldersByCreatedBlockIdStddevPopulationNftIdsAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_ASC', + NftHoldersByCreatedBlockIdStddevPopulationNftIdsDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_DESC', + NftHoldersByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdStddevSampleAssetIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + NftHoldersByCreatedBlockIdStddevSampleAssetIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + NftHoldersByCreatedBlockIdStddevSampleBlockRangeAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + NftHoldersByCreatedBlockIdStddevSampleBlockRangeDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + NftHoldersByCreatedBlockIdStddevSampleCreatedAtAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + NftHoldersByCreatedBlockIdStddevSampleCreatedAtDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + NftHoldersByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdStddevSampleIdentityIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + NftHoldersByCreatedBlockIdStddevSampleIdentityIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + NftHoldersByCreatedBlockIdStddevSampleIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + NftHoldersByCreatedBlockIdStddevSampleIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + NftHoldersByCreatedBlockIdStddevSampleNftIdsAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + NftHoldersByCreatedBlockIdStddevSampleNftIdsDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + NftHoldersByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdSumAssetIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + NftHoldersByCreatedBlockIdSumAssetIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + NftHoldersByCreatedBlockIdSumBlockRangeAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + NftHoldersByCreatedBlockIdSumBlockRangeDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + NftHoldersByCreatedBlockIdSumCreatedAtAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + NftHoldersByCreatedBlockIdSumCreatedAtDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + NftHoldersByCreatedBlockIdSumCreatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdSumCreatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdSumIdentityIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + NftHoldersByCreatedBlockIdSumIdentityIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + NftHoldersByCreatedBlockIdSumIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + NftHoldersByCreatedBlockIdSumIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + NftHoldersByCreatedBlockIdSumNftIdsAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_NFT_IDS_ASC', + NftHoldersByCreatedBlockIdSumNftIdsDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_NFT_IDS_DESC', + NftHoldersByCreatedBlockIdSumUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdSumUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdVariancePopulationAssetIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + NftHoldersByCreatedBlockIdVariancePopulationAssetIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + NftHoldersByCreatedBlockIdVariancePopulationBlockRangeAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + NftHoldersByCreatedBlockIdVariancePopulationBlockRangeDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + NftHoldersByCreatedBlockIdVariancePopulationCreatedAtAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + NftHoldersByCreatedBlockIdVariancePopulationCreatedAtDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + NftHoldersByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdVariancePopulationIdentityIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + NftHoldersByCreatedBlockIdVariancePopulationIdentityIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + NftHoldersByCreatedBlockIdVariancePopulationIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + NftHoldersByCreatedBlockIdVariancePopulationIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + NftHoldersByCreatedBlockIdVariancePopulationNftIdsAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + NftHoldersByCreatedBlockIdVariancePopulationNftIdsDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + NftHoldersByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdVarianceSampleAssetIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + NftHoldersByCreatedBlockIdVarianceSampleAssetIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + NftHoldersByCreatedBlockIdVarianceSampleBlockRangeAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + NftHoldersByCreatedBlockIdVarianceSampleBlockRangeDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + NftHoldersByCreatedBlockIdVarianceSampleCreatedAtAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + NftHoldersByCreatedBlockIdVarianceSampleCreatedAtDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + NftHoldersByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + NftHoldersByCreatedBlockIdVarianceSampleIdentityIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + NftHoldersByCreatedBlockIdVarianceSampleIdentityIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + NftHoldersByCreatedBlockIdVarianceSampleIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + NftHoldersByCreatedBlockIdVarianceSampleIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + NftHoldersByCreatedBlockIdVarianceSampleNftIdsAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + NftHoldersByCreatedBlockIdVarianceSampleNftIdsDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + NftHoldersByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + NftHoldersByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdAverageAssetIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + NftHoldersByUpdatedBlockIdAverageAssetIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + NftHoldersByUpdatedBlockIdAverageBlockRangeAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + NftHoldersByUpdatedBlockIdAverageBlockRangeDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + NftHoldersByUpdatedBlockIdAverageCreatedAtAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + NftHoldersByUpdatedBlockIdAverageCreatedAtDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + NftHoldersByUpdatedBlockIdAverageCreatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdAverageCreatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdAverageIdentityIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + NftHoldersByUpdatedBlockIdAverageIdentityIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + NftHoldersByUpdatedBlockIdAverageIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + NftHoldersByUpdatedBlockIdAverageIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + NftHoldersByUpdatedBlockIdAverageNftIdsAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_NFT_IDS_ASC', + NftHoldersByUpdatedBlockIdAverageNftIdsDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_NFT_IDS_DESC', + NftHoldersByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdCountAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + NftHoldersByUpdatedBlockIdCountDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + NftHoldersByUpdatedBlockIdDistinctCountAssetIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + NftHoldersByUpdatedBlockIdDistinctCountAssetIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + NftHoldersByUpdatedBlockIdDistinctCountBlockRangeAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + NftHoldersByUpdatedBlockIdDistinctCountBlockRangeDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + NftHoldersByUpdatedBlockIdDistinctCountCreatedAtAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + NftHoldersByUpdatedBlockIdDistinctCountCreatedAtDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + NftHoldersByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdDistinctCountIdentityIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + NftHoldersByUpdatedBlockIdDistinctCountIdentityIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + NftHoldersByUpdatedBlockIdDistinctCountIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + NftHoldersByUpdatedBlockIdDistinctCountIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + NftHoldersByUpdatedBlockIdDistinctCountNftIdsAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_ASC', + NftHoldersByUpdatedBlockIdDistinctCountNftIdsDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_DESC', + NftHoldersByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdMaxAssetIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + NftHoldersByUpdatedBlockIdMaxAssetIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + NftHoldersByUpdatedBlockIdMaxBlockRangeAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + NftHoldersByUpdatedBlockIdMaxBlockRangeDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + NftHoldersByUpdatedBlockIdMaxCreatedAtAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + NftHoldersByUpdatedBlockIdMaxCreatedAtDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + NftHoldersByUpdatedBlockIdMaxCreatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdMaxCreatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdMaxIdentityIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + NftHoldersByUpdatedBlockIdMaxIdentityIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + NftHoldersByUpdatedBlockIdMaxIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + NftHoldersByUpdatedBlockIdMaxIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + NftHoldersByUpdatedBlockIdMaxNftIdsAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_NFT_IDS_ASC', + NftHoldersByUpdatedBlockIdMaxNftIdsDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_NFT_IDS_DESC', + NftHoldersByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdMinAssetIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + NftHoldersByUpdatedBlockIdMinAssetIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + NftHoldersByUpdatedBlockIdMinBlockRangeAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + NftHoldersByUpdatedBlockIdMinBlockRangeDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + NftHoldersByUpdatedBlockIdMinCreatedAtAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + NftHoldersByUpdatedBlockIdMinCreatedAtDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + NftHoldersByUpdatedBlockIdMinCreatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdMinCreatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdMinIdentityIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + NftHoldersByUpdatedBlockIdMinIdentityIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + NftHoldersByUpdatedBlockIdMinIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + NftHoldersByUpdatedBlockIdMinIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + NftHoldersByUpdatedBlockIdMinNftIdsAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_NFT_IDS_ASC', + NftHoldersByUpdatedBlockIdMinNftIdsDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_NFT_IDS_DESC', + NftHoldersByUpdatedBlockIdMinUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdMinUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdStddevPopulationAssetIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + NftHoldersByUpdatedBlockIdStddevPopulationAssetIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + NftHoldersByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + NftHoldersByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + NftHoldersByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + NftHoldersByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + NftHoldersByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + NftHoldersByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + NftHoldersByUpdatedBlockIdStddevPopulationIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + NftHoldersByUpdatedBlockIdStddevPopulationIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + NftHoldersByUpdatedBlockIdStddevPopulationNftIdsAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_ASC', + NftHoldersByUpdatedBlockIdStddevPopulationNftIdsDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_DESC', + NftHoldersByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdStddevSampleAssetIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + NftHoldersByUpdatedBlockIdStddevSampleAssetIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + NftHoldersByUpdatedBlockIdStddevSampleBlockRangeAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + NftHoldersByUpdatedBlockIdStddevSampleBlockRangeDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + NftHoldersByUpdatedBlockIdStddevSampleCreatedAtAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + NftHoldersByUpdatedBlockIdStddevSampleCreatedAtDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + NftHoldersByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdStddevSampleIdentityIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + NftHoldersByUpdatedBlockIdStddevSampleIdentityIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + NftHoldersByUpdatedBlockIdStddevSampleIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + NftHoldersByUpdatedBlockIdStddevSampleIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + NftHoldersByUpdatedBlockIdStddevSampleNftIdsAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + NftHoldersByUpdatedBlockIdStddevSampleNftIdsDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + NftHoldersByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdSumAssetIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + NftHoldersByUpdatedBlockIdSumAssetIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + NftHoldersByUpdatedBlockIdSumBlockRangeAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + NftHoldersByUpdatedBlockIdSumBlockRangeDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + NftHoldersByUpdatedBlockIdSumCreatedAtAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + NftHoldersByUpdatedBlockIdSumCreatedAtDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + NftHoldersByUpdatedBlockIdSumCreatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdSumCreatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdSumIdentityIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + NftHoldersByUpdatedBlockIdSumIdentityIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + NftHoldersByUpdatedBlockIdSumIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + NftHoldersByUpdatedBlockIdSumIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + NftHoldersByUpdatedBlockIdSumNftIdsAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_NFT_IDS_ASC', + NftHoldersByUpdatedBlockIdSumNftIdsDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_NFT_IDS_DESC', + NftHoldersByUpdatedBlockIdSumUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdSumUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdVariancePopulationAssetIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + NftHoldersByUpdatedBlockIdVariancePopulationAssetIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + NftHoldersByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + NftHoldersByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + NftHoldersByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + NftHoldersByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + NftHoldersByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + NftHoldersByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + NftHoldersByUpdatedBlockIdVariancePopulationIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + NftHoldersByUpdatedBlockIdVariancePopulationIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + NftHoldersByUpdatedBlockIdVariancePopulationNftIdsAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + NftHoldersByUpdatedBlockIdVariancePopulationNftIdsDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + NftHoldersByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdVarianceSampleAssetIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + NftHoldersByUpdatedBlockIdVarianceSampleAssetIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + NftHoldersByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + NftHoldersByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + NftHoldersByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + NftHoldersByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + NftHoldersByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + NftHoldersByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + NftHoldersByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + NftHoldersByUpdatedBlockIdVarianceSampleIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + NftHoldersByUpdatedBlockIdVarianceSampleIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + NftHoldersByUpdatedBlockIdVarianceSampleNftIdsAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + NftHoldersByUpdatedBlockIdVarianceSampleNftIdsDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + NftHoldersByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + NftHoldersByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'NFT_HOLDERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdAverageBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + OffChainReceiptsByCreatedBlockIdAverageBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + OffChainReceiptsByCreatedBlockIdAverageCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + OffChainReceiptsByCreatedBlockIdAverageCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + OffChainReceiptsByCreatedBlockIdAverageCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdAverageCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdAverageIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + OffChainReceiptsByCreatedBlockIdAverageIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + OffChainReceiptsByCreatedBlockIdAverageLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_LEG_ID_ASC', + OffChainReceiptsByCreatedBlockIdAverageLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_LEG_ID_DESC', + OffChainReceiptsByCreatedBlockIdAverageMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_METADATA_ASC', + OffChainReceiptsByCreatedBlockIdAverageMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_METADATA_DESC', + OffChainReceiptsByCreatedBlockIdAverageSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_SIGNER_ASC', + OffChainReceiptsByCreatedBlockIdAverageSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_SIGNER_DESC', + OffChainReceiptsByCreatedBlockIdAverageUidAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_UID_ASC', + OffChainReceiptsByCreatedBlockIdAverageUidDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_UID_DESC', + OffChainReceiptsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdCountAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + OffChainReceiptsByCreatedBlockIdCountDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + OffChainReceiptsByCreatedBlockIdDistinctCountBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + OffChainReceiptsByCreatedBlockIdDistinctCountBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + OffChainReceiptsByCreatedBlockIdDistinctCountCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + OffChainReceiptsByCreatedBlockIdDistinctCountCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + OffChainReceiptsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdDistinctCountIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + OffChainReceiptsByCreatedBlockIdDistinctCountIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + OffChainReceiptsByCreatedBlockIdDistinctCountLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LEG_ID_ASC', + OffChainReceiptsByCreatedBlockIdDistinctCountLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_LEG_ID_DESC', + OffChainReceiptsByCreatedBlockIdDistinctCountMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_METADATA_ASC', + OffChainReceiptsByCreatedBlockIdDistinctCountMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_METADATA_DESC', + OffChainReceiptsByCreatedBlockIdDistinctCountSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_ASC', + OffChainReceiptsByCreatedBlockIdDistinctCountSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_DESC', + OffChainReceiptsByCreatedBlockIdDistinctCountUidAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UID_ASC', + OffChainReceiptsByCreatedBlockIdDistinctCountUidDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UID_DESC', + OffChainReceiptsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdMaxBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + OffChainReceiptsByCreatedBlockIdMaxBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + OffChainReceiptsByCreatedBlockIdMaxCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + OffChainReceiptsByCreatedBlockIdMaxCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + OffChainReceiptsByCreatedBlockIdMaxCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdMaxCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdMaxIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + OffChainReceiptsByCreatedBlockIdMaxIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + OffChainReceiptsByCreatedBlockIdMaxLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_LEG_ID_ASC', + OffChainReceiptsByCreatedBlockIdMaxLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_LEG_ID_DESC', + OffChainReceiptsByCreatedBlockIdMaxMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_METADATA_ASC', + OffChainReceiptsByCreatedBlockIdMaxMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_METADATA_DESC', + OffChainReceiptsByCreatedBlockIdMaxSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_SIGNER_ASC', + OffChainReceiptsByCreatedBlockIdMaxSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_SIGNER_DESC', + OffChainReceiptsByCreatedBlockIdMaxUidAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_UID_ASC', + OffChainReceiptsByCreatedBlockIdMaxUidDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_UID_DESC', + OffChainReceiptsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdMinBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + OffChainReceiptsByCreatedBlockIdMinBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + OffChainReceiptsByCreatedBlockIdMinCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + OffChainReceiptsByCreatedBlockIdMinCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + OffChainReceiptsByCreatedBlockIdMinCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdMinCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdMinIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + OffChainReceiptsByCreatedBlockIdMinIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + OffChainReceiptsByCreatedBlockIdMinLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_LEG_ID_ASC', + OffChainReceiptsByCreatedBlockIdMinLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_LEG_ID_DESC', + OffChainReceiptsByCreatedBlockIdMinMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_METADATA_ASC', + OffChainReceiptsByCreatedBlockIdMinMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_METADATA_DESC', + OffChainReceiptsByCreatedBlockIdMinSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_SIGNER_ASC', + OffChainReceiptsByCreatedBlockIdMinSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_SIGNER_DESC', + OffChainReceiptsByCreatedBlockIdMinUidAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_UID_ASC', + OffChainReceiptsByCreatedBlockIdMinUidDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_UID_DESC', + OffChainReceiptsByCreatedBlockIdMinUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdMinUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + OffChainReceiptsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + OffChainReceiptsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + OffChainReceiptsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + OffChainReceiptsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdStddevPopulationIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + OffChainReceiptsByCreatedBlockIdStddevPopulationIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + OffChainReceiptsByCreatedBlockIdStddevPopulationLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LEG_ID_ASC', + OffChainReceiptsByCreatedBlockIdStddevPopulationLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_LEG_ID_DESC', + OffChainReceiptsByCreatedBlockIdStddevPopulationMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_METADATA_ASC', + OffChainReceiptsByCreatedBlockIdStddevPopulationMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_METADATA_DESC', + OffChainReceiptsByCreatedBlockIdStddevPopulationSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_ASC', + OffChainReceiptsByCreatedBlockIdStddevPopulationSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_DESC', + OffChainReceiptsByCreatedBlockIdStddevPopulationUidAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UID_ASC', + OffChainReceiptsByCreatedBlockIdStddevPopulationUidDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UID_DESC', + OffChainReceiptsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdStddevSampleBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + OffChainReceiptsByCreatedBlockIdStddevSampleBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + OffChainReceiptsByCreatedBlockIdStddevSampleCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + OffChainReceiptsByCreatedBlockIdStddevSampleCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + OffChainReceiptsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdStddevSampleIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + OffChainReceiptsByCreatedBlockIdStddevSampleIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + OffChainReceiptsByCreatedBlockIdStddevSampleLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LEG_ID_ASC', + OffChainReceiptsByCreatedBlockIdStddevSampleLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_LEG_ID_DESC', + OffChainReceiptsByCreatedBlockIdStddevSampleMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_METADATA_ASC', + OffChainReceiptsByCreatedBlockIdStddevSampleMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_METADATA_DESC', + OffChainReceiptsByCreatedBlockIdStddevSampleSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_ASC', + OffChainReceiptsByCreatedBlockIdStddevSampleSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_DESC', + OffChainReceiptsByCreatedBlockIdStddevSampleUidAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UID_ASC', + OffChainReceiptsByCreatedBlockIdStddevSampleUidDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UID_DESC', + OffChainReceiptsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdSumBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + OffChainReceiptsByCreatedBlockIdSumBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + OffChainReceiptsByCreatedBlockIdSumCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + OffChainReceiptsByCreatedBlockIdSumCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + OffChainReceiptsByCreatedBlockIdSumCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdSumCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdSumIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + OffChainReceiptsByCreatedBlockIdSumIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + OffChainReceiptsByCreatedBlockIdSumLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_LEG_ID_ASC', + OffChainReceiptsByCreatedBlockIdSumLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_LEG_ID_DESC', + OffChainReceiptsByCreatedBlockIdSumMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_METADATA_ASC', + OffChainReceiptsByCreatedBlockIdSumMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_METADATA_DESC', + OffChainReceiptsByCreatedBlockIdSumSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_SIGNER_ASC', + OffChainReceiptsByCreatedBlockIdSumSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_SIGNER_DESC', + OffChainReceiptsByCreatedBlockIdSumUidAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_UID_ASC', + OffChainReceiptsByCreatedBlockIdSumUidDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_UID_DESC', + OffChainReceiptsByCreatedBlockIdSumUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdSumUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + OffChainReceiptsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + OffChainReceiptsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + OffChainReceiptsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + OffChainReceiptsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdVariancePopulationIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + OffChainReceiptsByCreatedBlockIdVariancePopulationIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + OffChainReceiptsByCreatedBlockIdVariancePopulationLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LEG_ID_ASC', + OffChainReceiptsByCreatedBlockIdVariancePopulationLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_LEG_ID_DESC', + OffChainReceiptsByCreatedBlockIdVariancePopulationMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_METADATA_ASC', + OffChainReceiptsByCreatedBlockIdVariancePopulationMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_METADATA_DESC', + OffChainReceiptsByCreatedBlockIdVariancePopulationSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_ASC', + OffChainReceiptsByCreatedBlockIdVariancePopulationSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_DESC', + OffChainReceiptsByCreatedBlockIdVariancePopulationUidAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UID_ASC', + OffChainReceiptsByCreatedBlockIdVariancePopulationUidDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UID_DESC', + OffChainReceiptsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + OffChainReceiptsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + OffChainReceiptsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + OffChainReceiptsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + OffChainReceiptsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByCreatedBlockIdVarianceSampleIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + OffChainReceiptsByCreatedBlockIdVarianceSampleIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + OffChainReceiptsByCreatedBlockIdVarianceSampleLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_ID_ASC', + OffChainReceiptsByCreatedBlockIdVarianceSampleLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_ID_DESC', + OffChainReceiptsByCreatedBlockIdVarianceSampleMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_METADATA_ASC', + OffChainReceiptsByCreatedBlockIdVarianceSampleMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_METADATA_DESC', + OffChainReceiptsByCreatedBlockIdVarianceSampleSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_ASC', + OffChainReceiptsByCreatedBlockIdVarianceSampleSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_DESC', + OffChainReceiptsByCreatedBlockIdVarianceSampleUidAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UID_ASC', + OffChainReceiptsByCreatedBlockIdVarianceSampleUidDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UID_DESC', + OffChainReceiptsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdAverageBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + OffChainReceiptsByUpdatedBlockIdAverageBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + OffChainReceiptsByUpdatedBlockIdAverageCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + OffChainReceiptsByUpdatedBlockIdAverageCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + OffChainReceiptsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdAverageIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + OffChainReceiptsByUpdatedBlockIdAverageIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + OffChainReceiptsByUpdatedBlockIdAverageLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_LEG_ID_ASC', + OffChainReceiptsByUpdatedBlockIdAverageLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_LEG_ID_DESC', + OffChainReceiptsByUpdatedBlockIdAverageMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_METADATA_ASC', + OffChainReceiptsByUpdatedBlockIdAverageMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_METADATA_DESC', + OffChainReceiptsByUpdatedBlockIdAverageSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNER_ASC', + OffChainReceiptsByUpdatedBlockIdAverageSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNER_DESC', + OffChainReceiptsByUpdatedBlockIdAverageUidAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_UID_ASC', + OffChainReceiptsByUpdatedBlockIdAverageUidDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_UID_DESC', + OffChainReceiptsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdCountAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + OffChainReceiptsByUpdatedBlockIdCountDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + OffChainReceiptsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + OffChainReceiptsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + OffChainReceiptsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + OffChainReceiptsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + OffChainReceiptsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdDistinctCountIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + OffChainReceiptsByUpdatedBlockIdDistinctCountIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + OffChainReceiptsByUpdatedBlockIdDistinctCountLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LEG_ID_ASC', + OffChainReceiptsByUpdatedBlockIdDistinctCountLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_LEG_ID_DESC', + OffChainReceiptsByUpdatedBlockIdDistinctCountMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_METADATA_ASC', + OffChainReceiptsByUpdatedBlockIdDistinctCountMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_METADATA_DESC', + OffChainReceiptsByUpdatedBlockIdDistinctCountSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_ASC', + OffChainReceiptsByUpdatedBlockIdDistinctCountSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNER_DESC', + OffChainReceiptsByUpdatedBlockIdDistinctCountUidAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UID_ASC', + OffChainReceiptsByUpdatedBlockIdDistinctCountUidDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UID_DESC', + OffChainReceiptsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdMaxBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + OffChainReceiptsByUpdatedBlockIdMaxBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + OffChainReceiptsByUpdatedBlockIdMaxCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + OffChainReceiptsByUpdatedBlockIdMaxCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + OffChainReceiptsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdMaxIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + OffChainReceiptsByUpdatedBlockIdMaxIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + OffChainReceiptsByUpdatedBlockIdMaxLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_LEG_ID_ASC', + OffChainReceiptsByUpdatedBlockIdMaxLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_LEG_ID_DESC', + OffChainReceiptsByUpdatedBlockIdMaxMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_METADATA_ASC', + OffChainReceiptsByUpdatedBlockIdMaxMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_METADATA_DESC', + OffChainReceiptsByUpdatedBlockIdMaxSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_SIGNER_ASC', + OffChainReceiptsByUpdatedBlockIdMaxSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_SIGNER_DESC', + OffChainReceiptsByUpdatedBlockIdMaxUidAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_UID_ASC', + OffChainReceiptsByUpdatedBlockIdMaxUidDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_UID_DESC', + OffChainReceiptsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdMinBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + OffChainReceiptsByUpdatedBlockIdMinBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + OffChainReceiptsByUpdatedBlockIdMinCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + OffChainReceiptsByUpdatedBlockIdMinCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + OffChainReceiptsByUpdatedBlockIdMinCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdMinCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdMinIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + OffChainReceiptsByUpdatedBlockIdMinIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + OffChainReceiptsByUpdatedBlockIdMinLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_LEG_ID_ASC', + OffChainReceiptsByUpdatedBlockIdMinLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_LEG_ID_DESC', + OffChainReceiptsByUpdatedBlockIdMinMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_METADATA_ASC', + OffChainReceiptsByUpdatedBlockIdMinMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_METADATA_DESC', + OffChainReceiptsByUpdatedBlockIdMinSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_SIGNER_ASC', + OffChainReceiptsByUpdatedBlockIdMinSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_SIGNER_DESC', + OffChainReceiptsByUpdatedBlockIdMinUidAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_UID_ASC', + OffChainReceiptsByUpdatedBlockIdMinUidDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_UID_DESC', + OffChainReceiptsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LEG_ID_ASC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_LEG_ID_DESC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_METADATA_ASC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_METADATA_DESC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_ASC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNER_DESC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationUidAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UID_ASC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationUidDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UID_DESC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + OffChainReceiptsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + OffChainReceiptsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + OffChainReceiptsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + OffChainReceiptsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdStddevSampleIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + OffChainReceiptsByUpdatedBlockIdStddevSampleIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + OffChainReceiptsByUpdatedBlockIdStddevSampleLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LEG_ID_ASC', + OffChainReceiptsByUpdatedBlockIdStddevSampleLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_LEG_ID_DESC', + OffChainReceiptsByUpdatedBlockIdStddevSampleMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_METADATA_ASC', + OffChainReceiptsByUpdatedBlockIdStddevSampleMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_METADATA_DESC', + OffChainReceiptsByUpdatedBlockIdStddevSampleSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_ASC', + OffChainReceiptsByUpdatedBlockIdStddevSampleSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNER_DESC', + OffChainReceiptsByUpdatedBlockIdStddevSampleUidAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UID_ASC', + OffChainReceiptsByUpdatedBlockIdStddevSampleUidDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UID_DESC', + OffChainReceiptsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdSumBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + OffChainReceiptsByUpdatedBlockIdSumBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + OffChainReceiptsByUpdatedBlockIdSumCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + OffChainReceiptsByUpdatedBlockIdSumCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + OffChainReceiptsByUpdatedBlockIdSumCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdSumCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdSumIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + OffChainReceiptsByUpdatedBlockIdSumIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + OffChainReceiptsByUpdatedBlockIdSumLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_LEG_ID_ASC', + OffChainReceiptsByUpdatedBlockIdSumLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_LEG_ID_DESC', + OffChainReceiptsByUpdatedBlockIdSumMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_METADATA_ASC', + OffChainReceiptsByUpdatedBlockIdSumMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_METADATA_DESC', + OffChainReceiptsByUpdatedBlockIdSumSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_SIGNER_ASC', + OffChainReceiptsByUpdatedBlockIdSumSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_SIGNER_DESC', + OffChainReceiptsByUpdatedBlockIdSumUidAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_UID_ASC', + OffChainReceiptsByUpdatedBlockIdSumUidDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_UID_DESC', + OffChainReceiptsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LEG_ID_ASC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_LEG_ID_DESC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_METADATA_ASC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_METADATA_DESC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_ASC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNER_DESC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationUidAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UID_ASC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationUidDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UID_DESC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleLegIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_ID_ASC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleLegIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_LEG_ID_DESC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleMetadataAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_METADATA_ASC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleMetadataDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_METADATA_DESC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleSignerAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_ASC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleSignerDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNER_DESC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleUidAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UID_ASC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleUidDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UID_DESC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ParentHashAsc = 'PARENT_HASH_ASC', + ParentHashDesc = 'PARENT_HASH_DESC', + ParentIdAsc = 'PARENT_ID_ASC', + ParentIdDesc = 'PARENT_ID_DESC', + PermissionsByCreatedBlockIdAverageAssetsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_ASSETS_ASC', + PermissionsByCreatedBlockIdAverageAssetsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_ASSETS_DESC', + PermissionsByCreatedBlockIdAverageBlockRangeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + PermissionsByCreatedBlockIdAverageBlockRangeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + PermissionsByCreatedBlockIdAverageCreatedAtAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + PermissionsByCreatedBlockIdAverageCreatedAtDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + PermissionsByCreatedBlockIdAverageCreatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdAverageCreatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdAverageDatetimeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + PermissionsByCreatedBlockIdAverageDatetimeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + PermissionsByCreatedBlockIdAverageIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + PermissionsByCreatedBlockIdAverageIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + PermissionsByCreatedBlockIdAveragePortfoliosAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_PORTFOLIOS_ASC', + PermissionsByCreatedBlockIdAveragePortfoliosDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_PORTFOLIOS_DESC', + PermissionsByCreatedBlockIdAverageTransactionsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTIONS_ASC', + PermissionsByCreatedBlockIdAverageTransactionsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTIONS_DESC', + PermissionsByCreatedBlockIdAverageTransactionGroupsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTION_GROUPS_ASC', + PermissionsByCreatedBlockIdAverageTransactionGroupsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTION_GROUPS_DESC', + PermissionsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdCountAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_COUNT_ASC', + PermissionsByCreatedBlockIdCountDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_COUNT_DESC', + PermissionsByCreatedBlockIdDistinctCountAssetsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSETS_ASC', + PermissionsByCreatedBlockIdDistinctCountAssetsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSETS_DESC', + PermissionsByCreatedBlockIdDistinctCountBlockRangeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PermissionsByCreatedBlockIdDistinctCountBlockRangeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PermissionsByCreatedBlockIdDistinctCountCreatedAtAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + PermissionsByCreatedBlockIdDistinctCountCreatedAtDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + PermissionsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdDistinctCountDatetimeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + PermissionsByCreatedBlockIdDistinctCountDatetimeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + PermissionsByCreatedBlockIdDistinctCountIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + PermissionsByCreatedBlockIdDistinctCountIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + PermissionsByCreatedBlockIdDistinctCountPortfoliosAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_ASC', + PermissionsByCreatedBlockIdDistinctCountPortfoliosDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_DESC', + PermissionsByCreatedBlockIdDistinctCountTransactionsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTIONS_ASC', + PermissionsByCreatedBlockIdDistinctCountTransactionsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTIONS_DESC', + PermissionsByCreatedBlockIdDistinctCountTransactionGroupsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_GROUPS_ASC', + PermissionsByCreatedBlockIdDistinctCountTransactionGroupsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_GROUPS_DESC', + PermissionsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdMaxAssetsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_ASSETS_ASC', + PermissionsByCreatedBlockIdMaxAssetsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_ASSETS_DESC', + PermissionsByCreatedBlockIdMaxBlockRangeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + PermissionsByCreatedBlockIdMaxBlockRangeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + PermissionsByCreatedBlockIdMaxCreatedAtAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + PermissionsByCreatedBlockIdMaxCreatedAtDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + PermissionsByCreatedBlockIdMaxCreatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdMaxCreatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdMaxDatetimeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + PermissionsByCreatedBlockIdMaxDatetimeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + PermissionsByCreatedBlockIdMaxIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + PermissionsByCreatedBlockIdMaxIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + PermissionsByCreatedBlockIdMaxPortfoliosAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_PORTFOLIOS_ASC', + PermissionsByCreatedBlockIdMaxPortfoliosDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_PORTFOLIOS_DESC', + PermissionsByCreatedBlockIdMaxTransactionsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_TRANSACTIONS_ASC', + PermissionsByCreatedBlockIdMaxTransactionsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_TRANSACTIONS_DESC', + PermissionsByCreatedBlockIdMaxTransactionGroupsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_TRANSACTION_GROUPS_ASC', + PermissionsByCreatedBlockIdMaxTransactionGroupsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_TRANSACTION_GROUPS_DESC', + PermissionsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdMinAssetsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_ASSETS_ASC', + PermissionsByCreatedBlockIdMinAssetsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_ASSETS_DESC', + PermissionsByCreatedBlockIdMinBlockRangeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + PermissionsByCreatedBlockIdMinBlockRangeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + PermissionsByCreatedBlockIdMinCreatedAtAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + PermissionsByCreatedBlockIdMinCreatedAtDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + PermissionsByCreatedBlockIdMinCreatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdMinCreatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdMinDatetimeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + PermissionsByCreatedBlockIdMinDatetimeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + PermissionsByCreatedBlockIdMinIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + PermissionsByCreatedBlockIdMinIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + PermissionsByCreatedBlockIdMinPortfoliosAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_PORTFOLIOS_ASC', + PermissionsByCreatedBlockIdMinPortfoliosDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_PORTFOLIOS_DESC', + PermissionsByCreatedBlockIdMinTransactionsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_TRANSACTIONS_ASC', + PermissionsByCreatedBlockIdMinTransactionsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_TRANSACTIONS_DESC', + PermissionsByCreatedBlockIdMinTransactionGroupsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_TRANSACTION_GROUPS_ASC', + PermissionsByCreatedBlockIdMinTransactionGroupsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_TRANSACTION_GROUPS_DESC', + PermissionsByCreatedBlockIdMinUpdatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdMinUpdatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdStddevPopulationAssetsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSETS_ASC', + PermissionsByCreatedBlockIdStddevPopulationAssetsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSETS_DESC', + PermissionsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PermissionsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PermissionsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + PermissionsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + PermissionsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdStddevPopulationDatetimeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + PermissionsByCreatedBlockIdStddevPopulationDatetimeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + PermissionsByCreatedBlockIdStddevPopulationIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + PermissionsByCreatedBlockIdStddevPopulationIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + PermissionsByCreatedBlockIdStddevPopulationPortfoliosAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_ASC', + PermissionsByCreatedBlockIdStddevPopulationPortfoliosDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_DESC', + PermissionsByCreatedBlockIdStddevPopulationTransactionsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTIONS_ASC', + PermissionsByCreatedBlockIdStddevPopulationTransactionsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTIONS_DESC', + PermissionsByCreatedBlockIdStddevPopulationTransactionGroupsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_GROUPS_ASC', + PermissionsByCreatedBlockIdStddevPopulationTransactionGroupsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_GROUPS_DESC', + PermissionsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdStddevSampleAssetsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSETS_ASC', + PermissionsByCreatedBlockIdStddevSampleAssetsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSETS_DESC', + PermissionsByCreatedBlockIdStddevSampleBlockRangeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PermissionsByCreatedBlockIdStddevSampleBlockRangeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PermissionsByCreatedBlockIdStddevSampleCreatedAtAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + PermissionsByCreatedBlockIdStddevSampleCreatedAtDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + PermissionsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdStddevSampleDatetimeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + PermissionsByCreatedBlockIdStddevSampleDatetimeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + PermissionsByCreatedBlockIdStddevSampleIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + PermissionsByCreatedBlockIdStddevSampleIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + PermissionsByCreatedBlockIdStddevSamplePortfoliosAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_ASC', + PermissionsByCreatedBlockIdStddevSamplePortfoliosDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_DESC', + PermissionsByCreatedBlockIdStddevSampleTransactionsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTIONS_ASC', + PermissionsByCreatedBlockIdStddevSampleTransactionsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTIONS_DESC', + PermissionsByCreatedBlockIdStddevSampleTransactionGroupsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_GROUPS_ASC', + PermissionsByCreatedBlockIdStddevSampleTransactionGroupsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_GROUPS_DESC', + PermissionsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdSumAssetsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_ASSETS_ASC', + PermissionsByCreatedBlockIdSumAssetsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_ASSETS_DESC', + PermissionsByCreatedBlockIdSumBlockRangeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + PermissionsByCreatedBlockIdSumBlockRangeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + PermissionsByCreatedBlockIdSumCreatedAtAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + PermissionsByCreatedBlockIdSumCreatedAtDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + PermissionsByCreatedBlockIdSumCreatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdSumCreatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdSumDatetimeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + PermissionsByCreatedBlockIdSumDatetimeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + PermissionsByCreatedBlockIdSumIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + PermissionsByCreatedBlockIdSumIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + PermissionsByCreatedBlockIdSumPortfoliosAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_PORTFOLIOS_ASC', + PermissionsByCreatedBlockIdSumPortfoliosDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_PORTFOLIOS_DESC', + PermissionsByCreatedBlockIdSumTransactionsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_TRANSACTIONS_ASC', + PermissionsByCreatedBlockIdSumTransactionsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_TRANSACTIONS_DESC', + PermissionsByCreatedBlockIdSumTransactionGroupsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_TRANSACTION_GROUPS_ASC', + PermissionsByCreatedBlockIdSumTransactionGroupsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_TRANSACTION_GROUPS_DESC', + PermissionsByCreatedBlockIdSumUpdatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdSumUpdatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdVariancePopulationAssetsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSETS_ASC', + PermissionsByCreatedBlockIdVariancePopulationAssetsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSETS_DESC', + PermissionsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PermissionsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PermissionsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + PermissionsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + PermissionsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdVariancePopulationDatetimeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + PermissionsByCreatedBlockIdVariancePopulationDatetimeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + PermissionsByCreatedBlockIdVariancePopulationIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + PermissionsByCreatedBlockIdVariancePopulationIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + PermissionsByCreatedBlockIdVariancePopulationPortfoliosAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_ASC', + PermissionsByCreatedBlockIdVariancePopulationPortfoliosDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_DESC', + PermissionsByCreatedBlockIdVariancePopulationTransactionsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTIONS_ASC', + PermissionsByCreatedBlockIdVariancePopulationTransactionsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTIONS_DESC', + PermissionsByCreatedBlockIdVariancePopulationTransactionGroupsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_GROUPS_ASC', + PermissionsByCreatedBlockIdVariancePopulationTransactionGroupsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_GROUPS_DESC', + PermissionsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdVarianceSampleAssetsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSETS_ASC', + PermissionsByCreatedBlockIdVarianceSampleAssetsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSETS_DESC', + PermissionsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PermissionsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PermissionsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + PermissionsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + PermissionsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PermissionsByCreatedBlockIdVarianceSampleDatetimeAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + PermissionsByCreatedBlockIdVarianceSampleDatetimeDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + PermissionsByCreatedBlockIdVarianceSampleIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + PermissionsByCreatedBlockIdVarianceSampleIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + PermissionsByCreatedBlockIdVarianceSamplePortfoliosAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_ASC', + PermissionsByCreatedBlockIdVarianceSamplePortfoliosDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_DESC', + PermissionsByCreatedBlockIdVarianceSampleTransactionsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTIONS_ASC', + PermissionsByCreatedBlockIdVarianceSampleTransactionsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTIONS_DESC', + PermissionsByCreatedBlockIdVarianceSampleTransactionGroupsAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_GROUPS_ASC', + PermissionsByCreatedBlockIdVarianceSampleTransactionGroupsDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_GROUPS_DESC', + PermissionsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PermissionsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'PERMISSIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdAverageAssetsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSETS_ASC', + PermissionsByUpdatedBlockIdAverageAssetsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSETS_DESC', + PermissionsByUpdatedBlockIdAverageBlockRangeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + PermissionsByUpdatedBlockIdAverageBlockRangeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + PermissionsByUpdatedBlockIdAverageCreatedAtAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + PermissionsByUpdatedBlockIdAverageCreatedAtDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + PermissionsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdAverageDatetimeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + PermissionsByUpdatedBlockIdAverageDatetimeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + PermissionsByUpdatedBlockIdAverageIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + PermissionsByUpdatedBlockIdAverageIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + PermissionsByUpdatedBlockIdAveragePortfoliosAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PORTFOLIOS_ASC', + PermissionsByUpdatedBlockIdAveragePortfoliosDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PORTFOLIOS_DESC', + PermissionsByUpdatedBlockIdAverageTransactionsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTIONS_ASC', + PermissionsByUpdatedBlockIdAverageTransactionsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTIONS_DESC', + PermissionsByUpdatedBlockIdAverageTransactionGroupsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTION_GROUPS_ASC', + PermissionsByUpdatedBlockIdAverageTransactionGroupsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTION_GROUPS_DESC', + PermissionsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdCountAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + PermissionsByUpdatedBlockIdCountDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + PermissionsByUpdatedBlockIdDistinctCountAssetsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSETS_ASC', + PermissionsByUpdatedBlockIdDistinctCountAssetsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSETS_DESC', + PermissionsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PermissionsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PermissionsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + PermissionsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + PermissionsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdDistinctCountDatetimeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + PermissionsByUpdatedBlockIdDistinctCountDatetimeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + PermissionsByUpdatedBlockIdDistinctCountIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + PermissionsByUpdatedBlockIdDistinctCountIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + PermissionsByUpdatedBlockIdDistinctCountPortfoliosAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_ASC', + PermissionsByUpdatedBlockIdDistinctCountPortfoliosDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PORTFOLIOS_DESC', + PermissionsByUpdatedBlockIdDistinctCountTransactionsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTIONS_ASC', + PermissionsByUpdatedBlockIdDistinctCountTransactionsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTIONS_DESC', + PermissionsByUpdatedBlockIdDistinctCountTransactionGroupsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_GROUPS_ASC', + PermissionsByUpdatedBlockIdDistinctCountTransactionGroupsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_GROUPS_DESC', + PermissionsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdMaxAssetsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_ASSETS_ASC', + PermissionsByUpdatedBlockIdMaxAssetsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_ASSETS_DESC', + PermissionsByUpdatedBlockIdMaxBlockRangeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + PermissionsByUpdatedBlockIdMaxBlockRangeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + PermissionsByUpdatedBlockIdMaxCreatedAtAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + PermissionsByUpdatedBlockIdMaxCreatedAtDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + PermissionsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdMaxDatetimeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + PermissionsByUpdatedBlockIdMaxDatetimeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + PermissionsByUpdatedBlockIdMaxIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + PermissionsByUpdatedBlockIdMaxIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + PermissionsByUpdatedBlockIdMaxPortfoliosAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_PORTFOLIOS_ASC', + PermissionsByUpdatedBlockIdMaxPortfoliosDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_PORTFOLIOS_DESC', + PermissionsByUpdatedBlockIdMaxTransactionsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_TRANSACTIONS_ASC', + PermissionsByUpdatedBlockIdMaxTransactionsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_TRANSACTIONS_DESC', + PermissionsByUpdatedBlockIdMaxTransactionGroupsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_TRANSACTION_GROUPS_ASC', + PermissionsByUpdatedBlockIdMaxTransactionGroupsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_TRANSACTION_GROUPS_DESC', + PermissionsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdMinAssetsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_ASSETS_ASC', + PermissionsByUpdatedBlockIdMinAssetsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_ASSETS_DESC', + PermissionsByUpdatedBlockIdMinBlockRangeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + PermissionsByUpdatedBlockIdMinBlockRangeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + PermissionsByUpdatedBlockIdMinCreatedAtAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + PermissionsByUpdatedBlockIdMinCreatedAtDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + PermissionsByUpdatedBlockIdMinCreatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdMinCreatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdMinDatetimeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + PermissionsByUpdatedBlockIdMinDatetimeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + PermissionsByUpdatedBlockIdMinIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + PermissionsByUpdatedBlockIdMinIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + PermissionsByUpdatedBlockIdMinPortfoliosAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_PORTFOLIOS_ASC', + PermissionsByUpdatedBlockIdMinPortfoliosDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_PORTFOLIOS_DESC', + PermissionsByUpdatedBlockIdMinTransactionsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_TRANSACTIONS_ASC', + PermissionsByUpdatedBlockIdMinTransactionsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_TRANSACTIONS_DESC', + PermissionsByUpdatedBlockIdMinTransactionGroupsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_TRANSACTION_GROUPS_ASC', + PermissionsByUpdatedBlockIdMinTransactionGroupsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_TRANSACTION_GROUPS_DESC', + PermissionsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdStddevPopulationAssetsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSETS_ASC', + PermissionsByUpdatedBlockIdStddevPopulationAssetsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSETS_DESC', + PermissionsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PermissionsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PermissionsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + PermissionsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + PermissionsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdStddevPopulationDatetimeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + PermissionsByUpdatedBlockIdStddevPopulationDatetimeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + PermissionsByUpdatedBlockIdStddevPopulationIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + PermissionsByUpdatedBlockIdStddevPopulationIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + PermissionsByUpdatedBlockIdStddevPopulationPortfoliosAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_ASC', + PermissionsByUpdatedBlockIdStddevPopulationPortfoliosDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PORTFOLIOS_DESC', + PermissionsByUpdatedBlockIdStddevPopulationTransactionsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTIONS_ASC', + PermissionsByUpdatedBlockIdStddevPopulationTransactionsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTIONS_DESC', + PermissionsByUpdatedBlockIdStddevPopulationTransactionGroupsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_GROUPS_ASC', + PermissionsByUpdatedBlockIdStddevPopulationTransactionGroupsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_GROUPS_DESC', + PermissionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdStddevSampleAssetsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSETS_ASC', + PermissionsByUpdatedBlockIdStddevSampleAssetsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSETS_DESC', + PermissionsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PermissionsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PermissionsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + PermissionsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + PermissionsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdStddevSampleDatetimeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + PermissionsByUpdatedBlockIdStddevSampleDatetimeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + PermissionsByUpdatedBlockIdStddevSampleIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + PermissionsByUpdatedBlockIdStddevSampleIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + PermissionsByUpdatedBlockIdStddevSamplePortfoliosAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_ASC', + PermissionsByUpdatedBlockIdStddevSamplePortfoliosDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PORTFOLIOS_DESC', + PermissionsByUpdatedBlockIdStddevSampleTransactionsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTIONS_ASC', + PermissionsByUpdatedBlockIdStddevSampleTransactionsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTIONS_DESC', + PermissionsByUpdatedBlockIdStddevSampleTransactionGroupsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_GROUPS_ASC', + PermissionsByUpdatedBlockIdStddevSampleTransactionGroupsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_GROUPS_DESC', + PermissionsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdSumAssetsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_ASSETS_ASC', + PermissionsByUpdatedBlockIdSumAssetsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_ASSETS_DESC', + PermissionsByUpdatedBlockIdSumBlockRangeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + PermissionsByUpdatedBlockIdSumBlockRangeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + PermissionsByUpdatedBlockIdSumCreatedAtAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + PermissionsByUpdatedBlockIdSumCreatedAtDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + PermissionsByUpdatedBlockIdSumCreatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdSumCreatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdSumDatetimeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + PermissionsByUpdatedBlockIdSumDatetimeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + PermissionsByUpdatedBlockIdSumIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + PermissionsByUpdatedBlockIdSumIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + PermissionsByUpdatedBlockIdSumPortfoliosAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_PORTFOLIOS_ASC', + PermissionsByUpdatedBlockIdSumPortfoliosDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_PORTFOLIOS_DESC', + PermissionsByUpdatedBlockIdSumTransactionsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_TRANSACTIONS_ASC', + PermissionsByUpdatedBlockIdSumTransactionsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_TRANSACTIONS_DESC', + PermissionsByUpdatedBlockIdSumTransactionGroupsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_TRANSACTION_GROUPS_ASC', + PermissionsByUpdatedBlockIdSumTransactionGroupsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_TRANSACTION_GROUPS_DESC', + PermissionsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdVariancePopulationAssetsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSETS_ASC', + PermissionsByUpdatedBlockIdVariancePopulationAssetsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSETS_DESC', + PermissionsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PermissionsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PermissionsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + PermissionsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + PermissionsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdVariancePopulationDatetimeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + PermissionsByUpdatedBlockIdVariancePopulationDatetimeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + PermissionsByUpdatedBlockIdVariancePopulationIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + PermissionsByUpdatedBlockIdVariancePopulationIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + PermissionsByUpdatedBlockIdVariancePopulationPortfoliosAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_ASC', + PermissionsByUpdatedBlockIdVariancePopulationPortfoliosDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PORTFOLIOS_DESC', + PermissionsByUpdatedBlockIdVariancePopulationTransactionsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTIONS_ASC', + PermissionsByUpdatedBlockIdVariancePopulationTransactionsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTIONS_DESC', + PermissionsByUpdatedBlockIdVariancePopulationTransactionGroupsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_GROUPS_ASC', + PermissionsByUpdatedBlockIdVariancePopulationTransactionGroupsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_GROUPS_DESC', + PermissionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdVarianceSampleAssetsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSETS_ASC', + PermissionsByUpdatedBlockIdVarianceSampleAssetsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSETS_DESC', + PermissionsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PermissionsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PermissionsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + PermissionsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + PermissionsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PermissionsByUpdatedBlockIdVarianceSampleDatetimeAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + PermissionsByUpdatedBlockIdVarianceSampleDatetimeDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + PermissionsByUpdatedBlockIdVarianceSampleIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + PermissionsByUpdatedBlockIdVarianceSampleIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + PermissionsByUpdatedBlockIdVarianceSamplePortfoliosAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_ASC', + PermissionsByUpdatedBlockIdVarianceSamplePortfoliosDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PORTFOLIOS_DESC', + PermissionsByUpdatedBlockIdVarianceSampleTransactionsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTIONS_ASC', + PermissionsByUpdatedBlockIdVarianceSampleTransactionsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTIONS_DESC', + PermissionsByUpdatedBlockIdVarianceSampleTransactionGroupsAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_GROUPS_ASC', + PermissionsByUpdatedBlockIdVarianceSampleTransactionGroupsDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_GROUPS_DESC', + PermissionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PermissionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'PERMISSIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdAverageAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdAverageAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdAverageAmountAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + PolyxTransactionsByCreatedBlockIdAverageAmountDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + PolyxTransactionsByCreatedBlockIdAverageBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + PolyxTransactionsByCreatedBlockIdAverageBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + PolyxTransactionsByCreatedBlockIdAverageCallIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CALL_ID_ASC', + PolyxTransactionsByCreatedBlockIdAverageCallIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CALL_ID_DESC', + PolyxTransactionsByCreatedBlockIdAverageCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + PolyxTransactionsByCreatedBlockIdAverageCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + PolyxTransactionsByCreatedBlockIdAverageCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdAverageCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdAverageDatetimeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + PolyxTransactionsByCreatedBlockIdAverageDatetimeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + PolyxTransactionsByCreatedBlockIdAverageEventIdxAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + PolyxTransactionsByCreatedBlockIdAverageEventIdxDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + PolyxTransactionsByCreatedBlockIdAverageEventIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + PolyxTransactionsByCreatedBlockIdAverageEventIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + PolyxTransactionsByCreatedBlockIdAverageExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXTRINSIC_ID_ASC', + PolyxTransactionsByCreatedBlockIdAverageExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXTRINSIC_ID_DESC', + PolyxTransactionsByCreatedBlockIdAverageIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + PolyxTransactionsByCreatedBlockIdAverageIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + PolyxTransactionsByCreatedBlockIdAverageIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + PolyxTransactionsByCreatedBlockIdAverageIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + PolyxTransactionsByCreatedBlockIdAverageMemoAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_MEMO_ASC', + PolyxTransactionsByCreatedBlockIdAverageMemoDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_MEMO_DESC', + PolyxTransactionsByCreatedBlockIdAverageModuleIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_MODULE_ID_ASC', + PolyxTransactionsByCreatedBlockIdAverageModuleIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_MODULE_ID_DESC', + PolyxTransactionsByCreatedBlockIdAverageToAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TO_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdAverageToAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TO_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdAverageToIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TO_ID_ASC', + PolyxTransactionsByCreatedBlockIdAverageToIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TO_ID_DESC', + PolyxTransactionsByCreatedBlockIdAverageTypeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_ASC', + PolyxTransactionsByCreatedBlockIdAverageTypeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_DESC', + PolyxTransactionsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdCountAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_COUNT_ASC', + PolyxTransactionsByCreatedBlockIdCountDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_COUNT_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountAmountAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountAmountDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountCallIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CALL_ID_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountCallIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CALL_ID_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountDatetimeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountDatetimeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountEventIdxAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountEventIdxDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountEventIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountEventIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_ID_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_ID_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountMemoAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMO_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountMemoDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMO_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountModuleIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MODULE_ID_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountModuleIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MODULE_ID_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountToAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountToAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountToIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountToIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountTypeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountTypeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + PolyxTransactionsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdMaxAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdMaxAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdMaxAmountAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + PolyxTransactionsByCreatedBlockIdMaxAmountDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + PolyxTransactionsByCreatedBlockIdMaxBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + PolyxTransactionsByCreatedBlockIdMaxBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + PolyxTransactionsByCreatedBlockIdMaxCallIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CALL_ID_ASC', + PolyxTransactionsByCreatedBlockIdMaxCallIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CALL_ID_DESC', + PolyxTransactionsByCreatedBlockIdMaxCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + PolyxTransactionsByCreatedBlockIdMaxCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + PolyxTransactionsByCreatedBlockIdMaxCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdMaxCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdMaxDatetimeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + PolyxTransactionsByCreatedBlockIdMaxDatetimeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + PolyxTransactionsByCreatedBlockIdMaxEventIdxAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + PolyxTransactionsByCreatedBlockIdMaxEventIdxDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + PolyxTransactionsByCreatedBlockIdMaxEventIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_ASC', + PolyxTransactionsByCreatedBlockIdMaxEventIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_DESC', + PolyxTransactionsByCreatedBlockIdMaxExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EXTRINSIC_ID_ASC', + PolyxTransactionsByCreatedBlockIdMaxExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_EXTRINSIC_ID_DESC', + PolyxTransactionsByCreatedBlockIdMaxIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + PolyxTransactionsByCreatedBlockIdMaxIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + PolyxTransactionsByCreatedBlockIdMaxIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + PolyxTransactionsByCreatedBlockIdMaxIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + PolyxTransactionsByCreatedBlockIdMaxMemoAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_MEMO_ASC', + PolyxTransactionsByCreatedBlockIdMaxMemoDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_MEMO_DESC', + PolyxTransactionsByCreatedBlockIdMaxModuleIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_MODULE_ID_ASC', + PolyxTransactionsByCreatedBlockIdMaxModuleIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_MODULE_ID_DESC', + PolyxTransactionsByCreatedBlockIdMaxToAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_TO_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdMaxToAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_TO_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdMaxToIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_TO_ID_ASC', + PolyxTransactionsByCreatedBlockIdMaxToIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_TO_ID_DESC', + PolyxTransactionsByCreatedBlockIdMaxTypeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_TYPE_ASC', + PolyxTransactionsByCreatedBlockIdMaxTypeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_TYPE_DESC', + PolyxTransactionsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdMinAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdMinAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdMinAmountAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + PolyxTransactionsByCreatedBlockIdMinAmountDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + PolyxTransactionsByCreatedBlockIdMinBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + PolyxTransactionsByCreatedBlockIdMinBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + PolyxTransactionsByCreatedBlockIdMinCallIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CALL_ID_ASC', + PolyxTransactionsByCreatedBlockIdMinCallIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CALL_ID_DESC', + PolyxTransactionsByCreatedBlockIdMinCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + PolyxTransactionsByCreatedBlockIdMinCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + PolyxTransactionsByCreatedBlockIdMinCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdMinCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdMinDatetimeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + PolyxTransactionsByCreatedBlockIdMinDatetimeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + PolyxTransactionsByCreatedBlockIdMinEventIdxAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + PolyxTransactionsByCreatedBlockIdMinEventIdxDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + PolyxTransactionsByCreatedBlockIdMinEventIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_ASC', + PolyxTransactionsByCreatedBlockIdMinEventIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_DESC', + PolyxTransactionsByCreatedBlockIdMinExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EXTRINSIC_ID_ASC', + PolyxTransactionsByCreatedBlockIdMinExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_EXTRINSIC_ID_DESC', + PolyxTransactionsByCreatedBlockIdMinIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + PolyxTransactionsByCreatedBlockIdMinIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + PolyxTransactionsByCreatedBlockIdMinIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + PolyxTransactionsByCreatedBlockIdMinIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + PolyxTransactionsByCreatedBlockIdMinMemoAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_MEMO_ASC', + PolyxTransactionsByCreatedBlockIdMinMemoDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_MEMO_DESC', + PolyxTransactionsByCreatedBlockIdMinModuleIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_MODULE_ID_ASC', + PolyxTransactionsByCreatedBlockIdMinModuleIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_MODULE_ID_DESC', + PolyxTransactionsByCreatedBlockIdMinToAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_TO_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdMinToAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_TO_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdMinToIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_TO_ID_ASC', + PolyxTransactionsByCreatedBlockIdMinToIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_TO_ID_DESC', + PolyxTransactionsByCreatedBlockIdMinTypeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_TYPE_ASC', + PolyxTransactionsByCreatedBlockIdMinTypeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_TYPE_DESC', + PolyxTransactionsByCreatedBlockIdMinUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdMinUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationAmountAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationAmountDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationCallIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CALL_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationCallIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CALL_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationDatetimeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationDatetimeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationEventIdxAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationEventIdxDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationEventIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationEventIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationMemoAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMO_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationMemoDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMO_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationModuleIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MODULE_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationModuleIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MODULE_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationToAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationToAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationToIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationToIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationTypeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationTypeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + PolyxTransactionsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleAmountAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleAmountDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleCallIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CALL_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleCallIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CALL_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleDatetimeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleDatetimeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleEventIdxAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleEventIdxDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleEventIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleEventIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleMemoAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleMemoDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleModuleIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MODULE_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleModuleIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MODULE_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleToAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleToAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleToIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleToIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleTypeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleTypeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + PolyxTransactionsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdSumAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdSumAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdSumAmountAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + PolyxTransactionsByCreatedBlockIdSumAmountDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + PolyxTransactionsByCreatedBlockIdSumBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + PolyxTransactionsByCreatedBlockIdSumBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + PolyxTransactionsByCreatedBlockIdSumCallIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CALL_ID_ASC', + PolyxTransactionsByCreatedBlockIdSumCallIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CALL_ID_DESC', + PolyxTransactionsByCreatedBlockIdSumCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + PolyxTransactionsByCreatedBlockIdSumCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + PolyxTransactionsByCreatedBlockIdSumCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdSumCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdSumDatetimeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + PolyxTransactionsByCreatedBlockIdSumDatetimeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + PolyxTransactionsByCreatedBlockIdSumEventIdxAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + PolyxTransactionsByCreatedBlockIdSumEventIdxDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + PolyxTransactionsByCreatedBlockIdSumEventIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_ASC', + PolyxTransactionsByCreatedBlockIdSumEventIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_DESC', + PolyxTransactionsByCreatedBlockIdSumExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EXTRINSIC_ID_ASC', + PolyxTransactionsByCreatedBlockIdSumExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_EXTRINSIC_ID_DESC', + PolyxTransactionsByCreatedBlockIdSumIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + PolyxTransactionsByCreatedBlockIdSumIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + PolyxTransactionsByCreatedBlockIdSumIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + PolyxTransactionsByCreatedBlockIdSumIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + PolyxTransactionsByCreatedBlockIdSumMemoAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_MEMO_ASC', + PolyxTransactionsByCreatedBlockIdSumMemoDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_MEMO_DESC', + PolyxTransactionsByCreatedBlockIdSumModuleIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_MODULE_ID_ASC', + PolyxTransactionsByCreatedBlockIdSumModuleIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_MODULE_ID_DESC', + PolyxTransactionsByCreatedBlockIdSumToAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_TO_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdSumToAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_TO_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdSumToIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_TO_ID_ASC', + PolyxTransactionsByCreatedBlockIdSumToIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_TO_ID_DESC', + PolyxTransactionsByCreatedBlockIdSumTypeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_TYPE_ASC', + PolyxTransactionsByCreatedBlockIdSumTypeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_TYPE_DESC', + PolyxTransactionsByCreatedBlockIdSumUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdSumUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationAmountAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationAmountDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationCallIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CALL_ID_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationCallIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CALL_ID_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationDatetimeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationDatetimeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationEventIdxAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationEventIdxDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationEventIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationEventIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_ID_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_ID_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationMemoAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationMemoDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationModuleIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MODULE_ID_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationModuleIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MODULE_ID_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationToAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationToAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationToIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationToIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationTypeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationTypeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + PolyxTransactionsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleAmountAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleAmountDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleCallIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CALL_ID_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleCallIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CALL_ID_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleDatetimeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleDatetimeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleEventIdxAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleEventIdxDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleEventIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleEventIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_ID_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_ID_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleMemoAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleMemoDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleModuleIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MODULE_ID_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleModuleIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MODULE_ID_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleToAddressAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ADDRESS_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleToAddressDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ADDRESS_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleToIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleToIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleTypeAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleTypeDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + PolyxTransactionsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdAverageAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdAverageAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdAverageAmountAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + PolyxTransactionsByUpdatedBlockIdAverageAmountDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + PolyxTransactionsByUpdatedBlockIdAverageBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + PolyxTransactionsByUpdatedBlockIdAverageBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + PolyxTransactionsByUpdatedBlockIdAverageCallIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CALL_ID_ASC', + PolyxTransactionsByUpdatedBlockIdAverageCallIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CALL_ID_DESC', + PolyxTransactionsByUpdatedBlockIdAverageCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + PolyxTransactionsByUpdatedBlockIdAverageCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + PolyxTransactionsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdAverageDatetimeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + PolyxTransactionsByUpdatedBlockIdAverageDatetimeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + PolyxTransactionsByUpdatedBlockIdAverageEventIdxAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + PolyxTransactionsByUpdatedBlockIdAverageEventIdxDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + PolyxTransactionsByUpdatedBlockIdAverageEventIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + PolyxTransactionsByUpdatedBlockIdAverageEventIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + PolyxTransactionsByUpdatedBlockIdAverageExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXTRINSIC_ID_ASC', + PolyxTransactionsByUpdatedBlockIdAverageExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXTRINSIC_ID_DESC', + PolyxTransactionsByUpdatedBlockIdAverageIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + PolyxTransactionsByUpdatedBlockIdAverageIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + PolyxTransactionsByUpdatedBlockIdAverageIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdAverageIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdAverageMemoAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_MEMO_ASC', + PolyxTransactionsByUpdatedBlockIdAverageMemoDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_MEMO_DESC', + PolyxTransactionsByUpdatedBlockIdAverageModuleIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_MODULE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdAverageModuleIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_MODULE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdAverageToAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdAverageToAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdAverageToIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ID_ASC', + PolyxTransactionsByUpdatedBlockIdAverageToIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ID_DESC', + PolyxTransactionsByUpdatedBlockIdAverageTypeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_ASC', + PolyxTransactionsByUpdatedBlockIdAverageTypeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_DESC', + PolyxTransactionsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdCountAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + PolyxTransactionsByUpdatedBlockIdCountDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountAmountAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountAmountDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountCallIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CALL_ID_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountCallIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CALL_ID_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountDatetimeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountDatetimeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountEventIdxAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountEventIdxDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountEventIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountEventIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_ID_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXTRINSIC_ID_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountMemoAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMO_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountMemoDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMO_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountModuleIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MODULE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountModuleIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MODULE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountToAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountToAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountToIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountToIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountTypeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountTypeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + PolyxTransactionsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMaxAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdMaxAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdMaxAmountAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + PolyxTransactionsByUpdatedBlockIdMaxAmountDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + PolyxTransactionsByUpdatedBlockIdMaxBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + PolyxTransactionsByUpdatedBlockIdMaxBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + PolyxTransactionsByUpdatedBlockIdMaxCallIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CALL_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMaxCallIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CALL_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMaxCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + PolyxTransactionsByUpdatedBlockIdMaxCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + PolyxTransactionsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMaxDatetimeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + PolyxTransactionsByUpdatedBlockIdMaxDatetimeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + PolyxTransactionsByUpdatedBlockIdMaxEventIdxAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + PolyxTransactionsByUpdatedBlockIdMaxEventIdxDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + PolyxTransactionsByUpdatedBlockIdMaxEventIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMaxEventIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMaxExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EXTRINSIC_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMaxExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_EXTRINSIC_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMaxIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMaxIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMaxIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMaxIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMaxMemoAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_MEMO_ASC', + PolyxTransactionsByUpdatedBlockIdMaxMemoDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_MEMO_DESC', + PolyxTransactionsByUpdatedBlockIdMaxModuleIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_MODULE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMaxModuleIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_MODULE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMaxToAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_TO_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdMaxToAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_TO_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdMaxToIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_TO_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMaxToIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_TO_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMaxTypeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_TYPE_ASC', + PolyxTransactionsByUpdatedBlockIdMaxTypeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_TYPE_DESC', + PolyxTransactionsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMinAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdMinAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdMinAmountAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + PolyxTransactionsByUpdatedBlockIdMinAmountDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + PolyxTransactionsByUpdatedBlockIdMinBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + PolyxTransactionsByUpdatedBlockIdMinBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + PolyxTransactionsByUpdatedBlockIdMinCallIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CALL_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMinCallIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CALL_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMinCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + PolyxTransactionsByUpdatedBlockIdMinCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + PolyxTransactionsByUpdatedBlockIdMinCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMinCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMinDatetimeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + PolyxTransactionsByUpdatedBlockIdMinDatetimeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + PolyxTransactionsByUpdatedBlockIdMinEventIdxAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + PolyxTransactionsByUpdatedBlockIdMinEventIdxDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + PolyxTransactionsByUpdatedBlockIdMinEventIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMinEventIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMinExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EXTRINSIC_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMinExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_EXTRINSIC_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMinIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMinIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMinIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMinIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMinMemoAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_MEMO_ASC', + PolyxTransactionsByUpdatedBlockIdMinMemoDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_MEMO_DESC', + PolyxTransactionsByUpdatedBlockIdMinModuleIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_MODULE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMinModuleIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_MODULE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMinToAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_TO_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdMinToAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_TO_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdMinToIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_TO_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMinToIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_TO_ID_DESC', + PolyxTransactionsByUpdatedBlockIdMinTypeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_TYPE_ASC', + PolyxTransactionsByUpdatedBlockIdMinTypeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_TYPE_DESC', + PolyxTransactionsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationAmountAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationAmountDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationCallIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CALL_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationCallIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CALL_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationDatetimeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationDatetimeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationEventIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationEventIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXTRINSIC_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationMemoAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMO_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationMemoDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMO_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationModuleIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MODULE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationModuleIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MODULE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationToAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationToAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationToIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationToIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationTypeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationTypeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleAmountAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleAmountDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleCallIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CALL_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleCallIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CALL_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleDatetimeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleDatetimeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleEventIdxAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleEventIdxDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleEventIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleEventIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXTRINSIC_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleMemoAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleMemoDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleModuleIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MODULE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleModuleIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MODULE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleToAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleToAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleToIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleToIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleTypeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleTypeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + PolyxTransactionsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdSumAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdSumAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdSumAmountAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + PolyxTransactionsByUpdatedBlockIdSumAmountDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + PolyxTransactionsByUpdatedBlockIdSumBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + PolyxTransactionsByUpdatedBlockIdSumBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + PolyxTransactionsByUpdatedBlockIdSumCallIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CALL_ID_ASC', + PolyxTransactionsByUpdatedBlockIdSumCallIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CALL_ID_DESC', + PolyxTransactionsByUpdatedBlockIdSumCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + PolyxTransactionsByUpdatedBlockIdSumCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + PolyxTransactionsByUpdatedBlockIdSumCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdSumCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdSumDatetimeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + PolyxTransactionsByUpdatedBlockIdSumDatetimeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + PolyxTransactionsByUpdatedBlockIdSumEventIdxAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + PolyxTransactionsByUpdatedBlockIdSumEventIdxDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + PolyxTransactionsByUpdatedBlockIdSumEventIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_ASC', + PolyxTransactionsByUpdatedBlockIdSumEventIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_DESC', + PolyxTransactionsByUpdatedBlockIdSumExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EXTRINSIC_ID_ASC', + PolyxTransactionsByUpdatedBlockIdSumExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_EXTRINSIC_ID_DESC', + PolyxTransactionsByUpdatedBlockIdSumIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + PolyxTransactionsByUpdatedBlockIdSumIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + PolyxTransactionsByUpdatedBlockIdSumIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + PolyxTransactionsByUpdatedBlockIdSumIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + PolyxTransactionsByUpdatedBlockIdSumMemoAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_MEMO_ASC', + PolyxTransactionsByUpdatedBlockIdSumMemoDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_MEMO_DESC', + PolyxTransactionsByUpdatedBlockIdSumModuleIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_MODULE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdSumModuleIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_MODULE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdSumToAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_TO_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdSumToAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_TO_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdSumToIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_TO_ID_ASC', + PolyxTransactionsByUpdatedBlockIdSumToIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_TO_ID_DESC', + PolyxTransactionsByUpdatedBlockIdSumTypeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_TYPE_ASC', + PolyxTransactionsByUpdatedBlockIdSumTypeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_TYPE_DESC', + PolyxTransactionsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationAmountAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationAmountDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationCallIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CALL_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationCallIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CALL_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationDatetimeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationDatetimeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationEventIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationEventIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXTRINSIC_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationMemoAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationMemoDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationModuleIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MODULE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationModuleIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MODULE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationToAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationToAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationToIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationToIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationTypeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationTypeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleAmountAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleAmountDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleCallIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CALL_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleCallIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CALL_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleDatetimeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleDatetimeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleEventIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleEventIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleExtrinsicIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleExtrinsicIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXTRINSIC_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleMemoAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleMemoDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleModuleIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MODULE_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleModuleIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MODULE_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleToAddressAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ADDRESS_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleToAddressDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ADDRESS_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleToIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleToIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleTypeAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleTypeDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdAverageBlockRangeAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + PortfoliosByCreatedBlockIdAverageBlockRangeDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + PortfoliosByCreatedBlockIdAverageCreatedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + PortfoliosByCreatedBlockIdAverageCreatedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + PortfoliosByCreatedBlockIdAverageCreatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdAverageCreatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdAverageCustodianIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_CUSTODIAN_ID_ASC', + PortfoliosByCreatedBlockIdAverageCustodianIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_CUSTODIAN_ID_DESC', + PortfoliosByCreatedBlockIdAverageDeletedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_DELETED_AT_ASC', + PortfoliosByCreatedBlockIdAverageDeletedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_DELETED_AT_DESC', + PortfoliosByCreatedBlockIdAverageEventIdxAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + PortfoliosByCreatedBlockIdAverageEventIdxDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + PortfoliosByCreatedBlockIdAverageIdentityIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + PortfoliosByCreatedBlockIdAverageIdentityIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + PortfoliosByCreatedBlockIdAverageIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + PortfoliosByCreatedBlockIdAverageIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + PortfoliosByCreatedBlockIdAverageNameAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_NAME_ASC', + PortfoliosByCreatedBlockIdAverageNameDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_NAME_DESC', + PortfoliosByCreatedBlockIdAverageNumberAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_NUMBER_ASC', + PortfoliosByCreatedBlockIdAverageNumberDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_NUMBER_DESC', + PortfoliosByCreatedBlockIdAverageUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdAverageUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdCountAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_COUNT_ASC', + PortfoliosByCreatedBlockIdCountDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_COUNT_DESC', + PortfoliosByCreatedBlockIdDistinctCountBlockRangeAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PortfoliosByCreatedBlockIdDistinctCountBlockRangeDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PortfoliosByCreatedBlockIdDistinctCountCreatedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + PortfoliosByCreatedBlockIdDistinctCountCreatedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + PortfoliosByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdDistinctCountCustodianIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CUSTODIAN_ID_ASC', + PortfoliosByCreatedBlockIdDistinctCountCustodianIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CUSTODIAN_ID_DESC', + PortfoliosByCreatedBlockIdDistinctCountDeletedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DELETED_AT_ASC', + PortfoliosByCreatedBlockIdDistinctCountDeletedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DELETED_AT_DESC', + PortfoliosByCreatedBlockIdDistinctCountEventIdxAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + PortfoliosByCreatedBlockIdDistinctCountEventIdxDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + PortfoliosByCreatedBlockIdDistinctCountIdentityIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + PortfoliosByCreatedBlockIdDistinctCountIdentityIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + PortfoliosByCreatedBlockIdDistinctCountIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + PortfoliosByCreatedBlockIdDistinctCountIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + PortfoliosByCreatedBlockIdDistinctCountNameAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC', + PortfoliosByCreatedBlockIdDistinctCountNameDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC', + PortfoliosByCreatedBlockIdDistinctCountNumberAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NUMBER_ASC', + PortfoliosByCreatedBlockIdDistinctCountNumberDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NUMBER_DESC', + PortfoliosByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdMaxBlockRangeAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + PortfoliosByCreatedBlockIdMaxBlockRangeDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + PortfoliosByCreatedBlockIdMaxCreatedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + PortfoliosByCreatedBlockIdMaxCreatedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + PortfoliosByCreatedBlockIdMaxCreatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdMaxCreatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdMaxCustodianIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_CUSTODIAN_ID_ASC', + PortfoliosByCreatedBlockIdMaxCustodianIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_CUSTODIAN_ID_DESC', + PortfoliosByCreatedBlockIdMaxDeletedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_DELETED_AT_ASC', + PortfoliosByCreatedBlockIdMaxDeletedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_DELETED_AT_DESC', + PortfoliosByCreatedBlockIdMaxEventIdxAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + PortfoliosByCreatedBlockIdMaxEventIdxDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + PortfoliosByCreatedBlockIdMaxIdentityIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + PortfoliosByCreatedBlockIdMaxIdentityIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + PortfoliosByCreatedBlockIdMaxIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + PortfoliosByCreatedBlockIdMaxIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + PortfoliosByCreatedBlockIdMaxNameAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_NAME_ASC', + PortfoliosByCreatedBlockIdMaxNameDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_NAME_DESC', + PortfoliosByCreatedBlockIdMaxNumberAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_NUMBER_ASC', + PortfoliosByCreatedBlockIdMaxNumberDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_NUMBER_DESC', + PortfoliosByCreatedBlockIdMaxUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdMaxUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdMinBlockRangeAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + PortfoliosByCreatedBlockIdMinBlockRangeDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + PortfoliosByCreatedBlockIdMinCreatedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + PortfoliosByCreatedBlockIdMinCreatedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + PortfoliosByCreatedBlockIdMinCreatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdMinCreatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdMinCustodianIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_CUSTODIAN_ID_ASC', + PortfoliosByCreatedBlockIdMinCustodianIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_CUSTODIAN_ID_DESC', + PortfoliosByCreatedBlockIdMinDeletedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_DELETED_AT_ASC', + PortfoliosByCreatedBlockIdMinDeletedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_DELETED_AT_DESC', + PortfoliosByCreatedBlockIdMinEventIdxAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + PortfoliosByCreatedBlockIdMinEventIdxDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + PortfoliosByCreatedBlockIdMinIdentityIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + PortfoliosByCreatedBlockIdMinIdentityIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + PortfoliosByCreatedBlockIdMinIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + PortfoliosByCreatedBlockIdMinIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + PortfoliosByCreatedBlockIdMinNameAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_NAME_ASC', + PortfoliosByCreatedBlockIdMinNameDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_NAME_DESC', + PortfoliosByCreatedBlockIdMinNumberAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_NUMBER_ASC', + PortfoliosByCreatedBlockIdMinNumberDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_NUMBER_DESC', + PortfoliosByCreatedBlockIdMinUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdMinUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdStddevPopulationBlockRangeAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PortfoliosByCreatedBlockIdStddevPopulationBlockRangeDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PortfoliosByCreatedBlockIdStddevPopulationCreatedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + PortfoliosByCreatedBlockIdStddevPopulationCreatedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + PortfoliosByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdStddevPopulationCustodianIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CUSTODIAN_ID_ASC', + PortfoliosByCreatedBlockIdStddevPopulationCustodianIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CUSTODIAN_ID_DESC', + PortfoliosByCreatedBlockIdStddevPopulationDeletedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DELETED_AT_ASC', + PortfoliosByCreatedBlockIdStddevPopulationDeletedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DELETED_AT_DESC', + PortfoliosByCreatedBlockIdStddevPopulationEventIdxAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + PortfoliosByCreatedBlockIdStddevPopulationEventIdxDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + PortfoliosByCreatedBlockIdStddevPopulationIdentityIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + PortfoliosByCreatedBlockIdStddevPopulationIdentityIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + PortfoliosByCreatedBlockIdStddevPopulationIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + PortfoliosByCreatedBlockIdStddevPopulationIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + PortfoliosByCreatedBlockIdStddevPopulationNameAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC', + PortfoliosByCreatedBlockIdStddevPopulationNameDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC', + PortfoliosByCreatedBlockIdStddevPopulationNumberAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NUMBER_ASC', + PortfoliosByCreatedBlockIdStddevPopulationNumberDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NUMBER_DESC', + PortfoliosByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdStddevSampleBlockRangeAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PortfoliosByCreatedBlockIdStddevSampleBlockRangeDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PortfoliosByCreatedBlockIdStddevSampleCreatedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + PortfoliosByCreatedBlockIdStddevSampleCreatedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + PortfoliosByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdStddevSampleCustodianIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CUSTODIAN_ID_ASC', + PortfoliosByCreatedBlockIdStddevSampleCustodianIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CUSTODIAN_ID_DESC', + PortfoliosByCreatedBlockIdStddevSampleDeletedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DELETED_AT_ASC', + PortfoliosByCreatedBlockIdStddevSampleDeletedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DELETED_AT_DESC', + PortfoliosByCreatedBlockIdStddevSampleEventIdxAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + PortfoliosByCreatedBlockIdStddevSampleEventIdxDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + PortfoliosByCreatedBlockIdStddevSampleIdentityIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + PortfoliosByCreatedBlockIdStddevSampleIdentityIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + PortfoliosByCreatedBlockIdStddevSampleIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + PortfoliosByCreatedBlockIdStddevSampleIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + PortfoliosByCreatedBlockIdStddevSampleNameAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC', + PortfoliosByCreatedBlockIdStddevSampleNameDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC', + PortfoliosByCreatedBlockIdStddevSampleNumberAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NUMBER_ASC', + PortfoliosByCreatedBlockIdStddevSampleNumberDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NUMBER_DESC', + PortfoliosByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdSumBlockRangeAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + PortfoliosByCreatedBlockIdSumBlockRangeDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + PortfoliosByCreatedBlockIdSumCreatedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + PortfoliosByCreatedBlockIdSumCreatedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + PortfoliosByCreatedBlockIdSumCreatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdSumCreatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdSumCustodianIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_CUSTODIAN_ID_ASC', + PortfoliosByCreatedBlockIdSumCustodianIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_CUSTODIAN_ID_DESC', + PortfoliosByCreatedBlockIdSumDeletedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_DELETED_AT_ASC', + PortfoliosByCreatedBlockIdSumDeletedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_DELETED_AT_DESC', + PortfoliosByCreatedBlockIdSumEventIdxAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + PortfoliosByCreatedBlockIdSumEventIdxDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + PortfoliosByCreatedBlockIdSumIdentityIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + PortfoliosByCreatedBlockIdSumIdentityIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + PortfoliosByCreatedBlockIdSumIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + PortfoliosByCreatedBlockIdSumIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + PortfoliosByCreatedBlockIdSumNameAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_NAME_ASC', + PortfoliosByCreatedBlockIdSumNameDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_NAME_DESC', + PortfoliosByCreatedBlockIdSumNumberAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_NUMBER_ASC', + PortfoliosByCreatedBlockIdSumNumberDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_NUMBER_DESC', + PortfoliosByCreatedBlockIdSumUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdSumUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdVariancePopulationBlockRangeAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PortfoliosByCreatedBlockIdVariancePopulationBlockRangeDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PortfoliosByCreatedBlockIdVariancePopulationCreatedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + PortfoliosByCreatedBlockIdVariancePopulationCreatedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + PortfoliosByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdVariancePopulationCustodianIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CUSTODIAN_ID_ASC', + PortfoliosByCreatedBlockIdVariancePopulationCustodianIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CUSTODIAN_ID_DESC', + PortfoliosByCreatedBlockIdVariancePopulationDeletedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DELETED_AT_ASC', + PortfoliosByCreatedBlockIdVariancePopulationDeletedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DELETED_AT_DESC', + PortfoliosByCreatedBlockIdVariancePopulationEventIdxAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + PortfoliosByCreatedBlockIdVariancePopulationEventIdxDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + PortfoliosByCreatedBlockIdVariancePopulationIdentityIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + PortfoliosByCreatedBlockIdVariancePopulationIdentityIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + PortfoliosByCreatedBlockIdVariancePopulationIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + PortfoliosByCreatedBlockIdVariancePopulationIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + PortfoliosByCreatedBlockIdVariancePopulationNameAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC', + PortfoliosByCreatedBlockIdVariancePopulationNameDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC', + PortfoliosByCreatedBlockIdVariancePopulationNumberAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NUMBER_ASC', + PortfoliosByCreatedBlockIdVariancePopulationNumberDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NUMBER_DESC', + PortfoliosByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdVarianceSampleBlockRangeAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PortfoliosByCreatedBlockIdVarianceSampleBlockRangeDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PortfoliosByCreatedBlockIdVarianceSampleCreatedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + PortfoliosByCreatedBlockIdVarianceSampleCreatedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + PortfoliosByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfoliosByCreatedBlockIdVarianceSampleCustodianIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTODIAN_ID_ASC', + PortfoliosByCreatedBlockIdVarianceSampleCustodianIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTODIAN_ID_DESC', + PortfoliosByCreatedBlockIdVarianceSampleDeletedAtAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DELETED_AT_ASC', + PortfoliosByCreatedBlockIdVarianceSampleDeletedAtDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DELETED_AT_DESC', + PortfoliosByCreatedBlockIdVarianceSampleEventIdxAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + PortfoliosByCreatedBlockIdVarianceSampleEventIdxDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + PortfoliosByCreatedBlockIdVarianceSampleIdentityIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + PortfoliosByCreatedBlockIdVarianceSampleIdentityIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + PortfoliosByCreatedBlockIdVarianceSampleIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + PortfoliosByCreatedBlockIdVarianceSampleIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + PortfoliosByCreatedBlockIdVarianceSampleNameAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC', + PortfoliosByCreatedBlockIdVarianceSampleNameDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC', + PortfoliosByCreatedBlockIdVarianceSampleNumberAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NUMBER_ASC', + PortfoliosByCreatedBlockIdVarianceSampleNumberDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NUMBER_DESC', + PortfoliosByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfoliosByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdAverageBlockRangeAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + PortfoliosByUpdatedBlockIdAverageBlockRangeDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + PortfoliosByUpdatedBlockIdAverageCreatedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + PortfoliosByUpdatedBlockIdAverageCreatedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + PortfoliosByUpdatedBlockIdAverageCreatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdAverageCreatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdAverageCustodianIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_CUSTODIAN_ID_ASC', + PortfoliosByUpdatedBlockIdAverageCustodianIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_CUSTODIAN_ID_DESC', + PortfoliosByUpdatedBlockIdAverageDeletedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_DELETED_AT_ASC', + PortfoliosByUpdatedBlockIdAverageDeletedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_DELETED_AT_DESC', + PortfoliosByUpdatedBlockIdAverageEventIdxAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + PortfoliosByUpdatedBlockIdAverageEventIdxDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + PortfoliosByUpdatedBlockIdAverageIdentityIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + PortfoliosByUpdatedBlockIdAverageIdentityIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + PortfoliosByUpdatedBlockIdAverageIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + PortfoliosByUpdatedBlockIdAverageIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + PortfoliosByUpdatedBlockIdAverageNameAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_ASC', + PortfoliosByUpdatedBlockIdAverageNameDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_DESC', + PortfoliosByUpdatedBlockIdAverageNumberAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_NUMBER_ASC', + PortfoliosByUpdatedBlockIdAverageNumberDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_NUMBER_DESC', + PortfoliosByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdCountAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + PortfoliosByUpdatedBlockIdCountDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + PortfoliosByUpdatedBlockIdDistinctCountBlockRangeAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PortfoliosByUpdatedBlockIdDistinctCountBlockRangeDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PortfoliosByUpdatedBlockIdDistinctCountCreatedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + PortfoliosByUpdatedBlockIdDistinctCountCreatedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + PortfoliosByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdDistinctCountCustodianIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CUSTODIAN_ID_ASC', + PortfoliosByUpdatedBlockIdDistinctCountCustodianIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CUSTODIAN_ID_DESC', + PortfoliosByUpdatedBlockIdDistinctCountDeletedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DELETED_AT_ASC', + PortfoliosByUpdatedBlockIdDistinctCountDeletedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DELETED_AT_DESC', + PortfoliosByUpdatedBlockIdDistinctCountEventIdxAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + PortfoliosByUpdatedBlockIdDistinctCountEventIdxDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + PortfoliosByUpdatedBlockIdDistinctCountIdentityIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + PortfoliosByUpdatedBlockIdDistinctCountIdentityIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + PortfoliosByUpdatedBlockIdDistinctCountIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + PortfoliosByUpdatedBlockIdDistinctCountIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + PortfoliosByUpdatedBlockIdDistinctCountNameAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC', + PortfoliosByUpdatedBlockIdDistinctCountNameDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC', + PortfoliosByUpdatedBlockIdDistinctCountNumberAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NUMBER_ASC', + PortfoliosByUpdatedBlockIdDistinctCountNumberDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NUMBER_DESC', + PortfoliosByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdMaxBlockRangeAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + PortfoliosByUpdatedBlockIdMaxBlockRangeDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + PortfoliosByUpdatedBlockIdMaxCreatedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + PortfoliosByUpdatedBlockIdMaxCreatedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + PortfoliosByUpdatedBlockIdMaxCreatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdMaxCreatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdMaxCustodianIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_CUSTODIAN_ID_ASC', + PortfoliosByUpdatedBlockIdMaxCustodianIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_CUSTODIAN_ID_DESC', + PortfoliosByUpdatedBlockIdMaxDeletedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_DELETED_AT_ASC', + PortfoliosByUpdatedBlockIdMaxDeletedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_DELETED_AT_DESC', + PortfoliosByUpdatedBlockIdMaxEventIdxAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + PortfoliosByUpdatedBlockIdMaxEventIdxDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + PortfoliosByUpdatedBlockIdMaxIdentityIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + PortfoliosByUpdatedBlockIdMaxIdentityIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + PortfoliosByUpdatedBlockIdMaxIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + PortfoliosByUpdatedBlockIdMaxIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + PortfoliosByUpdatedBlockIdMaxNameAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_NAME_ASC', + PortfoliosByUpdatedBlockIdMaxNameDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_NAME_DESC', + PortfoliosByUpdatedBlockIdMaxNumberAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_NUMBER_ASC', + PortfoliosByUpdatedBlockIdMaxNumberDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_NUMBER_DESC', + PortfoliosByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdMinBlockRangeAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + PortfoliosByUpdatedBlockIdMinBlockRangeDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + PortfoliosByUpdatedBlockIdMinCreatedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + PortfoliosByUpdatedBlockIdMinCreatedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + PortfoliosByUpdatedBlockIdMinCreatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdMinCreatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdMinCustodianIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_CUSTODIAN_ID_ASC', + PortfoliosByUpdatedBlockIdMinCustodianIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_CUSTODIAN_ID_DESC', + PortfoliosByUpdatedBlockIdMinDeletedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_DELETED_AT_ASC', + PortfoliosByUpdatedBlockIdMinDeletedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_DELETED_AT_DESC', + PortfoliosByUpdatedBlockIdMinEventIdxAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + PortfoliosByUpdatedBlockIdMinEventIdxDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + PortfoliosByUpdatedBlockIdMinIdentityIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + PortfoliosByUpdatedBlockIdMinIdentityIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + PortfoliosByUpdatedBlockIdMinIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + PortfoliosByUpdatedBlockIdMinIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + PortfoliosByUpdatedBlockIdMinNameAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_NAME_ASC', + PortfoliosByUpdatedBlockIdMinNameDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_NAME_DESC', + PortfoliosByUpdatedBlockIdMinNumberAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_NUMBER_ASC', + PortfoliosByUpdatedBlockIdMinNumberDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_NUMBER_DESC', + PortfoliosByUpdatedBlockIdMinUpdatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdMinUpdatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PortfoliosByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PortfoliosByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + PortfoliosByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + PortfoliosByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdStddevPopulationCustodianIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CUSTODIAN_ID_ASC', + PortfoliosByUpdatedBlockIdStddevPopulationCustodianIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CUSTODIAN_ID_DESC', + PortfoliosByUpdatedBlockIdStddevPopulationDeletedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DELETED_AT_ASC', + PortfoliosByUpdatedBlockIdStddevPopulationDeletedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DELETED_AT_DESC', + PortfoliosByUpdatedBlockIdStddevPopulationEventIdxAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + PortfoliosByUpdatedBlockIdStddevPopulationEventIdxDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + PortfoliosByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + PortfoliosByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + PortfoliosByUpdatedBlockIdStddevPopulationIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + PortfoliosByUpdatedBlockIdStddevPopulationIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + PortfoliosByUpdatedBlockIdStddevPopulationNameAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC', + PortfoliosByUpdatedBlockIdStddevPopulationNameDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC', + PortfoliosByUpdatedBlockIdStddevPopulationNumberAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NUMBER_ASC', + PortfoliosByUpdatedBlockIdStddevPopulationNumberDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NUMBER_DESC', + PortfoliosByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdStddevSampleBlockRangeAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PortfoliosByUpdatedBlockIdStddevSampleBlockRangeDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PortfoliosByUpdatedBlockIdStddevSampleCreatedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + PortfoliosByUpdatedBlockIdStddevSampleCreatedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + PortfoliosByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdStddevSampleCustodianIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CUSTODIAN_ID_ASC', + PortfoliosByUpdatedBlockIdStddevSampleCustodianIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CUSTODIAN_ID_DESC', + PortfoliosByUpdatedBlockIdStddevSampleDeletedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DELETED_AT_ASC', + PortfoliosByUpdatedBlockIdStddevSampleDeletedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DELETED_AT_DESC', + PortfoliosByUpdatedBlockIdStddevSampleEventIdxAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + PortfoliosByUpdatedBlockIdStddevSampleEventIdxDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + PortfoliosByUpdatedBlockIdStddevSampleIdentityIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + PortfoliosByUpdatedBlockIdStddevSampleIdentityIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + PortfoliosByUpdatedBlockIdStddevSampleIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + PortfoliosByUpdatedBlockIdStddevSampleIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + PortfoliosByUpdatedBlockIdStddevSampleNameAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC', + PortfoliosByUpdatedBlockIdStddevSampleNameDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC', + PortfoliosByUpdatedBlockIdStddevSampleNumberAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NUMBER_ASC', + PortfoliosByUpdatedBlockIdStddevSampleNumberDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NUMBER_DESC', + PortfoliosByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdSumBlockRangeAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + PortfoliosByUpdatedBlockIdSumBlockRangeDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + PortfoliosByUpdatedBlockIdSumCreatedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + PortfoliosByUpdatedBlockIdSumCreatedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + PortfoliosByUpdatedBlockIdSumCreatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdSumCreatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdSumCustodianIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_CUSTODIAN_ID_ASC', + PortfoliosByUpdatedBlockIdSumCustodianIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_CUSTODIAN_ID_DESC', + PortfoliosByUpdatedBlockIdSumDeletedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_DELETED_AT_ASC', + PortfoliosByUpdatedBlockIdSumDeletedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_DELETED_AT_DESC', + PortfoliosByUpdatedBlockIdSumEventIdxAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + PortfoliosByUpdatedBlockIdSumEventIdxDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + PortfoliosByUpdatedBlockIdSumIdentityIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + PortfoliosByUpdatedBlockIdSumIdentityIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + PortfoliosByUpdatedBlockIdSumIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + PortfoliosByUpdatedBlockIdSumIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + PortfoliosByUpdatedBlockIdSumNameAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_NAME_ASC', + PortfoliosByUpdatedBlockIdSumNameDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_NAME_DESC', + PortfoliosByUpdatedBlockIdSumNumberAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_NUMBER_ASC', + PortfoliosByUpdatedBlockIdSumNumberDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_NUMBER_DESC', + PortfoliosByUpdatedBlockIdSumUpdatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdSumUpdatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PortfoliosByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PortfoliosByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + PortfoliosByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + PortfoliosByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdVariancePopulationCustodianIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CUSTODIAN_ID_ASC', + PortfoliosByUpdatedBlockIdVariancePopulationCustodianIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CUSTODIAN_ID_DESC', + PortfoliosByUpdatedBlockIdVariancePopulationDeletedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DELETED_AT_ASC', + PortfoliosByUpdatedBlockIdVariancePopulationDeletedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DELETED_AT_DESC', + PortfoliosByUpdatedBlockIdVariancePopulationEventIdxAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + PortfoliosByUpdatedBlockIdVariancePopulationEventIdxDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + PortfoliosByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + PortfoliosByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + PortfoliosByUpdatedBlockIdVariancePopulationIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + PortfoliosByUpdatedBlockIdVariancePopulationIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + PortfoliosByUpdatedBlockIdVariancePopulationNameAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC', + PortfoliosByUpdatedBlockIdVariancePopulationNameDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC', + PortfoliosByUpdatedBlockIdVariancePopulationNumberAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NUMBER_ASC', + PortfoliosByUpdatedBlockIdVariancePopulationNumberDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NUMBER_DESC', + PortfoliosByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PortfoliosByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PortfoliosByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + PortfoliosByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + PortfoliosByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfoliosByUpdatedBlockIdVarianceSampleCustodianIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTODIAN_ID_ASC', + PortfoliosByUpdatedBlockIdVarianceSampleCustodianIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTODIAN_ID_DESC', + PortfoliosByUpdatedBlockIdVarianceSampleDeletedAtAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DELETED_AT_ASC', + PortfoliosByUpdatedBlockIdVarianceSampleDeletedAtDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DELETED_AT_DESC', + PortfoliosByUpdatedBlockIdVarianceSampleEventIdxAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + PortfoliosByUpdatedBlockIdVarianceSampleEventIdxDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + PortfoliosByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + PortfoliosByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + PortfoliosByUpdatedBlockIdVarianceSampleIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + PortfoliosByUpdatedBlockIdVarianceSampleIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + PortfoliosByUpdatedBlockIdVarianceSampleNameAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC', + PortfoliosByUpdatedBlockIdVarianceSampleNameDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC', + PortfoliosByUpdatedBlockIdVarianceSampleNumberAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NUMBER_ASC', + PortfoliosByUpdatedBlockIdVarianceSampleNumberDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NUMBER_DESC', + PortfoliosByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfoliosByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'PORTFOLIOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdAverageAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ADDRESS_ASC', + PortfolioMovementsByCreatedBlockIdAverageAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ADDRESS_DESC', + PortfolioMovementsByCreatedBlockIdAverageAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + PortfolioMovementsByCreatedBlockIdAverageAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + PortfolioMovementsByCreatedBlockIdAverageAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + PortfolioMovementsByCreatedBlockIdAverageAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + PortfolioMovementsByCreatedBlockIdAverageBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + PortfolioMovementsByCreatedBlockIdAverageBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + PortfolioMovementsByCreatedBlockIdAverageCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + PortfolioMovementsByCreatedBlockIdAverageCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + PortfolioMovementsByCreatedBlockIdAverageCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdAverageCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdAverageFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_ID_ASC', + PortfolioMovementsByCreatedBlockIdAverageFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_FROM_ID_DESC', + PortfolioMovementsByCreatedBlockIdAverageIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + PortfolioMovementsByCreatedBlockIdAverageIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + PortfolioMovementsByCreatedBlockIdAverageMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_MEMO_ASC', + PortfolioMovementsByCreatedBlockIdAverageMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_MEMO_DESC', + PortfolioMovementsByCreatedBlockIdAverageNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_NFT_IDS_ASC', + PortfolioMovementsByCreatedBlockIdAverageNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_NFT_IDS_DESC', + PortfolioMovementsByCreatedBlockIdAverageToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TO_ID_ASC', + PortfolioMovementsByCreatedBlockIdAverageToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TO_ID_DESC', + PortfolioMovementsByCreatedBlockIdAverageTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_ASC', + PortfolioMovementsByCreatedBlockIdAverageTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_DESC', + PortfolioMovementsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdCountAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + PortfolioMovementsByCreatedBlockIdCountDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMO_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MEMO_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + PortfolioMovementsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdMaxAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_ADDRESS_ASC', + PortfolioMovementsByCreatedBlockIdMaxAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_ADDRESS_DESC', + PortfolioMovementsByCreatedBlockIdMaxAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + PortfolioMovementsByCreatedBlockIdMaxAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + PortfolioMovementsByCreatedBlockIdMaxAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + PortfolioMovementsByCreatedBlockIdMaxAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + PortfolioMovementsByCreatedBlockIdMaxBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + PortfolioMovementsByCreatedBlockIdMaxBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + PortfolioMovementsByCreatedBlockIdMaxCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + PortfolioMovementsByCreatedBlockIdMaxCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + PortfolioMovementsByCreatedBlockIdMaxCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdMaxCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdMaxFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_FROM_ID_ASC', + PortfolioMovementsByCreatedBlockIdMaxFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_FROM_ID_DESC', + PortfolioMovementsByCreatedBlockIdMaxIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + PortfolioMovementsByCreatedBlockIdMaxIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + PortfolioMovementsByCreatedBlockIdMaxMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_MEMO_ASC', + PortfolioMovementsByCreatedBlockIdMaxMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_MEMO_DESC', + PortfolioMovementsByCreatedBlockIdMaxNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_NFT_IDS_ASC', + PortfolioMovementsByCreatedBlockIdMaxNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_NFT_IDS_DESC', + PortfolioMovementsByCreatedBlockIdMaxToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_TO_ID_ASC', + PortfolioMovementsByCreatedBlockIdMaxToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_TO_ID_DESC', + PortfolioMovementsByCreatedBlockIdMaxTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_TYPE_ASC', + PortfolioMovementsByCreatedBlockIdMaxTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_TYPE_DESC', + PortfolioMovementsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdMinAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_ADDRESS_ASC', + PortfolioMovementsByCreatedBlockIdMinAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_ADDRESS_DESC', + PortfolioMovementsByCreatedBlockIdMinAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + PortfolioMovementsByCreatedBlockIdMinAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + PortfolioMovementsByCreatedBlockIdMinAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + PortfolioMovementsByCreatedBlockIdMinAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + PortfolioMovementsByCreatedBlockIdMinBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + PortfolioMovementsByCreatedBlockIdMinBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + PortfolioMovementsByCreatedBlockIdMinCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + PortfolioMovementsByCreatedBlockIdMinCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + PortfolioMovementsByCreatedBlockIdMinCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdMinCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdMinFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_FROM_ID_ASC', + PortfolioMovementsByCreatedBlockIdMinFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_FROM_ID_DESC', + PortfolioMovementsByCreatedBlockIdMinIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + PortfolioMovementsByCreatedBlockIdMinIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + PortfolioMovementsByCreatedBlockIdMinMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_MEMO_ASC', + PortfolioMovementsByCreatedBlockIdMinMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_MEMO_DESC', + PortfolioMovementsByCreatedBlockIdMinNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_NFT_IDS_ASC', + PortfolioMovementsByCreatedBlockIdMinNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_NFT_IDS_DESC', + PortfolioMovementsByCreatedBlockIdMinToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_TO_ID_ASC', + PortfolioMovementsByCreatedBlockIdMinToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_TO_ID_DESC', + PortfolioMovementsByCreatedBlockIdMinTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_TYPE_ASC', + PortfolioMovementsByCreatedBlockIdMinTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_TYPE_DESC', + PortfolioMovementsByCreatedBlockIdMinUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdMinUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMO_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MEMO_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + PortfolioMovementsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + PortfolioMovementsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdSumAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_ADDRESS_ASC', + PortfolioMovementsByCreatedBlockIdSumAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_ADDRESS_DESC', + PortfolioMovementsByCreatedBlockIdSumAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + PortfolioMovementsByCreatedBlockIdSumAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + PortfolioMovementsByCreatedBlockIdSumAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + PortfolioMovementsByCreatedBlockIdSumAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + PortfolioMovementsByCreatedBlockIdSumBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + PortfolioMovementsByCreatedBlockIdSumBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + PortfolioMovementsByCreatedBlockIdSumCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + PortfolioMovementsByCreatedBlockIdSumCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + PortfolioMovementsByCreatedBlockIdSumCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdSumCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdSumFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_FROM_ID_ASC', + PortfolioMovementsByCreatedBlockIdSumFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_FROM_ID_DESC', + PortfolioMovementsByCreatedBlockIdSumIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + PortfolioMovementsByCreatedBlockIdSumIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + PortfolioMovementsByCreatedBlockIdSumMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_MEMO_ASC', + PortfolioMovementsByCreatedBlockIdSumMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_MEMO_DESC', + PortfolioMovementsByCreatedBlockIdSumNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_NFT_IDS_ASC', + PortfolioMovementsByCreatedBlockIdSumNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_NFT_IDS_DESC', + PortfolioMovementsByCreatedBlockIdSumToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_TO_ID_ASC', + PortfolioMovementsByCreatedBlockIdSumToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_TO_ID_DESC', + PortfolioMovementsByCreatedBlockIdSumTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_TYPE_ASC', + PortfolioMovementsByCreatedBlockIdSumTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_TYPE_DESC', + PortfolioMovementsByCreatedBlockIdSumUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdSumUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + PortfolioMovementsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + PortfolioMovementsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdAverageAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDRESS_ASC', + PortfolioMovementsByUpdatedBlockIdAverageAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ADDRESS_DESC', + PortfolioMovementsByUpdatedBlockIdAverageAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + PortfolioMovementsByUpdatedBlockIdAverageAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + PortfolioMovementsByUpdatedBlockIdAverageAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + PortfolioMovementsByUpdatedBlockIdAverageAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + PortfolioMovementsByUpdatedBlockIdAverageBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + PortfolioMovementsByUpdatedBlockIdAverageBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + PortfolioMovementsByUpdatedBlockIdAverageCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + PortfolioMovementsByUpdatedBlockIdAverageCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + PortfolioMovementsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdAverageFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_ID_ASC', + PortfolioMovementsByUpdatedBlockIdAverageFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_FROM_ID_DESC', + PortfolioMovementsByUpdatedBlockIdAverageIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + PortfolioMovementsByUpdatedBlockIdAverageIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + PortfolioMovementsByUpdatedBlockIdAverageMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_MEMO_ASC', + PortfolioMovementsByUpdatedBlockIdAverageMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_MEMO_DESC', + PortfolioMovementsByUpdatedBlockIdAverageNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_NFT_IDS_ASC', + PortfolioMovementsByUpdatedBlockIdAverageNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_NFT_IDS_DESC', + PortfolioMovementsByUpdatedBlockIdAverageToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ID_ASC', + PortfolioMovementsByUpdatedBlockIdAverageToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TO_ID_DESC', + PortfolioMovementsByUpdatedBlockIdAverageTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_ASC', + PortfolioMovementsByUpdatedBlockIdAverageTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_DESC', + PortfolioMovementsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdCountAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + PortfolioMovementsByUpdatedBlockIdCountDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ADDRESS_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_FROM_ID_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMO_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MEMO_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NFT_IDS_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TO_ID_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + PortfolioMovementsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMaxAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_ADDRESS_ASC', + PortfolioMovementsByUpdatedBlockIdMaxAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_ADDRESS_DESC', + PortfolioMovementsByUpdatedBlockIdMaxAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + PortfolioMovementsByUpdatedBlockIdMaxAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + PortfolioMovementsByUpdatedBlockIdMaxAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMaxAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMaxBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + PortfolioMovementsByUpdatedBlockIdMaxBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + PortfolioMovementsByUpdatedBlockIdMaxCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + PortfolioMovementsByUpdatedBlockIdMaxCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + PortfolioMovementsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMaxFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_FROM_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMaxFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_FROM_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMaxIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMaxIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMaxMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_MEMO_ASC', + PortfolioMovementsByUpdatedBlockIdMaxMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_MEMO_DESC', + PortfolioMovementsByUpdatedBlockIdMaxNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_NFT_IDS_ASC', + PortfolioMovementsByUpdatedBlockIdMaxNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_NFT_IDS_DESC', + PortfolioMovementsByUpdatedBlockIdMaxToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_TO_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMaxToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_TO_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMaxTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_TYPE_ASC', + PortfolioMovementsByUpdatedBlockIdMaxTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_TYPE_DESC', + PortfolioMovementsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMinAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_ADDRESS_ASC', + PortfolioMovementsByUpdatedBlockIdMinAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_ADDRESS_DESC', + PortfolioMovementsByUpdatedBlockIdMinAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + PortfolioMovementsByUpdatedBlockIdMinAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + PortfolioMovementsByUpdatedBlockIdMinAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMinAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMinBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + PortfolioMovementsByUpdatedBlockIdMinBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + PortfolioMovementsByUpdatedBlockIdMinCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + PortfolioMovementsByUpdatedBlockIdMinCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + PortfolioMovementsByUpdatedBlockIdMinCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMinCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMinFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_FROM_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMinFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_FROM_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMinIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMinIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMinMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_MEMO_ASC', + PortfolioMovementsByUpdatedBlockIdMinMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_MEMO_DESC', + PortfolioMovementsByUpdatedBlockIdMinNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_NFT_IDS_ASC', + PortfolioMovementsByUpdatedBlockIdMinNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_NFT_IDS_DESC', + PortfolioMovementsByUpdatedBlockIdMinToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_TO_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMinToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_TO_ID_DESC', + PortfolioMovementsByUpdatedBlockIdMinTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_TYPE_ASC', + PortfolioMovementsByUpdatedBlockIdMinTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_TYPE_DESC', + PortfolioMovementsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ADDRESS_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_FROM_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMO_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MEMO_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NFT_IDS_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TO_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ADDRESS_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_FROM_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MEMO_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TO_ID_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + PortfolioMovementsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdSumAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_ADDRESS_ASC', + PortfolioMovementsByUpdatedBlockIdSumAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_ADDRESS_DESC', + PortfolioMovementsByUpdatedBlockIdSumAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + PortfolioMovementsByUpdatedBlockIdSumAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + PortfolioMovementsByUpdatedBlockIdSumAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + PortfolioMovementsByUpdatedBlockIdSumAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + PortfolioMovementsByUpdatedBlockIdSumBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + PortfolioMovementsByUpdatedBlockIdSumBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + PortfolioMovementsByUpdatedBlockIdSumCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + PortfolioMovementsByUpdatedBlockIdSumCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + PortfolioMovementsByUpdatedBlockIdSumCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdSumCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdSumFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_FROM_ID_ASC', + PortfolioMovementsByUpdatedBlockIdSumFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_FROM_ID_DESC', + PortfolioMovementsByUpdatedBlockIdSumIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + PortfolioMovementsByUpdatedBlockIdSumIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + PortfolioMovementsByUpdatedBlockIdSumMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_MEMO_ASC', + PortfolioMovementsByUpdatedBlockIdSumMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_MEMO_DESC', + PortfolioMovementsByUpdatedBlockIdSumNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_NFT_IDS_ASC', + PortfolioMovementsByUpdatedBlockIdSumNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_NFT_IDS_DESC', + PortfolioMovementsByUpdatedBlockIdSumToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_TO_ID_ASC', + PortfolioMovementsByUpdatedBlockIdSumToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_TO_ID_DESC', + PortfolioMovementsByUpdatedBlockIdSumTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_TYPE_ASC', + PortfolioMovementsByUpdatedBlockIdSumTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_TYPE_DESC', + PortfolioMovementsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ADDRESS_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_FROM_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MEMO_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TO_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MEMO_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TO_ID_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ProposalsByCreatedBlockIdAverageBalanceAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_BALANCE_ASC', + ProposalsByCreatedBlockIdAverageBalanceDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_BALANCE_DESC', + ProposalsByCreatedBlockIdAverageBlockRangeAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ProposalsByCreatedBlockIdAverageBlockRangeDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ProposalsByCreatedBlockIdAverageCreatedAtAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ProposalsByCreatedBlockIdAverageCreatedAtDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ProposalsByCreatedBlockIdAverageCreatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdAverageCreatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdAverageDescriptionAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_DESCRIPTION_ASC', + ProposalsByCreatedBlockIdAverageDescriptionDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_DESCRIPTION_DESC', + ProposalsByCreatedBlockIdAverageIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ProposalsByCreatedBlockIdAverageIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ProposalsByCreatedBlockIdAverageOwnerIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_OWNER_ID_ASC', + ProposalsByCreatedBlockIdAverageOwnerIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_OWNER_ID_DESC', + ProposalsByCreatedBlockIdAverageProposerAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_PROPOSER_ASC', + ProposalsByCreatedBlockIdAverageProposerDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_PROPOSER_DESC', + ProposalsByCreatedBlockIdAverageSnapshottedAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_SNAPSHOTTED_ASC', + ProposalsByCreatedBlockIdAverageSnapshottedDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_SNAPSHOTTED_DESC', + ProposalsByCreatedBlockIdAverageStateAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_STATE_ASC', + ProposalsByCreatedBlockIdAverageStateDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_STATE_DESC', + ProposalsByCreatedBlockIdAverageTotalAyeWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_AYE_WEIGHT_ASC', + ProposalsByCreatedBlockIdAverageTotalAyeWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_AYE_WEIGHT_DESC', + ProposalsByCreatedBlockIdAverageTotalNayWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_NAY_WEIGHT_ASC', + ProposalsByCreatedBlockIdAverageTotalNayWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_TOTAL_NAY_WEIGHT_DESC', + ProposalsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdAverageUrlAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_URL_ASC', + ProposalsByCreatedBlockIdAverageUrlDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_AVERAGE_URL_DESC', + ProposalsByCreatedBlockIdCountAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_COUNT_ASC', + ProposalsByCreatedBlockIdCountDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_COUNT_DESC', + ProposalsByCreatedBlockIdDistinctCountBalanceAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BALANCE_ASC', + ProposalsByCreatedBlockIdDistinctCountBalanceDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BALANCE_DESC', + ProposalsByCreatedBlockIdDistinctCountBlockRangeAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ProposalsByCreatedBlockIdDistinctCountBlockRangeDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ProposalsByCreatedBlockIdDistinctCountCreatedAtAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ProposalsByCreatedBlockIdDistinctCountCreatedAtDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ProposalsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdDistinctCountDescriptionAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DESCRIPTION_ASC', + ProposalsByCreatedBlockIdDistinctCountDescriptionDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DESCRIPTION_DESC', + ProposalsByCreatedBlockIdDistinctCountIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ProposalsByCreatedBlockIdDistinctCountIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ProposalsByCreatedBlockIdDistinctCountOwnerIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_ASC', + ProposalsByCreatedBlockIdDistinctCountOwnerIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_DESC', + ProposalsByCreatedBlockIdDistinctCountProposerAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROPOSER_ASC', + ProposalsByCreatedBlockIdDistinctCountProposerDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROPOSER_DESC', + ProposalsByCreatedBlockIdDistinctCountSnapshottedAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SNAPSHOTTED_ASC', + ProposalsByCreatedBlockIdDistinctCountSnapshottedDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SNAPSHOTTED_DESC', + ProposalsByCreatedBlockIdDistinctCountStateAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATE_ASC', + ProposalsByCreatedBlockIdDistinctCountStateDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATE_DESC', + ProposalsByCreatedBlockIdDistinctCountTotalAyeWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_AYE_WEIGHT_ASC', + ProposalsByCreatedBlockIdDistinctCountTotalAyeWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_AYE_WEIGHT_DESC', + ProposalsByCreatedBlockIdDistinctCountTotalNayWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_NAY_WEIGHT_ASC', + ProposalsByCreatedBlockIdDistinctCountTotalNayWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_NAY_WEIGHT_DESC', + ProposalsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdDistinctCountUrlAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_URL_ASC', + ProposalsByCreatedBlockIdDistinctCountUrlDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_URL_DESC', + ProposalsByCreatedBlockIdMaxBalanceAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_BALANCE_ASC', + ProposalsByCreatedBlockIdMaxBalanceDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_BALANCE_DESC', + ProposalsByCreatedBlockIdMaxBlockRangeAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ProposalsByCreatedBlockIdMaxBlockRangeDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ProposalsByCreatedBlockIdMaxCreatedAtAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ProposalsByCreatedBlockIdMaxCreatedAtDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ProposalsByCreatedBlockIdMaxCreatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdMaxCreatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdMaxDescriptionAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_DESCRIPTION_ASC', + ProposalsByCreatedBlockIdMaxDescriptionDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_DESCRIPTION_DESC', + ProposalsByCreatedBlockIdMaxIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ProposalsByCreatedBlockIdMaxIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ProposalsByCreatedBlockIdMaxOwnerIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_OWNER_ID_ASC', + ProposalsByCreatedBlockIdMaxOwnerIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_OWNER_ID_DESC', + ProposalsByCreatedBlockIdMaxProposerAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_PROPOSER_ASC', + ProposalsByCreatedBlockIdMaxProposerDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_PROPOSER_DESC', + ProposalsByCreatedBlockIdMaxSnapshottedAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_SNAPSHOTTED_ASC', + ProposalsByCreatedBlockIdMaxSnapshottedDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_SNAPSHOTTED_DESC', + ProposalsByCreatedBlockIdMaxStateAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_STATE_ASC', + ProposalsByCreatedBlockIdMaxStateDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_STATE_DESC', + ProposalsByCreatedBlockIdMaxTotalAyeWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_TOTAL_AYE_WEIGHT_ASC', + ProposalsByCreatedBlockIdMaxTotalAyeWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_TOTAL_AYE_WEIGHT_DESC', + ProposalsByCreatedBlockIdMaxTotalNayWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_TOTAL_NAY_WEIGHT_ASC', + ProposalsByCreatedBlockIdMaxTotalNayWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_TOTAL_NAY_WEIGHT_DESC', + ProposalsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdMaxUrlAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_URL_ASC', + ProposalsByCreatedBlockIdMaxUrlDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MAX_URL_DESC', + ProposalsByCreatedBlockIdMinBalanceAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_BALANCE_ASC', + ProposalsByCreatedBlockIdMinBalanceDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_BALANCE_DESC', + ProposalsByCreatedBlockIdMinBlockRangeAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ProposalsByCreatedBlockIdMinBlockRangeDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ProposalsByCreatedBlockIdMinCreatedAtAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ProposalsByCreatedBlockIdMinCreatedAtDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ProposalsByCreatedBlockIdMinCreatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdMinCreatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdMinDescriptionAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_DESCRIPTION_ASC', + ProposalsByCreatedBlockIdMinDescriptionDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_DESCRIPTION_DESC', + ProposalsByCreatedBlockIdMinIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ProposalsByCreatedBlockIdMinIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ProposalsByCreatedBlockIdMinOwnerIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_OWNER_ID_ASC', + ProposalsByCreatedBlockIdMinOwnerIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_OWNER_ID_DESC', + ProposalsByCreatedBlockIdMinProposerAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_PROPOSER_ASC', + ProposalsByCreatedBlockIdMinProposerDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_PROPOSER_DESC', + ProposalsByCreatedBlockIdMinSnapshottedAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_SNAPSHOTTED_ASC', + ProposalsByCreatedBlockIdMinSnapshottedDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_SNAPSHOTTED_DESC', + ProposalsByCreatedBlockIdMinStateAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_STATE_ASC', + ProposalsByCreatedBlockIdMinStateDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_STATE_DESC', + ProposalsByCreatedBlockIdMinTotalAyeWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_TOTAL_AYE_WEIGHT_ASC', + ProposalsByCreatedBlockIdMinTotalAyeWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_TOTAL_AYE_WEIGHT_DESC', + ProposalsByCreatedBlockIdMinTotalNayWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_TOTAL_NAY_WEIGHT_ASC', + ProposalsByCreatedBlockIdMinTotalNayWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_TOTAL_NAY_WEIGHT_DESC', + ProposalsByCreatedBlockIdMinUpdatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdMinUpdatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdMinUrlAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_URL_ASC', + ProposalsByCreatedBlockIdMinUrlDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_MIN_URL_DESC', + ProposalsByCreatedBlockIdStddevPopulationBalanceAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BALANCE_ASC', + ProposalsByCreatedBlockIdStddevPopulationBalanceDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BALANCE_DESC', + ProposalsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ProposalsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ProposalsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ProposalsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ProposalsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdStddevPopulationDescriptionAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DESCRIPTION_ASC', + ProposalsByCreatedBlockIdStddevPopulationDescriptionDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DESCRIPTION_DESC', + ProposalsByCreatedBlockIdStddevPopulationIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ProposalsByCreatedBlockIdStddevPopulationIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ProposalsByCreatedBlockIdStddevPopulationOwnerIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_ASC', + ProposalsByCreatedBlockIdStddevPopulationOwnerIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_DESC', + ProposalsByCreatedBlockIdStddevPopulationProposerAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROPOSER_ASC', + ProposalsByCreatedBlockIdStddevPopulationProposerDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROPOSER_DESC', + ProposalsByCreatedBlockIdStddevPopulationSnapshottedAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SNAPSHOTTED_ASC', + ProposalsByCreatedBlockIdStddevPopulationSnapshottedDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SNAPSHOTTED_DESC', + ProposalsByCreatedBlockIdStddevPopulationStateAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATE_ASC', + ProposalsByCreatedBlockIdStddevPopulationStateDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATE_DESC', + ProposalsByCreatedBlockIdStddevPopulationTotalAyeWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_AYE_WEIGHT_ASC', + ProposalsByCreatedBlockIdStddevPopulationTotalAyeWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_AYE_WEIGHT_DESC', + ProposalsByCreatedBlockIdStddevPopulationTotalNayWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_NAY_WEIGHT_ASC', + ProposalsByCreatedBlockIdStddevPopulationTotalNayWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_NAY_WEIGHT_DESC', + ProposalsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdStddevPopulationUrlAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_URL_ASC', + ProposalsByCreatedBlockIdStddevPopulationUrlDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_URL_DESC', + ProposalsByCreatedBlockIdStddevSampleBalanceAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BALANCE_ASC', + ProposalsByCreatedBlockIdStddevSampleBalanceDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BALANCE_DESC', + ProposalsByCreatedBlockIdStddevSampleBlockRangeAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ProposalsByCreatedBlockIdStddevSampleBlockRangeDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ProposalsByCreatedBlockIdStddevSampleCreatedAtAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ProposalsByCreatedBlockIdStddevSampleCreatedAtDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ProposalsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdStddevSampleDescriptionAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DESCRIPTION_ASC', + ProposalsByCreatedBlockIdStddevSampleDescriptionDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DESCRIPTION_DESC', + ProposalsByCreatedBlockIdStddevSampleIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ProposalsByCreatedBlockIdStddevSampleIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ProposalsByCreatedBlockIdStddevSampleOwnerIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_ASC', + ProposalsByCreatedBlockIdStddevSampleOwnerIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_DESC', + ProposalsByCreatedBlockIdStddevSampleProposerAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSER_ASC', + ProposalsByCreatedBlockIdStddevSampleProposerDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSER_DESC', + ProposalsByCreatedBlockIdStddevSampleSnapshottedAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SNAPSHOTTED_ASC', + ProposalsByCreatedBlockIdStddevSampleSnapshottedDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SNAPSHOTTED_DESC', + ProposalsByCreatedBlockIdStddevSampleStateAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATE_ASC', + ProposalsByCreatedBlockIdStddevSampleStateDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATE_DESC', + ProposalsByCreatedBlockIdStddevSampleTotalAyeWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_AYE_WEIGHT_ASC', + ProposalsByCreatedBlockIdStddevSampleTotalAyeWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_AYE_WEIGHT_DESC', + ProposalsByCreatedBlockIdStddevSampleTotalNayWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_NAY_WEIGHT_ASC', + ProposalsByCreatedBlockIdStddevSampleTotalNayWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_NAY_WEIGHT_DESC', + ProposalsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdStddevSampleUrlAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_URL_ASC', + ProposalsByCreatedBlockIdStddevSampleUrlDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_URL_DESC', + ProposalsByCreatedBlockIdSumBalanceAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_BALANCE_ASC', + ProposalsByCreatedBlockIdSumBalanceDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_BALANCE_DESC', + ProposalsByCreatedBlockIdSumBlockRangeAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ProposalsByCreatedBlockIdSumBlockRangeDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ProposalsByCreatedBlockIdSumCreatedAtAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ProposalsByCreatedBlockIdSumCreatedAtDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ProposalsByCreatedBlockIdSumCreatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdSumCreatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdSumDescriptionAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_DESCRIPTION_ASC', + ProposalsByCreatedBlockIdSumDescriptionDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_DESCRIPTION_DESC', + ProposalsByCreatedBlockIdSumIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ProposalsByCreatedBlockIdSumIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ProposalsByCreatedBlockIdSumOwnerIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_OWNER_ID_ASC', + ProposalsByCreatedBlockIdSumOwnerIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_OWNER_ID_DESC', + ProposalsByCreatedBlockIdSumProposerAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_PROPOSER_ASC', + ProposalsByCreatedBlockIdSumProposerDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_PROPOSER_DESC', + ProposalsByCreatedBlockIdSumSnapshottedAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_SNAPSHOTTED_ASC', + ProposalsByCreatedBlockIdSumSnapshottedDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_SNAPSHOTTED_DESC', + ProposalsByCreatedBlockIdSumStateAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_STATE_ASC', + ProposalsByCreatedBlockIdSumStateDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_STATE_DESC', + ProposalsByCreatedBlockIdSumTotalAyeWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_TOTAL_AYE_WEIGHT_ASC', + ProposalsByCreatedBlockIdSumTotalAyeWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_TOTAL_AYE_WEIGHT_DESC', + ProposalsByCreatedBlockIdSumTotalNayWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_TOTAL_NAY_WEIGHT_ASC', + ProposalsByCreatedBlockIdSumTotalNayWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_TOTAL_NAY_WEIGHT_DESC', + ProposalsByCreatedBlockIdSumUpdatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdSumUpdatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdSumUrlAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_URL_ASC', + ProposalsByCreatedBlockIdSumUrlDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_SUM_URL_DESC', + ProposalsByCreatedBlockIdVariancePopulationBalanceAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BALANCE_ASC', + ProposalsByCreatedBlockIdVariancePopulationBalanceDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BALANCE_DESC', + ProposalsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ProposalsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ProposalsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ProposalsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ProposalsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdVariancePopulationDescriptionAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DESCRIPTION_ASC', + ProposalsByCreatedBlockIdVariancePopulationDescriptionDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DESCRIPTION_DESC', + ProposalsByCreatedBlockIdVariancePopulationIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ProposalsByCreatedBlockIdVariancePopulationIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ProposalsByCreatedBlockIdVariancePopulationOwnerIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_ASC', + ProposalsByCreatedBlockIdVariancePopulationOwnerIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_DESC', + ProposalsByCreatedBlockIdVariancePopulationProposerAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSER_ASC', + ProposalsByCreatedBlockIdVariancePopulationProposerDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSER_DESC', + ProposalsByCreatedBlockIdVariancePopulationSnapshottedAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SNAPSHOTTED_ASC', + ProposalsByCreatedBlockIdVariancePopulationSnapshottedDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SNAPSHOTTED_DESC', + ProposalsByCreatedBlockIdVariancePopulationStateAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATE_ASC', + ProposalsByCreatedBlockIdVariancePopulationStateDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATE_DESC', + ProposalsByCreatedBlockIdVariancePopulationTotalAyeWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_AYE_WEIGHT_ASC', + ProposalsByCreatedBlockIdVariancePopulationTotalAyeWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_AYE_WEIGHT_DESC', + ProposalsByCreatedBlockIdVariancePopulationTotalNayWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_NAY_WEIGHT_ASC', + ProposalsByCreatedBlockIdVariancePopulationTotalNayWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_NAY_WEIGHT_DESC', + ProposalsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdVariancePopulationUrlAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_URL_ASC', + ProposalsByCreatedBlockIdVariancePopulationUrlDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_URL_DESC', + ProposalsByCreatedBlockIdVarianceSampleBalanceAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BALANCE_ASC', + ProposalsByCreatedBlockIdVarianceSampleBalanceDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BALANCE_DESC', + ProposalsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ProposalsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ProposalsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ProposalsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ProposalsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdVarianceSampleDescriptionAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DESCRIPTION_ASC', + ProposalsByCreatedBlockIdVarianceSampleDescriptionDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DESCRIPTION_DESC', + ProposalsByCreatedBlockIdVarianceSampleIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ProposalsByCreatedBlockIdVarianceSampleIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ProposalsByCreatedBlockIdVarianceSampleOwnerIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_ASC', + ProposalsByCreatedBlockIdVarianceSampleOwnerIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_DESC', + ProposalsByCreatedBlockIdVarianceSampleProposerAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSER_ASC', + ProposalsByCreatedBlockIdVarianceSampleProposerDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSER_DESC', + ProposalsByCreatedBlockIdVarianceSampleSnapshottedAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SNAPSHOTTED_ASC', + ProposalsByCreatedBlockIdVarianceSampleSnapshottedDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SNAPSHOTTED_DESC', + ProposalsByCreatedBlockIdVarianceSampleStateAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATE_ASC', + ProposalsByCreatedBlockIdVarianceSampleStateDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATE_DESC', + ProposalsByCreatedBlockIdVarianceSampleTotalAyeWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_AYE_WEIGHT_ASC', + ProposalsByCreatedBlockIdVarianceSampleTotalAyeWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_AYE_WEIGHT_DESC', + ProposalsByCreatedBlockIdVarianceSampleTotalNayWeightAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_NAY_WEIGHT_ASC', + ProposalsByCreatedBlockIdVarianceSampleTotalNayWeightDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_NAY_WEIGHT_DESC', + ProposalsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ProposalsByCreatedBlockIdVarianceSampleUrlAsc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_URL_ASC', + ProposalsByCreatedBlockIdVarianceSampleUrlDesc = 'PROPOSALS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_URL_DESC', + ProposalsByUpdatedBlockIdAverageBalanceAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_BALANCE_ASC', + ProposalsByUpdatedBlockIdAverageBalanceDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_BALANCE_DESC', + ProposalsByUpdatedBlockIdAverageBlockRangeAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ProposalsByUpdatedBlockIdAverageBlockRangeDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ProposalsByUpdatedBlockIdAverageCreatedAtAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ProposalsByUpdatedBlockIdAverageCreatedAtDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ProposalsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdAverageDescriptionAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_DESCRIPTION_ASC', + ProposalsByUpdatedBlockIdAverageDescriptionDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_DESCRIPTION_DESC', + ProposalsByUpdatedBlockIdAverageIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ProposalsByUpdatedBlockIdAverageIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ProposalsByUpdatedBlockIdAverageOwnerIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_OWNER_ID_ASC', + ProposalsByUpdatedBlockIdAverageOwnerIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_OWNER_ID_DESC', + ProposalsByUpdatedBlockIdAverageProposerAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_PROPOSER_ASC', + ProposalsByUpdatedBlockIdAverageProposerDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_PROPOSER_DESC', + ProposalsByUpdatedBlockIdAverageSnapshottedAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_SNAPSHOTTED_ASC', + ProposalsByUpdatedBlockIdAverageSnapshottedDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_SNAPSHOTTED_DESC', + ProposalsByUpdatedBlockIdAverageStateAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_STATE_ASC', + ProposalsByUpdatedBlockIdAverageStateDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_STATE_DESC', + ProposalsByUpdatedBlockIdAverageTotalAyeWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_AYE_WEIGHT_ASC', + ProposalsByUpdatedBlockIdAverageTotalAyeWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_AYE_WEIGHT_DESC', + ProposalsByUpdatedBlockIdAverageTotalNayWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_NAY_WEIGHT_ASC', + ProposalsByUpdatedBlockIdAverageTotalNayWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_TOTAL_NAY_WEIGHT_DESC', + ProposalsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdAverageUrlAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_URL_ASC', + ProposalsByUpdatedBlockIdAverageUrlDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_AVERAGE_URL_DESC', + ProposalsByUpdatedBlockIdCountAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ProposalsByUpdatedBlockIdCountDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ProposalsByUpdatedBlockIdDistinctCountBalanceAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BALANCE_ASC', + ProposalsByUpdatedBlockIdDistinctCountBalanceDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BALANCE_DESC', + ProposalsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ProposalsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ProposalsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ProposalsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ProposalsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdDistinctCountDescriptionAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DESCRIPTION_ASC', + ProposalsByUpdatedBlockIdDistinctCountDescriptionDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DESCRIPTION_DESC', + ProposalsByUpdatedBlockIdDistinctCountIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ProposalsByUpdatedBlockIdDistinctCountIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ProposalsByUpdatedBlockIdDistinctCountOwnerIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_ASC', + ProposalsByUpdatedBlockIdDistinctCountOwnerIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_DESC', + ProposalsByUpdatedBlockIdDistinctCountProposerAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROPOSER_ASC', + ProposalsByUpdatedBlockIdDistinctCountProposerDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROPOSER_DESC', + ProposalsByUpdatedBlockIdDistinctCountSnapshottedAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SNAPSHOTTED_ASC', + ProposalsByUpdatedBlockIdDistinctCountSnapshottedDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SNAPSHOTTED_DESC', + ProposalsByUpdatedBlockIdDistinctCountStateAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATE_ASC', + ProposalsByUpdatedBlockIdDistinctCountStateDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATE_DESC', + ProposalsByUpdatedBlockIdDistinctCountTotalAyeWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_AYE_WEIGHT_ASC', + ProposalsByUpdatedBlockIdDistinctCountTotalAyeWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_AYE_WEIGHT_DESC', + ProposalsByUpdatedBlockIdDistinctCountTotalNayWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_NAY_WEIGHT_ASC', + ProposalsByUpdatedBlockIdDistinctCountTotalNayWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TOTAL_NAY_WEIGHT_DESC', + ProposalsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdDistinctCountUrlAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_URL_ASC', + ProposalsByUpdatedBlockIdDistinctCountUrlDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_URL_DESC', + ProposalsByUpdatedBlockIdMaxBalanceAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_BALANCE_ASC', + ProposalsByUpdatedBlockIdMaxBalanceDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_BALANCE_DESC', + ProposalsByUpdatedBlockIdMaxBlockRangeAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ProposalsByUpdatedBlockIdMaxBlockRangeDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ProposalsByUpdatedBlockIdMaxCreatedAtAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ProposalsByUpdatedBlockIdMaxCreatedAtDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ProposalsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdMaxDescriptionAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_DESCRIPTION_ASC', + ProposalsByUpdatedBlockIdMaxDescriptionDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_DESCRIPTION_DESC', + ProposalsByUpdatedBlockIdMaxIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ProposalsByUpdatedBlockIdMaxIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ProposalsByUpdatedBlockIdMaxOwnerIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_OWNER_ID_ASC', + ProposalsByUpdatedBlockIdMaxOwnerIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_OWNER_ID_DESC', + ProposalsByUpdatedBlockIdMaxProposerAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_PROPOSER_ASC', + ProposalsByUpdatedBlockIdMaxProposerDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_PROPOSER_DESC', + ProposalsByUpdatedBlockIdMaxSnapshottedAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_SNAPSHOTTED_ASC', + ProposalsByUpdatedBlockIdMaxSnapshottedDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_SNAPSHOTTED_DESC', + ProposalsByUpdatedBlockIdMaxStateAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_STATE_ASC', + ProposalsByUpdatedBlockIdMaxStateDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_STATE_DESC', + ProposalsByUpdatedBlockIdMaxTotalAyeWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_AYE_WEIGHT_ASC', + ProposalsByUpdatedBlockIdMaxTotalAyeWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_AYE_WEIGHT_DESC', + ProposalsByUpdatedBlockIdMaxTotalNayWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_NAY_WEIGHT_ASC', + ProposalsByUpdatedBlockIdMaxTotalNayWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_TOTAL_NAY_WEIGHT_DESC', + ProposalsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdMaxUrlAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_URL_ASC', + ProposalsByUpdatedBlockIdMaxUrlDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MAX_URL_DESC', + ProposalsByUpdatedBlockIdMinBalanceAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_BALANCE_ASC', + ProposalsByUpdatedBlockIdMinBalanceDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_BALANCE_DESC', + ProposalsByUpdatedBlockIdMinBlockRangeAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ProposalsByUpdatedBlockIdMinBlockRangeDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ProposalsByUpdatedBlockIdMinCreatedAtAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ProposalsByUpdatedBlockIdMinCreatedAtDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ProposalsByUpdatedBlockIdMinCreatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdMinCreatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdMinDescriptionAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_DESCRIPTION_ASC', + ProposalsByUpdatedBlockIdMinDescriptionDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_DESCRIPTION_DESC', + ProposalsByUpdatedBlockIdMinIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ProposalsByUpdatedBlockIdMinIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ProposalsByUpdatedBlockIdMinOwnerIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_OWNER_ID_ASC', + ProposalsByUpdatedBlockIdMinOwnerIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_OWNER_ID_DESC', + ProposalsByUpdatedBlockIdMinProposerAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_PROPOSER_ASC', + ProposalsByUpdatedBlockIdMinProposerDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_PROPOSER_DESC', + ProposalsByUpdatedBlockIdMinSnapshottedAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_SNAPSHOTTED_ASC', + ProposalsByUpdatedBlockIdMinSnapshottedDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_SNAPSHOTTED_DESC', + ProposalsByUpdatedBlockIdMinStateAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_STATE_ASC', + ProposalsByUpdatedBlockIdMinStateDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_STATE_DESC', + ProposalsByUpdatedBlockIdMinTotalAyeWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_AYE_WEIGHT_ASC', + ProposalsByUpdatedBlockIdMinTotalAyeWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_AYE_WEIGHT_DESC', + ProposalsByUpdatedBlockIdMinTotalNayWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_NAY_WEIGHT_ASC', + ProposalsByUpdatedBlockIdMinTotalNayWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_TOTAL_NAY_WEIGHT_DESC', + ProposalsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdMinUrlAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_URL_ASC', + ProposalsByUpdatedBlockIdMinUrlDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_MIN_URL_DESC', + ProposalsByUpdatedBlockIdStddevPopulationBalanceAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BALANCE_ASC', + ProposalsByUpdatedBlockIdStddevPopulationBalanceDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BALANCE_DESC', + ProposalsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ProposalsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ProposalsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ProposalsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ProposalsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdStddevPopulationDescriptionAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DESCRIPTION_ASC', + ProposalsByUpdatedBlockIdStddevPopulationDescriptionDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DESCRIPTION_DESC', + ProposalsByUpdatedBlockIdStddevPopulationIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ProposalsByUpdatedBlockIdStddevPopulationIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ProposalsByUpdatedBlockIdStddevPopulationOwnerIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_ASC', + ProposalsByUpdatedBlockIdStddevPopulationOwnerIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_DESC', + ProposalsByUpdatedBlockIdStddevPopulationProposerAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROPOSER_ASC', + ProposalsByUpdatedBlockIdStddevPopulationProposerDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROPOSER_DESC', + ProposalsByUpdatedBlockIdStddevPopulationSnapshottedAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SNAPSHOTTED_ASC', + ProposalsByUpdatedBlockIdStddevPopulationSnapshottedDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SNAPSHOTTED_DESC', + ProposalsByUpdatedBlockIdStddevPopulationStateAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATE_ASC', + ProposalsByUpdatedBlockIdStddevPopulationStateDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATE_DESC', + ProposalsByUpdatedBlockIdStddevPopulationTotalAyeWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_AYE_WEIGHT_ASC', + ProposalsByUpdatedBlockIdStddevPopulationTotalAyeWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_AYE_WEIGHT_DESC', + ProposalsByUpdatedBlockIdStddevPopulationTotalNayWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_NAY_WEIGHT_ASC', + ProposalsByUpdatedBlockIdStddevPopulationTotalNayWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TOTAL_NAY_WEIGHT_DESC', + ProposalsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdStddevPopulationUrlAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_URL_ASC', + ProposalsByUpdatedBlockIdStddevPopulationUrlDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_URL_DESC', + ProposalsByUpdatedBlockIdStddevSampleBalanceAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BALANCE_ASC', + ProposalsByUpdatedBlockIdStddevSampleBalanceDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BALANCE_DESC', + ProposalsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ProposalsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ProposalsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ProposalsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ProposalsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdStddevSampleDescriptionAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DESCRIPTION_ASC', + ProposalsByUpdatedBlockIdStddevSampleDescriptionDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DESCRIPTION_DESC', + ProposalsByUpdatedBlockIdStddevSampleIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ProposalsByUpdatedBlockIdStddevSampleIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ProposalsByUpdatedBlockIdStddevSampleOwnerIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_ASC', + ProposalsByUpdatedBlockIdStddevSampleOwnerIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_DESC', + ProposalsByUpdatedBlockIdStddevSampleProposerAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSER_ASC', + ProposalsByUpdatedBlockIdStddevSampleProposerDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSER_DESC', + ProposalsByUpdatedBlockIdStddevSampleSnapshottedAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SNAPSHOTTED_ASC', + ProposalsByUpdatedBlockIdStddevSampleSnapshottedDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SNAPSHOTTED_DESC', + ProposalsByUpdatedBlockIdStddevSampleStateAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATE_ASC', + ProposalsByUpdatedBlockIdStddevSampleStateDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATE_DESC', + ProposalsByUpdatedBlockIdStddevSampleTotalAyeWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_AYE_WEIGHT_ASC', + ProposalsByUpdatedBlockIdStddevSampleTotalAyeWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_AYE_WEIGHT_DESC', + ProposalsByUpdatedBlockIdStddevSampleTotalNayWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_NAY_WEIGHT_ASC', + ProposalsByUpdatedBlockIdStddevSampleTotalNayWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TOTAL_NAY_WEIGHT_DESC', + ProposalsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdStddevSampleUrlAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_URL_ASC', + ProposalsByUpdatedBlockIdStddevSampleUrlDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_URL_DESC', + ProposalsByUpdatedBlockIdSumBalanceAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_BALANCE_ASC', + ProposalsByUpdatedBlockIdSumBalanceDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_BALANCE_DESC', + ProposalsByUpdatedBlockIdSumBlockRangeAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ProposalsByUpdatedBlockIdSumBlockRangeDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ProposalsByUpdatedBlockIdSumCreatedAtAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ProposalsByUpdatedBlockIdSumCreatedAtDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ProposalsByUpdatedBlockIdSumCreatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdSumCreatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdSumDescriptionAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_DESCRIPTION_ASC', + ProposalsByUpdatedBlockIdSumDescriptionDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_DESCRIPTION_DESC', + ProposalsByUpdatedBlockIdSumIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ProposalsByUpdatedBlockIdSumIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ProposalsByUpdatedBlockIdSumOwnerIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_OWNER_ID_ASC', + ProposalsByUpdatedBlockIdSumOwnerIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_OWNER_ID_DESC', + ProposalsByUpdatedBlockIdSumProposerAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_PROPOSER_ASC', + ProposalsByUpdatedBlockIdSumProposerDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_PROPOSER_DESC', + ProposalsByUpdatedBlockIdSumSnapshottedAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_SNAPSHOTTED_ASC', + ProposalsByUpdatedBlockIdSumSnapshottedDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_SNAPSHOTTED_DESC', + ProposalsByUpdatedBlockIdSumStateAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_STATE_ASC', + ProposalsByUpdatedBlockIdSumStateDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_STATE_DESC', + ProposalsByUpdatedBlockIdSumTotalAyeWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_AYE_WEIGHT_ASC', + ProposalsByUpdatedBlockIdSumTotalAyeWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_AYE_WEIGHT_DESC', + ProposalsByUpdatedBlockIdSumTotalNayWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_NAY_WEIGHT_ASC', + ProposalsByUpdatedBlockIdSumTotalNayWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_TOTAL_NAY_WEIGHT_DESC', + ProposalsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdSumUrlAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_URL_ASC', + ProposalsByUpdatedBlockIdSumUrlDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_SUM_URL_DESC', + ProposalsByUpdatedBlockIdVariancePopulationBalanceAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BALANCE_ASC', + ProposalsByUpdatedBlockIdVariancePopulationBalanceDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BALANCE_DESC', + ProposalsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ProposalsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ProposalsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ProposalsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ProposalsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdVariancePopulationDescriptionAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DESCRIPTION_ASC', + ProposalsByUpdatedBlockIdVariancePopulationDescriptionDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DESCRIPTION_DESC', + ProposalsByUpdatedBlockIdVariancePopulationIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ProposalsByUpdatedBlockIdVariancePopulationIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ProposalsByUpdatedBlockIdVariancePopulationOwnerIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_ASC', + ProposalsByUpdatedBlockIdVariancePopulationOwnerIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_DESC', + ProposalsByUpdatedBlockIdVariancePopulationProposerAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSER_ASC', + ProposalsByUpdatedBlockIdVariancePopulationProposerDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSER_DESC', + ProposalsByUpdatedBlockIdVariancePopulationSnapshottedAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SNAPSHOTTED_ASC', + ProposalsByUpdatedBlockIdVariancePopulationSnapshottedDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SNAPSHOTTED_DESC', + ProposalsByUpdatedBlockIdVariancePopulationStateAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATE_ASC', + ProposalsByUpdatedBlockIdVariancePopulationStateDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATE_DESC', + ProposalsByUpdatedBlockIdVariancePopulationTotalAyeWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_AYE_WEIGHT_ASC', + ProposalsByUpdatedBlockIdVariancePopulationTotalAyeWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_AYE_WEIGHT_DESC', + ProposalsByUpdatedBlockIdVariancePopulationTotalNayWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_NAY_WEIGHT_ASC', + ProposalsByUpdatedBlockIdVariancePopulationTotalNayWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TOTAL_NAY_WEIGHT_DESC', + ProposalsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdVariancePopulationUrlAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_URL_ASC', + ProposalsByUpdatedBlockIdVariancePopulationUrlDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_URL_DESC', + ProposalsByUpdatedBlockIdVarianceSampleBalanceAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BALANCE_ASC', + ProposalsByUpdatedBlockIdVarianceSampleBalanceDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BALANCE_DESC', + ProposalsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ProposalsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ProposalsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ProposalsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ProposalsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdVarianceSampleDescriptionAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DESCRIPTION_ASC', + ProposalsByUpdatedBlockIdVarianceSampleDescriptionDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DESCRIPTION_DESC', + ProposalsByUpdatedBlockIdVarianceSampleIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ProposalsByUpdatedBlockIdVarianceSampleIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ProposalsByUpdatedBlockIdVarianceSampleOwnerIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_ASC', + ProposalsByUpdatedBlockIdVarianceSampleOwnerIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_DESC', + ProposalsByUpdatedBlockIdVarianceSampleProposerAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSER_ASC', + ProposalsByUpdatedBlockIdVarianceSampleProposerDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSER_DESC', + ProposalsByUpdatedBlockIdVarianceSampleSnapshottedAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SNAPSHOTTED_ASC', + ProposalsByUpdatedBlockIdVarianceSampleSnapshottedDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SNAPSHOTTED_DESC', + ProposalsByUpdatedBlockIdVarianceSampleStateAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATE_ASC', + ProposalsByUpdatedBlockIdVarianceSampleStateDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATE_DESC', + ProposalsByUpdatedBlockIdVarianceSampleTotalAyeWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_AYE_WEIGHT_ASC', + ProposalsByUpdatedBlockIdVarianceSampleTotalAyeWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_AYE_WEIGHT_DESC', + ProposalsByUpdatedBlockIdVarianceSampleTotalNayWeightAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_NAY_WEIGHT_ASC', + ProposalsByUpdatedBlockIdVarianceSampleTotalNayWeightDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TOTAL_NAY_WEIGHT_DESC', + ProposalsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ProposalsByUpdatedBlockIdVarianceSampleUrlAsc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_URL_ASC', + ProposalsByUpdatedBlockIdVarianceSampleUrlDesc = 'PROPOSALS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_URL_DESC', + ProposalVotesByCreatedBlockIdAverageAccountAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_ACCOUNT_ASC', + ProposalVotesByCreatedBlockIdAverageAccountDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_ACCOUNT_DESC', + ProposalVotesByCreatedBlockIdAverageBlockRangeAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ProposalVotesByCreatedBlockIdAverageBlockRangeDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ProposalVotesByCreatedBlockIdAverageCreatedAtAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ProposalVotesByCreatedBlockIdAverageCreatedAtDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ProposalVotesByCreatedBlockIdAverageCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdAverageCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdAverageIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + ProposalVotesByCreatedBlockIdAverageIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + ProposalVotesByCreatedBlockIdAverageProposalIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_ASC', + ProposalVotesByCreatedBlockIdAverageProposalIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_DESC', + ProposalVotesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdAverageVoteAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_VOTE_ASC', + ProposalVotesByCreatedBlockIdAverageVoteDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_VOTE_DESC', + ProposalVotesByCreatedBlockIdAverageWeightAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_WEIGHT_ASC', + ProposalVotesByCreatedBlockIdAverageWeightDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_AVERAGE_WEIGHT_DESC', + ProposalVotesByCreatedBlockIdCountAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_COUNT_ASC', + ProposalVotesByCreatedBlockIdCountDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_COUNT_DESC', + ProposalVotesByCreatedBlockIdDistinctCountAccountAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ASC', + ProposalVotesByCreatedBlockIdDistinctCountAccountDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_DESC', + ProposalVotesByCreatedBlockIdDistinctCountBlockRangeAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ProposalVotesByCreatedBlockIdDistinctCountBlockRangeDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ProposalVotesByCreatedBlockIdDistinctCountCreatedAtAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ProposalVotesByCreatedBlockIdDistinctCountCreatedAtDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ProposalVotesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdDistinctCountIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ProposalVotesByCreatedBlockIdDistinctCountIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ProposalVotesByCreatedBlockIdDistinctCountProposalIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC', + ProposalVotesByCreatedBlockIdDistinctCountProposalIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC', + ProposalVotesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdDistinctCountVoteAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VOTE_ASC', + ProposalVotesByCreatedBlockIdDistinctCountVoteDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VOTE_DESC', + ProposalVotesByCreatedBlockIdDistinctCountWeightAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_WEIGHT_ASC', + ProposalVotesByCreatedBlockIdDistinctCountWeightDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_WEIGHT_DESC', + ProposalVotesByCreatedBlockIdMaxAccountAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_ACCOUNT_ASC', + ProposalVotesByCreatedBlockIdMaxAccountDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_ACCOUNT_DESC', + ProposalVotesByCreatedBlockIdMaxBlockRangeAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ProposalVotesByCreatedBlockIdMaxBlockRangeDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ProposalVotesByCreatedBlockIdMaxCreatedAtAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ProposalVotesByCreatedBlockIdMaxCreatedAtDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ProposalVotesByCreatedBlockIdMaxCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdMaxCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdMaxIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + ProposalVotesByCreatedBlockIdMaxIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + ProposalVotesByCreatedBlockIdMaxProposalIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_PROPOSAL_ID_ASC', + ProposalVotesByCreatedBlockIdMaxProposalIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_PROPOSAL_ID_DESC', + ProposalVotesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdMaxVoteAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_VOTE_ASC', + ProposalVotesByCreatedBlockIdMaxVoteDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_VOTE_DESC', + ProposalVotesByCreatedBlockIdMaxWeightAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_WEIGHT_ASC', + ProposalVotesByCreatedBlockIdMaxWeightDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MAX_WEIGHT_DESC', + ProposalVotesByCreatedBlockIdMinAccountAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_ACCOUNT_ASC', + ProposalVotesByCreatedBlockIdMinAccountDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_ACCOUNT_DESC', + ProposalVotesByCreatedBlockIdMinBlockRangeAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ProposalVotesByCreatedBlockIdMinBlockRangeDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ProposalVotesByCreatedBlockIdMinCreatedAtAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ProposalVotesByCreatedBlockIdMinCreatedAtDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ProposalVotesByCreatedBlockIdMinCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdMinCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdMinIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + ProposalVotesByCreatedBlockIdMinIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + ProposalVotesByCreatedBlockIdMinProposalIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_PROPOSAL_ID_ASC', + ProposalVotesByCreatedBlockIdMinProposalIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_PROPOSAL_ID_DESC', + ProposalVotesByCreatedBlockIdMinUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdMinUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdMinVoteAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_VOTE_ASC', + ProposalVotesByCreatedBlockIdMinVoteDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_VOTE_DESC', + ProposalVotesByCreatedBlockIdMinWeightAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_WEIGHT_ASC', + ProposalVotesByCreatedBlockIdMinWeightDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_MIN_WEIGHT_DESC', + ProposalVotesByCreatedBlockIdStddevPopulationAccountAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ASC', + ProposalVotesByCreatedBlockIdStddevPopulationAccountDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_DESC', + ProposalVotesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ProposalVotesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ProposalVotesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ProposalVotesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ProposalVotesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdStddevPopulationIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ProposalVotesByCreatedBlockIdStddevPopulationIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ProposalVotesByCreatedBlockIdStddevPopulationProposalIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC', + ProposalVotesByCreatedBlockIdStddevPopulationProposalIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC', + ProposalVotesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdStddevPopulationVoteAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VOTE_ASC', + ProposalVotesByCreatedBlockIdStddevPopulationVoteDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VOTE_DESC', + ProposalVotesByCreatedBlockIdStddevPopulationWeightAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_WEIGHT_ASC', + ProposalVotesByCreatedBlockIdStddevPopulationWeightDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_WEIGHT_DESC', + ProposalVotesByCreatedBlockIdStddevSampleAccountAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ASC', + ProposalVotesByCreatedBlockIdStddevSampleAccountDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_DESC', + ProposalVotesByCreatedBlockIdStddevSampleBlockRangeAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ProposalVotesByCreatedBlockIdStddevSampleBlockRangeDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ProposalVotesByCreatedBlockIdStddevSampleCreatedAtAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ProposalVotesByCreatedBlockIdStddevSampleCreatedAtDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ProposalVotesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdStddevSampleIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ProposalVotesByCreatedBlockIdStddevSampleIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ProposalVotesByCreatedBlockIdStddevSampleProposalIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC', + ProposalVotesByCreatedBlockIdStddevSampleProposalIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC', + ProposalVotesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdStddevSampleVoteAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VOTE_ASC', + ProposalVotesByCreatedBlockIdStddevSampleVoteDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VOTE_DESC', + ProposalVotesByCreatedBlockIdStddevSampleWeightAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_WEIGHT_ASC', + ProposalVotesByCreatedBlockIdStddevSampleWeightDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_WEIGHT_DESC', + ProposalVotesByCreatedBlockIdSumAccountAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_ACCOUNT_ASC', + ProposalVotesByCreatedBlockIdSumAccountDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_ACCOUNT_DESC', + ProposalVotesByCreatedBlockIdSumBlockRangeAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ProposalVotesByCreatedBlockIdSumBlockRangeDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ProposalVotesByCreatedBlockIdSumCreatedAtAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ProposalVotesByCreatedBlockIdSumCreatedAtDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ProposalVotesByCreatedBlockIdSumCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdSumCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdSumIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + ProposalVotesByCreatedBlockIdSumIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + ProposalVotesByCreatedBlockIdSumProposalIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_PROPOSAL_ID_ASC', + ProposalVotesByCreatedBlockIdSumProposalIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_PROPOSAL_ID_DESC', + ProposalVotesByCreatedBlockIdSumUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdSumUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdSumVoteAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_VOTE_ASC', + ProposalVotesByCreatedBlockIdSumVoteDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_VOTE_DESC', + ProposalVotesByCreatedBlockIdSumWeightAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_WEIGHT_ASC', + ProposalVotesByCreatedBlockIdSumWeightDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_SUM_WEIGHT_DESC', + ProposalVotesByCreatedBlockIdVariancePopulationAccountAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ASC', + ProposalVotesByCreatedBlockIdVariancePopulationAccountDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_DESC', + ProposalVotesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ProposalVotesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ProposalVotesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ProposalVotesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ProposalVotesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdVariancePopulationIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ProposalVotesByCreatedBlockIdVariancePopulationIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ProposalVotesByCreatedBlockIdVariancePopulationProposalIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC', + ProposalVotesByCreatedBlockIdVariancePopulationProposalIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC', + ProposalVotesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdVariancePopulationVoteAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VOTE_ASC', + ProposalVotesByCreatedBlockIdVariancePopulationVoteDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VOTE_DESC', + ProposalVotesByCreatedBlockIdVariancePopulationWeightAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_WEIGHT_ASC', + ProposalVotesByCreatedBlockIdVariancePopulationWeightDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_WEIGHT_DESC', + ProposalVotesByCreatedBlockIdVarianceSampleAccountAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ASC', + ProposalVotesByCreatedBlockIdVarianceSampleAccountDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_DESC', + ProposalVotesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ProposalVotesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ProposalVotesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ProposalVotesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ProposalVotesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdVarianceSampleIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ProposalVotesByCreatedBlockIdVarianceSampleIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ProposalVotesByCreatedBlockIdVarianceSampleProposalIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', + ProposalVotesByCreatedBlockIdVarianceSampleProposalIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', + ProposalVotesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalVotesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ProposalVotesByCreatedBlockIdVarianceSampleVoteAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VOTE_ASC', + ProposalVotesByCreatedBlockIdVarianceSampleVoteDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VOTE_DESC', + ProposalVotesByCreatedBlockIdVarianceSampleWeightAsc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_WEIGHT_ASC', + ProposalVotesByCreatedBlockIdVarianceSampleWeightDesc = 'PROPOSAL_VOTES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_WEIGHT_DESC', + ProposalVotesByUpdatedBlockIdAverageAccountAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_ACCOUNT_ASC', + ProposalVotesByUpdatedBlockIdAverageAccountDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_ACCOUNT_DESC', + ProposalVotesByUpdatedBlockIdAverageBlockRangeAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + ProposalVotesByUpdatedBlockIdAverageBlockRangeDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + ProposalVotesByUpdatedBlockIdAverageCreatedAtAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + ProposalVotesByUpdatedBlockIdAverageCreatedAtDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + ProposalVotesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdAverageIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + ProposalVotesByUpdatedBlockIdAverageIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + ProposalVotesByUpdatedBlockIdAverageProposalIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_ASC', + ProposalVotesByUpdatedBlockIdAverageProposalIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_PROPOSAL_ID_DESC', + ProposalVotesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdAverageVoteAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_VOTE_ASC', + ProposalVotesByUpdatedBlockIdAverageVoteDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_VOTE_DESC', + ProposalVotesByUpdatedBlockIdAverageWeightAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_WEIGHT_ASC', + ProposalVotesByUpdatedBlockIdAverageWeightDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_AVERAGE_WEIGHT_DESC', + ProposalVotesByUpdatedBlockIdCountAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + ProposalVotesByUpdatedBlockIdCountDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + ProposalVotesByUpdatedBlockIdDistinctCountAccountAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_ASC', + ProposalVotesByUpdatedBlockIdDistinctCountAccountDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ACCOUNT_DESC', + ProposalVotesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ProposalVotesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ProposalVotesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ProposalVotesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ProposalVotesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdDistinctCountIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + ProposalVotesByUpdatedBlockIdDistinctCountIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + ProposalVotesByUpdatedBlockIdDistinctCountProposalIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC', + ProposalVotesByUpdatedBlockIdDistinctCountProposalIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC', + ProposalVotesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdDistinctCountVoteAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VOTE_ASC', + ProposalVotesByUpdatedBlockIdDistinctCountVoteDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VOTE_DESC', + ProposalVotesByUpdatedBlockIdDistinctCountWeightAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_WEIGHT_ASC', + ProposalVotesByUpdatedBlockIdDistinctCountWeightDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_WEIGHT_DESC', + ProposalVotesByUpdatedBlockIdMaxAccountAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_ACCOUNT_ASC', + ProposalVotesByUpdatedBlockIdMaxAccountDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_ACCOUNT_DESC', + ProposalVotesByUpdatedBlockIdMaxBlockRangeAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + ProposalVotesByUpdatedBlockIdMaxBlockRangeDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + ProposalVotesByUpdatedBlockIdMaxCreatedAtAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + ProposalVotesByUpdatedBlockIdMaxCreatedAtDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + ProposalVotesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdMaxIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + ProposalVotesByUpdatedBlockIdMaxIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + ProposalVotesByUpdatedBlockIdMaxProposalIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_PROPOSAL_ID_ASC', + ProposalVotesByUpdatedBlockIdMaxProposalIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_PROPOSAL_ID_DESC', + ProposalVotesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdMaxVoteAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_VOTE_ASC', + ProposalVotesByUpdatedBlockIdMaxVoteDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_VOTE_DESC', + ProposalVotesByUpdatedBlockIdMaxWeightAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_WEIGHT_ASC', + ProposalVotesByUpdatedBlockIdMaxWeightDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MAX_WEIGHT_DESC', + ProposalVotesByUpdatedBlockIdMinAccountAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_ACCOUNT_ASC', + ProposalVotesByUpdatedBlockIdMinAccountDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_ACCOUNT_DESC', + ProposalVotesByUpdatedBlockIdMinBlockRangeAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + ProposalVotesByUpdatedBlockIdMinBlockRangeDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + ProposalVotesByUpdatedBlockIdMinCreatedAtAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + ProposalVotesByUpdatedBlockIdMinCreatedAtDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + ProposalVotesByUpdatedBlockIdMinCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdMinCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdMinIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + ProposalVotesByUpdatedBlockIdMinIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + ProposalVotesByUpdatedBlockIdMinProposalIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_PROPOSAL_ID_ASC', + ProposalVotesByUpdatedBlockIdMinProposalIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_PROPOSAL_ID_DESC', + ProposalVotesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdMinVoteAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_VOTE_ASC', + ProposalVotesByUpdatedBlockIdMinVoteDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_VOTE_DESC', + ProposalVotesByUpdatedBlockIdMinWeightAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_WEIGHT_ASC', + ProposalVotesByUpdatedBlockIdMinWeightDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_MIN_WEIGHT_DESC', + ProposalVotesByUpdatedBlockIdStddevPopulationAccountAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_ASC', + ProposalVotesByUpdatedBlockIdStddevPopulationAccountDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ACCOUNT_DESC', + ProposalVotesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ProposalVotesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ProposalVotesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ProposalVotesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ProposalVotesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdStddevPopulationIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + ProposalVotesByUpdatedBlockIdStddevPopulationIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + ProposalVotesByUpdatedBlockIdStddevPopulationProposalIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC', + ProposalVotesByUpdatedBlockIdStddevPopulationProposalIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC', + ProposalVotesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdStddevPopulationVoteAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VOTE_ASC', + ProposalVotesByUpdatedBlockIdStddevPopulationVoteDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VOTE_DESC', + ProposalVotesByUpdatedBlockIdStddevPopulationWeightAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_WEIGHT_ASC', + ProposalVotesByUpdatedBlockIdStddevPopulationWeightDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_WEIGHT_DESC', + ProposalVotesByUpdatedBlockIdStddevSampleAccountAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_ASC', + ProposalVotesByUpdatedBlockIdStddevSampleAccountDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ACCOUNT_DESC', + ProposalVotesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ProposalVotesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ProposalVotesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ProposalVotesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ProposalVotesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdStddevSampleIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + ProposalVotesByUpdatedBlockIdStddevSampleIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + ProposalVotesByUpdatedBlockIdStddevSampleProposalIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC', + ProposalVotesByUpdatedBlockIdStddevSampleProposalIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC', + ProposalVotesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdStddevSampleVoteAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VOTE_ASC', + ProposalVotesByUpdatedBlockIdStddevSampleVoteDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VOTE_DESC', + ProposalVotesByUpdatedBlockIdStddevSampleWeightAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_WEIGHT_ASC', + ProposalVotesByUpdatedBlockIdStddevSampleWeightDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_WEIGHT_DESC', + ProposalVotesByUpdatedBlockIdSumAccountAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_ACCOUNT_ASC', + ProposalVotesByUpdatedBlockIdSumAccountDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_ACCOUNT_DESC', + ProposalVotesByUpdatedBlockIdSumBlockRangeAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + ProposalVotesByUpdatedBlockIdSumBlockRangeDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + ProposalVotesByUpdatedBlockIdSumCreatedAtAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + ProposalVotesByUpdatedBlockIdSumCreatedAtDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + ProposalVotesByUpdatedBlockIdSumCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdSumCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdSumIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + ProposalVotesByUpdatedBlockIdSumIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + ProposalVotesByUpdatedBlockIdSumProposalIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_PROPOSAL_ID_ASC', + ProposalVotesByUpdatedBlockIdSumProposalIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_PROPOSAL_ID_DESC', + ProposalVotesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdSumVoteAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_VOTE_ASC', + ProposalVotesByUpdatedBlockIdSumVoteDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_VOTE_DESC', + ProposalVotesByUpdatedBlockIdSumWeightAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_WEIGHT_ASC', + ProposalVotesByUpdatedBlockIdSumWeightDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_SUM_WEIGHT_DESC', + ProposalVotesByUpdatedBlockIdVariancePopulationAccountAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_ASC', + ProposalVotesByUpdatedBlockIdVariancePopulationAccountDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ACCOUNT_DESC', + ProposalVotesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ProposalVotesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ProposalVotesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ProposalVotesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ProposalVotesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdVariancePopulationIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + ProposalVotesByUpdatedBlockIdVariancePopulationIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + ProposalVotesByUpdatedBlockIdVariancePopulationProposalIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC', + ProposalVotesByUpdatedBlockIdVariancePopulationProposalIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC', + ProposalVotesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdVariancePopulationVoteAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VOTE_ASC', + ProposalVotesByUpdatedBlockIdVariancePopulationVoteDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VOTE_DESC', + ProposalVotesByUpdatedBlockIdVariancePopulationWeightAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_WEIGHT_ASC', + ProposalVotesByUpdatedBlockIdVariancePopulationWeightDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_WEIGHT_DESC', + ProposalVotesByUpdatedBlockIdVarianceSampleAccountAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_ASC', + ProposalVotesByUpdatedBlockIdVarianceSampleAccountDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ACCOUNT_DESC', + ProposalVotesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ProposalVotesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ProposalVotesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ProposalVotesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ProposalVotesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdVarianceSampleIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + ProposalVotesByUpdatedBlockIdVarianceSampleIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + ProposalVotesByUpdatedBlockIdVarianceSampleProposalIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', + ProposalVotesByUpdatedBlockIdVarianceSampleProposalIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', + ProposalVotesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalVotesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ProposalVotesByUpdatedBlockIdVarianceSampleVoteAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VOTE_ASC', + ProposalVotesByUpdatedBlockIdVarianceSampleVoteDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VOTE_DESC', + ProposalVotesByUpdatedBlockIdVarianceSampleWeightAsc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_WEIGHT_ASC', + ProposalVotesByUpdatedBlockIdVarianceSampleWeightDesc = 'PROPOSAL_VOTES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_WEIGHT_DESC', + SpecVersionIdAsc = 'SPEC_VERSION_ID_ASC', + SpecVersionIdDesc = 'SPEC_VERSION_ID_DESC', + StakingEventsByCreatedBlockIdAverageAmountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + StakingEventsByCreatedBlockIdAverageAmountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + StakingEventsByCreatedBlockIdAverageBlockRangeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + StakingEventsByCreatedBlockIdAverageBlockRangeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + StakingEventsByCreatedBlockIdAverageCreatedAtAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + StakingEventsByCreatedBlockIdAverageCreatedAtDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + StakingEventsByCreatedBlockIdAverageCreatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdAverageCreatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdAverageDatetimeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + StakingEventsByCreatedBlockIdAverageDatetimeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + StakingEventsByCreatedBlockIdAverageEventIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + StakingEventsByCreatedBlockIdAverageEventIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + StakingEventsByCreatedBlockIdAverageIdentityIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + StakingEventsByCreatedBlockIdAverageIdentityIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + StakingEventsByCreatedBlockIdAverageIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + StakingEventsByCreatedBlockIdAverageIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + StakingEventsByCreatedBlockIdAverageNominatedValidatorsAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_NOMINATED_VALIDATORS_ASC', + StakingEventsByCreatedBlockIdAverageNominatedValidatorsDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_NOMINATED_VALIDATORS_DESC', + StakingEventsByCreatedBlockIdAverageStashAccountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_STASH_ACCOUNT_ASC', + StakingEventsByCreatedBlockIdAverageStashAccountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_STASH_ACCOUNT_DESC', + StakingEventsByCreatedBlockIdAverageTransactionIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_ASC', + StakingEventsByCreatedBlockIdAverageTransactionIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_DESC', + StakingEventsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdCountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + StakingEventsByCreatedBlockIdCountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + StakingEventsByCreatedBlockIdDistinctCountAmountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + StakingEventsByCreatedBlockIdDistinctCountAmountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + StakingEventsByCreatedBlockIdDistinctCountBlockRangeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StakingEventsByCreatedBlockIdDistinctCountBlockRangeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StakingEventsByCreatedBlockIdDistinctCountCreatedAtAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + StakingEventsByCreatedBlockIdDistinctCountCreatedAtDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + StakingEventsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdDistinctCountDatetimeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + StakingEventsByCreatedBlockIdDistinctCountDatetimeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + StakingEventsByCreatedBlockIdDistinctCountEventIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + StakingEventsByCreatedBlockIdDistinctCountEventIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + StakingEventsByCreatedBlockIdDistinctCountIdentityIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + StakingEventsByCreatedBlockIdDistinctCountIdentityIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + StakingEventsByCreatedBlockIdDistinctCountIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + StakingEventsByCreatedBlockIdDistinctCountIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + StakingEventsByCreatedBlockIdDistinctCountNominatedValidatorsAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NOMINATED_VALIDATORS_ASC', + StakingEventsByCreatedBlockIdDistinctCountNominatedValidatorsDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NOMINATED_VALIDATORS_DESC', + StakingEventsByCreatedBlockIdDistinctCountStashAccountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STASH_ACCOUNT_ASC', + StakingEventsByCreatedBlockIdDistinctCountStashAccountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STASH_ACCOUNT_DESC', + StakingEventsByCreatedBlockIdDistinctCountTransactionIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + StakingEventsByCreatedBlockIdDistinctCountTransactionIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + StakingEventsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdMaxAmountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_ASC', + StakingEventsByCreatedBlockIdMaxAmountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_AMOUNT_DESC', + StakingEventsByCreatedBlockIdMaxBlockRangeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + StakingEventsByCreatedBlockIdMaxBlockRangeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + StakingEventsByCreatedBlockIdMaxCreatedAtAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + StakingEventsByCreatedBlockIdMaxCreatedAtDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + StakingEventsByCreatedBlockIdMaxCreatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdMaxCreatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdMaxDatetimeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + StakingEventsByCreatedBlockIdMaxDatetimeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + StakingEventsByCreatedBlockIdMaxEventIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_ASC', + StakingEventsByCreatedBlockIdMaxEventIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_DESC', + StakingEventsByCreatedBlockIdMaxIdentityIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + StakingEventsByCreatedBlockIdMaxIdentityIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + StakingEventsByCreatedBlockIdMaxIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + StakingEventsByCreatedBlockIdMaxIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + StakingEventsByCreatedBlockIdMaxNominatedValidatorsAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_NOMINATED_VALIDATORS_ASC', + StakingEventsByCreatedBlockIdMaxNominatedValidatorsDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_NOMINATED_VALIDATORS_DESC', + StakingEventsByCreatedBlockIdMaxStashAccountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_STASH_ACCOUNT_ASC', + StakingEventsByCreatedBlockIdMaxStashAccountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_STASH_ACCOUNT_DESC', + StakingEventsByCreatedBlockIdMaxTransactionIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_TRANSACTION_ID_ASC', + StakingEventsByCreatedBlockIdMaxTransactionIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_TRANSACTION_ID_DESC', + StakingEventsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdMinAmountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_ASC', + StakingEventsByCreatedBlockIdMinAmountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_AMOUNT_DESC', + StakingEventsByCreatedBlockIdMinBlockRangeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + StakingEventsByCreatedBlockIdMinBlockRangeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + StakingEventsByCreatedBlockIdMinCreatedAtAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + StakingEventsByCreatedBlockIdMinCreatedAtDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + StakingEventsByCreatedBlockIdMinCreatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdMinCreatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdMinDatetimeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + StakingEventsByCreatedBlockIdMinDatetimeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + StakingEventsByCreatedBlockIdMinEventIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_ASC', + StakingEventsByCreatedBlockIdMinEventIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_DESC', + StakingEventsByCreatedBlockIdMinIdentityIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + StakingEventsByCreatedBlockIdMinIdentityIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + StakingEventsByCreatedBlockIdMinIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + StakingEventsByCreatedBlockIdMinIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + StakingEventsByCreatedBlockIdMinNominatedValidatorsAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_NOMINATED_VALIDATORS_ASC', + StakingEventsByCreatedBlockIdMinNominatedValidatorsDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_NOMINATED_VALIDATORS_DESC', + StakingEventsByCreatedBlockIdMinStashAccountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_STASH_ACCOUNT_ASC', + StakingEventsByCreatedBlockIdMinStashAccountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_STASH_ACCOUNT_DESC', + StakingEventsByCreatedBlockIdMinTransactionIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_TRANSACTION_ID_ASC', + StakingEventsByCreatedBlockIdMinTransactionIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_TRANSACTION_ID_DESC', + StakingEventsByCreatedBlockIdMinUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdMinUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdStddevPopulationAmountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + StakingEventsByCreatedBlockIdStddevPopulationAmountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + StakingEventsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StakingEventsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StakingEventsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + StakingEventsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + StakingEventsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdStddevPopulationDatetimeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + StakingEventsByCreatedBlockIdStddevPopulationDatetimeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + StakingEventsByCreatedBlockIdStddevPopulationEventIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + StakingEventsByCreatedBlockIdStddevPopulationEventIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + StakingEventsByCreatedBlockIdStddevPopulationIdentityIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + StakingEventsByCreatedBlockIdStddevPopulationIdentityIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + StakingEventsByCreatedBlockIdStddevPopulationIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + StakingEventsByCreatedBlockIdStddevPopulationIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + StakingEventsByCreatedBlockIdStddevPopulationNominatedValidatorsAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NOMINATED_VALIDATORS_ASC', + StakingEventsByCreatedBlockIdStddevPopulationNominatedValidatorsDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NOMINATED_VALIDATORS_DESC', + StakingEventsByCreatedBlockIdStddevPopulationStashAccountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STASH_ACCOUNT_ASC', + StakingEventsByCreatedBlockIdStddevPopulationStashAccountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STASH_ACCOUNT_DESC', + StakingEventsByCreatedBlockIdStddevPopulationTransactionIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + StakingEventsByCreatedBlockIdStddevPopulationTransactionIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + StakingEventsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdStddevSampleAmountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + StakingEventsByCreatedBlockIdStddevSampleAmountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + StakingEventsByCreatedBlockIdStddevSampleBlockRangeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StakingEventsByCreatedBlockIdStddevSampleBlockRangeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StakingEventsByCreatedBlockIdStddevSampleCreatedAtAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + StakingEventsByCreatedBlockIdStddevSampleCreatedAtDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + StakingEventsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdStddevSampleDatetimeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + StakingEventsByCreatedBlockIdStddevSampleDatetimeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + StakingEventsByCreatedBlockIdStddevSampleEventIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + StakingEventsByCreatedBlockIdStddevSampleEventIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + StakingEventsByCreatedBlockIdStddevSampleIdentityIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + StakingEventsByCreatedBlockIdStddevSampleIdentityIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + StakingEventsByCreatedBlockIdStddevSampleIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + StakingEventsByCreatedBlockIdStddevSampleIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + StakingEventsByCreatedBlockIdStddevSampleNominatedValidatorsAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NOMINATED_VALIDATORS_ASC', + StakingEventsByCreatedBlockIdStddevSampleNominatedValidatorsDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NOMINATED_VALIDATORS_DESC', + StakingEventsByCreatedBlockIdStddevSampleStashAccountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STASH_ACCOUNT_ASC', + StakingEventsByCreatedBlockIdStddevSampleStashAccountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STASH_ACCOUNT_DESC', + StakingEventsByCreatedBlockIdStddevSampleTransactionIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + StakingEventsByCreatedBlockIdStddevSampleTransactionIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + StakingEventsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdSumAmountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_ASC', + StakingEventsByCreatedBlockIdSumAmountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_AMOUNT_DESC', + StakingEventsByCreatedBlockIdSumBlockRangeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + StakingEventsByCreatedBlockIdSumBlockRangeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + StakingEventsByCreatedBlockIdSumCreatedAtAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + StakingEventsByCreatedBlockIdSumCreatedAtDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + StakingEventsByCreatedBlockIdSumCreatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdSumCreatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdSumDatetimeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + StakingEventsByCreatedBlockIdSumDatetimeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + StakingEventsByCreatedBlockIdSumEventIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_ASC', + StakingEventsByCreatedBlockIdSumEventIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_DESC', + StakingEventsByCreatedBlockIdSumIdentityIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + StakingEventsByCreatedBlockIdSumIdentityIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + StakingEventsByCreatedBlockIdSumIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + StakingEventsByCreatedBlockIdSumIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + StakingEventsByCreatedBlockIdSumNominatedValidatorsAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_NOMINATED_VALIDATORS_ASC', + StakingEventsByCreatedBlockIdSumNominatedValidatorsDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_NOMINATED_VALIDATORS_DESC', + StakingEventsByCreatedBlockIdSumStashAccountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_STASH_ACCOUNT_ASC', + StakingEventsByCreatedBlockIdSumStashAccountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_STASH_ACCOUNT_DESC', + StakingEventsByCreatedBlockIdSumTransactionIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_TRANSACTION_ID_ASC', + StakingEventsByCreatedBlockIdSumTransactionIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_TRANSACTION_ID_DESC', + StakingEventsByCreatedBlockIdSumUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdSumUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdVariancePopulationAmountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + StakingEventsByCreatedBlockIdVariancePopulationAmountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + StakingEventsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StakingEventsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StakingEventsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + StakingEventsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + StakingEventsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdVariancePopulationDatetimeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + StakingEventsByCreatedBlockIdVariancePopulationDatetimeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + StakingEventsByCreatedBlockIdVariancePopulationEventIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + StakingEventsByCreatedBlockIdVariancePopulationEventIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + StakingEventsByCreatedBlockIdVariancePopulationIdentityIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + StakingEventsByCreatedBlockIdVariancePopulationIdentityIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + StakingEventsByCreatedBlockIdVariancePopulationIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + StakingEventsByCreatedBlockIdVariancePopulationIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + StakingEventsByCreatedBlockIdVariancePopulationNominatedValidatorsAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NOMINATED_VALIDATORS_ASC', + StakingEventsByCreatedBlockIdVariancePopulationNominatedValidatorsDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NOMINATED_VALIDATORS_DESC', + StakingEventsByCreatedBlockIdVariancePopulationStashAccountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STASH_ACCOUNT_ASC', + StakingEventsByCreatedBlockIdVariancePopulationStashAccountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STASH_ACCOUNT_DESC', + StakingEventsByCreatedBlockIdVariancePopulationTransactionIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + StakingEventsByCreatedBlockIdVariancePopulationTransactionIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + StakingEventsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdVarianceSampleAmountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + StakingEventsByCreatedBlockIdVarianceSampleAmountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + StakingEventsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StakingEventsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StakingEventsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + StakingEventsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + StakingEventsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StakingEventsByCreatedBlockIdVarianceSampleDatetimeAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + StakingEventsByCreatedBlockIdVarianceSampleDatetimeDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + StakingEventsByCreatedBlockIdVarianceSampleEventIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + StakingEventsByCreatedBlockIdVarianceSampleEventIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + StakingEventsByCreatedBlockIdVarianceSampleIdentityIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + StakingEventsByCreatedBlockIdVarianceSampleIdentityIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + StakingEventsByCreatedBlockIdVarianceSampleIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + StakingEventsByCreatedBlockIdVarianceSampleIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + StakingEventsByCreatedBlockIdVarianceSampleNominatedValidatorsAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NOMINATED_VALIDATORS_ASC', + StakingEventsByCreatedBlockIdVarianceSampleNominatedValidatorsDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NOMINATED_VALIDATORS_DESC', + StakingEventsByCreatedBlockIdVarianceSampleStashAccountAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STASH_ACCOUNT_ASC', + StakingEventsByCreatedBlockIdVarianceSampleStashAccountDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STASH_ACCOUNT_DESC', + StakingEventsByCreatedBlockIdVarianceSampleTransactionIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + StakingEventsByCreatedBlockIdVarianceSampleTransactionIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + StakingEventsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StakingEventsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdAverageAmountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_ASC', + StakingEventsByUpdatedBlockIdAverageAmountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_AMOUNT_DESC', + StakingEventsByUpdatedBlockIdAverageBlockRangeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + StakingEventsByUpdatedBlockIdAverageBlockRangeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + StakingEventsByUpdatedBlockIdAverageCreatedAtAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + StakingEventsByUpdatedBlockIdAverageCreatedAtDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + StakingEventsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdAverageDatetimeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + StakingEventsByUpdatedBlockIdAverageDatetimeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + StakingEventsByUpdatedBlockIdAverageEventIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + StakingEventsByUpdatedBlockIdAverageEventIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + StakingEventsByUpdatedBlockIdAverageIdentityIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + StakingEventsByUpdatedBlockIdAverageIdentityIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + StakingEventsByUpdatedBlockIdAverageIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + StakingEventsByUpdatedBlockIdAverageIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + StakingEventsByUpdatedBlockIdAverageNominatedValidatorsAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_NOMINATED_VALIDATORS_ASC', + StakingEventsByUpdatedBlockIdAverageNominatedValidatorsDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_NOMINATED_VALIDATORS_DESC', + StakingEventsByUpdatedBlockIdAverageStashAccountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_STASH_ACCOUNT_ASC', + StakingEventsByUpdatedBlockIdAverageStashAccountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_STASH_ACCOUNT_DESC', + StakingEventsByUpdatedBlockIdAverageTransactionIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_ASC', + StakingEventsByUpdatedBlockIdAverageTransactionIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_TRANSACTION_ID_DESC', + StakingEventsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdCountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + StakingEventsByUpdatedBlockIdCountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + StakingEventsByUpdatedBlockIdDistinctCountAmountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_ASC', + StakingEventsByUpdatedBlockIdDistinctCountAmountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_AMOUNT_DESC', + StakingEventsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StakingEventsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StakingEventsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + StakingEventsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + StakingEventsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdDistinctCountDatetimeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + StakingEventsByUpdatedBlockIdDistinctCountDatetimeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + StakingEventsByUpdatedBlockIdDistinctCountEventIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + StakingEventsByUpdatedBlockIdDistinctCountEventIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + StakingEventsByUpdatedBlockIdDistinctCountIdentityIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + StakingEventsByUpdatedBlockIdDistinctCountIdentityIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + StakingEventsByUpdatedBlockIdDistinctCountIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + StakingEventsByUpdatedBlockIdDistinctCountIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + StakingEventsByUpdatedBlockIdDistinctCountNominatedValidatorsAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NOMINATED_VALIDATORS_ASC', + StakingEventsByUpdatedBlockIdDistinctCountNominatedValidatorsDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NOMINATED_VALIDATORS_DESC', + StakingEventsByUpdatedBlockIdDistinctCountStashAccountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STASH_ACCOUNT_ASC', + StakingEventsByUpdatedBlockIdDistinctCountStashAccountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STASH_ACCOUNT_DESC', + StakingEventsByUpdatedBlockIdDistinctCountTransactionIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + StakingEventsByUpdatedBlockIdDistinctCountTransactionIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + StakingEventsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdMaxAmountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_ASC', + StakingEventsByUpdatedBlockIdMaxAmountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_AMOUNT_DESC', + StakingEventsByUpdatedBlockIdMaxBlockRangeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + StakingEventsByUpdatedBlockIdMaxBlockRangeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + StakingEventsByUpdatedBlockIdMaxCreatedAtAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + StakingEventsByUpdatedBlockIdMaxCreatedAtDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + StakingEventsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdMaxDatetimeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + StakingEventsByUpdatedBlockIdMaxDatetimeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + StakingEventsByUpdatedBlockIdMaxEventIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_ASC', + StakingEventsByUpdatedBlockIdMaxEventIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_DESC', + StakingEventsByUpdatedBlockIdMaxIdentityIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + StakingEventsByUpdatedBlockIdMaxIdentityIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + StakingEventsByUpdatedBlockIdMaxIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + StakingEventsByUpdatedBlockIdMaxIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + StakingEventsByUpdatedBlockIdMaxNominatedValidatorsAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_NOMINATED_VALIDATORS_ASC', + StakingEventsByUpdatedBlockIdMaxNominatedValidatorsDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_NOMINATED_VALIDATORS_DESC', + StakingEventsByUpdatedBlockIdMaxStashAccountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_STASH_ACCOUNT_ASC', + StakingEventsByUpdatedBlockIdMaxStashAccountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_STASH_ACCOUNT_DESC', + StakingEventsByUpdatedBlockIdMaxTransactionIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_TRANSACTION_ID_ASC', + StakingEventsByUpdatedBlockIdMaxTransactionIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_TRANSACTION_ID_DESC', + StakingEventsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdMinAmountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_ASC', + StakingEventsByUpdatedBlockIdMinAmountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_AMOUNT_DESC', + StakingEventsByUpdatedBlockIdMinBlockRangeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + StakingEventsByUpdatedBlockIdMinBlockRangeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + StakingEventsByUpdatedBlockIdMinCreatedAtAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + StakingEventsByUpdatedBlockIdMinCreatedAtDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + StakingEventsByUpdatedBlockIdMinCreatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdMinCreatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdMinDatetimeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + StakingEventsByUpdatedBlockIdMinDatetimeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + StakingEventsByUpdatedBlockIdMinEventIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_ASC', + StakingEventsByUpdatedBlockIdMinEventIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_DESC', + StakingEventsByUpdatedBlockIdMinIdentityIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + StakingEventsByUpdatedBlockIdMinIdentityIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + StakingEventsByUpdatedBlockIdMinIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + StakingEventsByUpdatedBlockIdMinIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + StakingEventsByUpdatedBlockIdMinNominatedValidatorsAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_NOMINATED_VALIDATORS_ASC', + StakingEventsByUpdatedBlockIdMinNominatedValidatorsDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_NOMINATED_VALIDATORS_DESC', + StakingEventsByUpdatedBlockIdMinStashAccountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_STASH_ACCOUNT_ASC', + StakingEventsByUpdatedBlockIdMinStashAccountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_STASH_ACCOUNT_DESC', + StakingEventsByUpdatedBlockIdMinTransactionIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_TRANSACTION_ID_ASC', + StakingEventsByUpdatedBlockIdMinTransactionIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_TRANSACTION_ID_DESC', + StakingEventsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationAmountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationAmountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_AMOUNT_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationDatetimeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationDatetimeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationEventIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationEventIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationNominatedValidatorsAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NOMINATED_VALIDATORS_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationNominatedValidatorsDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NOMINATED_VALIDATORS_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationStashAccountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STASH_ACCOUNT_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationStashAccountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STASH_ACCOUNT_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationTransactionIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationTransactionIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + StakingEventsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdStddevSampleAmountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_ASC', + StakingEventsByUpdatedBlockIdStddevSampleAmountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_AMOUNT_DESC', + StakingEventsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StakingEventsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StakingEventsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + StakingEventsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + StakingEventsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdStddevSampleDatetimeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + StakingEventsByUpdatedBlockIdStddevSampleDatetimeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + StakingEventsByUpdatedBlockIdStddevSampleEventIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + StakingEventsByUpdatedBlockIdStddevSampleEventIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + StakingEventsByUpdatedBlockIdStddevSampleIdentityIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + StakingEventsByUpdatedBlockIdStddevSampleIdentityIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + StakingEventsByUpdatedBlockIdStddevSampleIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + StakingEventsByUpdatedBlockIdStddevSampleIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + StakingEventsByUpdatedBlockIdStddevSampleNominatedValidatorsAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NOMINATED_VALIDATORS_ASC', + StakingEventsByUpdatedBlockIdStddevSampleNominatedValidatorsDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NOMINATED_VALIDATORS_DESC', + StakingEventsByUpdatedBlockIdStddevSampleStashAccountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STASH_ACCOUNT_ASC', + StakingEventsByUpdatedBlockIdStddevSampleStashAccountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STASH_ACCOUNT_DESC', + StakingEventsByUpdatedBlockIdStddevSampleTransactionIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + StakingEventsByUpdatedBlockIdStddevSampleTransactionIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + StakingEventsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdSumAmountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_ASC', + StakingEventsByUpdatedBlockIdSumAmountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_AMOUNT_DESC', + StakingEventsByUpdatedBlockIdSumBlockRangeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + StakingEventsByUpdatedBlockIdSumBlockRangeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + StakingEventsByUpdatedBlockIdSumCreatedAtAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + StakingEventsByUpdatedBlockIdSumCreatedAtDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + StakingEventsByUpdatedBlockIdSumCreatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdSumCreatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdSumDatetimeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + StakingEventsByUpdatedBlockIdSumDatetimeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + StakingEventsByUpdatedBlockIdSumEventIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_ASC', + StakingEventsByUpdatedBlockIdSumEventIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_DESC', + StakingEventsByUpdatedBlockIdSumIdentityIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + StakingEventsByUpdatedBlockIdSumIdentityIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + StakingEventsByUpdatedBlockIdSumIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + StakingEventsByUpdatedBlockIdSumIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + StakingEventsByUpdatedBlockIdSumNominatedValidatorsAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_NOMINATED_VALIDATORS_ASC', + StakingEventsByUpdatedBlockIdSumNominatedValidatorsDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_NOMINATED_VALIDATORS_DESC', + StakingEventsByUpdatedBlockIdSumStashAccountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_STASH_ACCOUNT_ASC', + StakingEventsByUpdatedBlockIdSumStashAccountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_STASH_ACCOUNT_DESC', + StakingEventsByUpdatedBlockIdSumTransactionIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_TRANSACTION_ID_ASC', + StakingEventsByUpdatedBlockIdSumTransactionIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_TRANSACTION_ID_DESC', + StakingEventsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationAmountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationAmountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_AMOUNT_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationDatetimeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationDatetimeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationEventIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationEventIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationNominatedValidatorsAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NOMINATED_VALIDATORS_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationNominatedValidatorsDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NOMINATED_VALIDATORS_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationStashAccountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STASH_ACCOUNT_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationStashAccountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STASH_ACCOUNT_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationTransactionIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationTransactionIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + StakingEventsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleAmountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleAmountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleDatetimeAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleDatetimeDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleEventIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleEventIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleNominatedValidatorsAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NOMINATED_VALIDATORS_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleNominatedValidatorsDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NOMINATED_VALIDATORS_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleStashAccountAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STASH_ACCOUNT_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleStashAccountDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STASH_ACCOUNT_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleTransactionIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleTransactionIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + StakingEventsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StakingEventsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'STAKING_EVENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StateRootAsc = 'STATE_ROOT_ASC', + StateRootDesc = 'STATE_ROOT_DESC', + StatTypesByCreatedBlockIdAverageAssetIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + StatTypesByCreatedBlockIdAverageAssetIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + StatTypesByCreatedBlockIdAverageBlockRangeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + StatTypesByCreatedBlockIdAverageBlockRangeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + StatTypesByCreatedBlockIdAverageClaimIssuerIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_ISSUER_ID_ASC', + StatTypesByCreatedBlockIdAverageClaimIssuerIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_ISSUER_ID_DESC', + StatTypesByCreatedBlockIdAverageClaimTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_ASC', + StatTypesByCreatedBlockIdAverageClaimTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_DESC', + StatTypesByCreatedBlockIdAverageCreatedAtAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + StatTypesByCreatedBlockIdAverageCreatedAtDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + StatTypesByCreatedBlockIdAverageCreatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdAverageCreatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdAverageCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByCreatedBlockIdAverageCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByCreatedBlockIdAverageIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + StatTypesByCreatedBlockIdAverageIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + StatTypesByCreatedBlockIdAverageOpTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_OP_TYPE_ASC', + StatTypesByCreatedBlockIdAverageOpTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_OP_TYPE_DESC', + StatTypesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdCountAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_COUNT_ASC', + StatTypesByCreatedBlockIdCountDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_COUNT_DESC', + StatTypesByCreatedBlockIdDistinctCountAssetIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + StatTypesByCreatedBlockIdDistinctCountAssetIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + StatTypesByCreatedBlockIdDistinctCountBlockRangeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StatTypesByCreatedBlockIdDistinctCountBlockRangeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StatTypesByCreatedBlockIdDistinctCountClaimIssuerIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_ASC', + StatTypesByCreatedBlockIdDistinctCountClaimIssuerIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_DESC', + StatTypesByCreatedBlockIdDistinctCountClaimTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_ASC', + StatTypesByCreatedBlockIdDistinctCountClaimTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_DESC', + StatTypesByCreatedBlockIdDistinctCountCreatedAtAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + StatTypesByCreatedBlockIdDistinctCountCreatedAtDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + StatTypesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdDistinctCountCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByCreatedBlockIdDistinctCountCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByCreatedBlockIdDistinctCountIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + StatTypesByCreatedBlockIdDistinctCountIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + StatTypesByCreatedBlockIdDistinctCountOpTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OP_TYPE_ASC', + StatTypesByCreatedBlockIdDistinctCountOpTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OP_TYPE_DESC', + StatTypesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdMaxAssetIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + StatTypesByCreatedBlockIdMaxAssetIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + StatTypesByCreatedBlockIdMaxBlockRangeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + StatTypesByCreatedBlockIdMaxBlockRangeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + StatTypesByCreatedBlockIdMaxClaimIssuerIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_CLAIM_ISSUER_ID_ASC', + StatTypesByCreatedBlockIdMaxClaimIssuerIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_CLAIM_ISSUER_ID_DESC', + StatTypesByCreatedBlockIdMaxClaimTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_CLAIM_TYPE_ASC', + StatTypesByCreatedBlockIdMaxClaimTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_CLAIM_TYPE_DESC', + StatTypesByCreatedBlockIdMaxCreatedAtAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + StatTypesByCreatedBlockIdMaxCreatedAtDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + StatTypesByCreatedBlockIdMaxCreatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdMaxCreatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdMaxCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByCreatedBlockIdMaxCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByCreatedBlockIdMaxIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + StatTypesByCreatedBlockIdMaxIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + StatTypesByCreatedBlockIdMaxOpTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_OP_TYPE_ASC', + StatTypesByCreatedBlockIdMaxOpTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_OP_TYPE_DESC', + StatTypesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdMinAssetIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + StatTypesByCreatedBlockIdMinAssetIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + StatTypesByCreatedBlockIdMinBlockRangeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + StatTypesByCreatedBlockIdMinBlockRangeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + StatTypesByCreatedBlockIdMinClaimIssuerIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_CLAIM_ISSUER_ID_ASC', + StatTypesByCreatedBlockIdMinClaimIssuerIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_CLAIM_ISSUER_ID_DESC', + StatTypesByCreatedBlockIdMinClaimTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_CLAIM_TYPE_ASC', + StatTypesByCreatedBlockIdMinClaimTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_CLAIM_TYPE_DESC', + StatTypesByCreatedBlockIdMinCreatedAtAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + StatTypesByCreatedBlockIdMinCreatedAtDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + StatTypesByCreatedBlockIdMinCreatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdMinCreatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdMinCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByCreatedBlockIdMinCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByCreatedBlockIdMinIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + StatTypesByCreatedBlockIdMinIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + StatTypesByCreatedBlockIdMinOpTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_OP_TYPE_ASC', + StatTypesByCreatedBlockIdMinOpTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_OP_TYPE_DESC', + StatTypesByCreatedBlockIdMinUpdatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdMinUpdatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdStddevPopulationAssetIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + StatTypesByCreatedBlockIdStddevPopulationAssetIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + StatTypesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StatTypesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StatTypesByCreatedBlockIdStddevPopulationClaimIssuerIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_ASC', + StatTypesByCreatedBlockIdStddevPopulationClaimIssuerIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_DESC', + StatTypesByCreatedBlockIdStddevPopulationClaimTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_ASC', + StatTypesByCreatedBlockIdStddevPopulationClaimTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_DESC', + StatTypesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + StatTypesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + StatTypesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdStddevPopulationCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByCreatedBlockIdStddevPopulationCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByCreatedBlockIdStddevPopulationIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + StatTypesByCreatedBlockIdStddevPopulationIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + StatTypesByCreatedBlockIdStddevPopulationOpTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OP_TYPE_ASC', + StatTypesByCreatedBlockIdStddevPopulationOpTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OP_TYPE_DESC', + StatTypesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdStddevSampleAssetIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + StatTypesByCreatedBlockIdStddevSampleAssetIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + StatTypesByCreatedBlockIdStddevSampleBlockRangeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StatTypesByCreatedBlockIdStddevSampleBlockRangeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StatTypesByCreatedBlockIdStddevSampleClaimIssuerIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_ASC', + StatTypesByCreatedBlockIdStddevSampleClaimIssuerIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_DESC', + StatTypesByCreatedBlockIdStddevSampleClaimTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + StatTypesByCreatedBlockIdStddevSampleClaimTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + StatTypesByCreatedBlockIdStddevSampleCreatedAtAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + StatTypesByCreatedBlockIdStddevSampleCreatedAtDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + StatTypesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdStddevSampleCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByCreatedBlockIdStddevSampleCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByCreatedBlockIdStddevSampleIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + StatTypesByCreatedBlockIdStddevSampleIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + StatTypesByCreatedBlockIdStddevSampleOpTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OP_TYPE_ASC', + StatTypesByCreatedBlockIdStddevSampleOpTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OP_TYPE_DESC', + StatTypesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdSumAssetIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + StatTypesByCreatedBlockIdSumAssetIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + StatTypesByCreatedBlockIdSumBlockRangeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + StatTypesByCreatedBlockIdSumBlockRangeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + StatTypesByCreatedBlockIdSumClaimIssuerIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_CLAIM_ISSUER_ID_ASC', + StatTypesByCreatedBlockIdSumClaimIssuerIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_CLAIM_ISSUER_ID_DESC', + StatTypesByCreatedBlockIdSumClaimTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_CLAIM_TYPE_ASC', + StatTypesByCreatedBlockIdSumClaimTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_CLAIM_TYPE_DESC', + StatTypesByCreatedBlockIdSumCreatedAtAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + StatTypesByCreatedBlockIdSumCreatedAtDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + StatTypesByCreatedBlockIdSumCreatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdSumCreatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdSumCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByCreatedBlockIdSumCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByCreatedBlockIdSumIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + StatTypesByCreatedBlockIdSumIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + StatTypesByCreatedBlockIdSumOpTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_OP_TYPE_ASC', + StatTypesByCreatedBlockIdSumOpTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_OP_TYPE_DESC', + StatTypesByCreatedBlockIdSumUpdatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdSumUpdatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdVariancePopulationAssetIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + StatTypesByCreatedBlockIdVariancePopulationAssetIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + StatTypesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StatTypesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StatTypesByCreatedBlockIdVariancePopulationClaimIssuerIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_ASC', + StatTypesByCreatedBlockIdVariancePopulationClaimIssuerIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_DESC', + StatTypesByCreatedBlockIdVariancePopulationClaimTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + StatTypesByCreatedBlockIdVariancePopulationClaimTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + StatTypesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + StatTypesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + StatTypesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdVariancePopulationCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByCreatedBlockIdVariancePopulationCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByCreatedBlockIdVariancePopulationIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + StatTypesByCreatedBlockIdVariancePopulationIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + StatTypesByCreatedBlockIdVariancePopulationOpTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OP_TYPE_ASC', + StatTypesByCreatedBlockIdVariancePopulationOpTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OP_TYPE_DESC', + StatTypesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdVarianceSampleAssetIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + StatTypesByCreatedBlockIdVarianceSampleAssetIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + StatTypesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StatTypesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StatTypesByCreatedBlockIdVarianceSampleClaimIssuerIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_ASC', + StatTypesByCreatedBlockIdVarianceSampleClaimIssuerIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_DESC', + StatTypesByCreatedBlockIdVarianceSampleClaimTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + StatTypesByCreatedBlockIdVarianceSampleClaimTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + StatTypesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + StatTypesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + StatTypesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StatTypesByCreatedBlockIdVarianceSampleCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByCreatedBlockIdVarianceSampleCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByCreatedBlockIdVarianceSampleIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + StatTypesByCreatedBlockIdVarianceSampleIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + StatTypesByCreatedBlockIdVarianceSampleOpTypeAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OP_TYPE_ASC', + StatTypesByCreatedBlockIdVarianceSampleOpTypeDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OP_TYPE_DESC', + StatTypesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StatTypesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'STAT_TYPES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdAverageAssetIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + StatTypesByUpdatedBlockIdAverageAssetIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + StatTypesByUpdatedBlockIdAverageBlockRangeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + StatTypesByUpdatedBlockIdAverageBlockRangeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + StatTypesByUpdatedBlockIdAverageClaimIssuerIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_ISSUER_ID_ASC', + StatTypesByUpdatedBlockIdAverageClaimIssuerIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_ISSUER_ID_DESC', + StatTypesByUpdatedBlockIdAverageClaimTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_ASC', + StatTypesByUpdatedBlockIdAverageClaimTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_DESC', + StatTypesByUpdatedBlockIdAverageCreatedAtAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + StatTypesByUpdatedBlockIdAverageCreatedAtDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + StatTypesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdAverageCustomClaimTypeIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByUpdatedBlockIdAverageCustomClaimTypeIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByUpdatedBlockIdAverageIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + StatTypesByUpdatedBlockIdAverageIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + StatTypesByUpdatedBlockIdAverageOpTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_OP_TYPE_ASC', + StatTypesByUpdatedBlockIdAverageOpTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_OP_TYPE_DESC', + StatTypesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdCountAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + StatTypesByUpdatedBlockIdCountDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + StatTypesByUpdatedBlockIdDistinctCountAssetIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + StatTypesByUpdatedBlockIdDistinctCountAssetIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + StatTypesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StatTypesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StatTypesByUpdatedBlockIdDistinctCountClaimIssuerIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_ASC', + StatTypesByUpdatedBlockIdDistinctCountClaimIssuerIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_DESC', + StatTypesByUpdatedBlockIdDistinctCountClaimTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_ASC', + StatTypesByUpdatedBlockIdDistinctCountClaimTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_DESC', + StatTypesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + StatTypesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + StatTypesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdDistinctCountCustomClaimTypeIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByUpdatedBlockIdDistinctCountCustomClaimTypeIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByUpdatedBlockIdDistinctCountIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + StatTypesByUpdatedBlockIdDistinctCountIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + StatTypesByUpdatedBlockIdDistinctCountOpTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OP_TYPE_ASC', + StatTypesByUpdatedBlockIdDistinctCountOpTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OP_TYPE_DESC', + StatTypesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdMaxAssetIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + StatTypesByUpdatedBlockIdMaxAssetIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + StatTypesByUpdatedBlockIdMaxBlockRangeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + StatTypesByUpdatedBlockIdMaxBlockRangeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + StatTypesByUpdatedBlockIdMaxClaimIssuerIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_CLAIM_ISSUER_ID_ASC', + StatTypesByUpdatedBlockIdMaxClaimIssuerIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_CLAIM_ISSUER_ID_DESC', + StatTypesByUpdatedBlockIdMaxClaimTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_CLAIM_TYPE_ASC', + StatTypesByUpdatedBlockIdMaxClaimTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_CLAIM_TYPE_DESC', + StatTypesByUpdatedBlockIdMaxCreatedAtAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + StatTypesByUpdatedBlockIdMaxCreatedAtDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + StatTypesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdMaxCustomClaimTypeIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByUpdatedBlockIdMaxCustomClaimTypeIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByUpdatedBlockIdMaxIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + StatTypesByUpdatedBlockIdMaxIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + StatTypesByUpdatedBlockIdMaxOpTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_OP_TYPE_ASC', + StatTypesByUpdatedBlockIdMaxOpTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_OP_TYPE_DESC', + StatTypesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdMinAssetIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + StatTypesByUpdatedBlockIdMinAssetIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + StatTypesByUpdatedBlockIdMinBlockRangeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + StatTypesByUpdatedBlockIdMinBlockRangeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + StatTypesByUpdatedBlockIdMinClaimIssuerIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_CLAIM_ISSUER_ID_ASC', + StatTypesByUpdatedBlockIdMinClaimIssuerIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_CLAIM_ISSUER_ID_DESC', + StatTypesByUpdatedBlockIdMinClaimTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_CLAIM_TYPE_ASC', + StatTypesByUpdatedBlockIdMinClaimTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_CLAIM_TYPE_DESC', + StatTypesByUpdatedBlockIdMinCreatedAtAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + StatTypesByUpdatedBlockIdMinCreatedAtDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + StatTypesByUpdatedBlockIdMinCreatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdMinCreatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdMinCustomClaimTypeIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByUpdatedBlockIdMinCustomClaimTypeIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByUpdatedBlockIdMinIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + StatTypesByUpdatedBlockIdMinIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + StatTypesByUpdatedBlockIdMinOpTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_OP_TYPE_ASC', + StatTypesByUpdatedBlockIdMinOpTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_OP_TYPE_DESC', + StatTypesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdStddevPopulationAssetIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + StatTypesByUpdatedBlockIdStddevPopulationAssetIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + StatTypesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StatTypesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StatTypesByUpdatedBlockIdStddevPopulationClaimIssuerIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_ASC', + StatTypesByUpdatedBlockIdStddevPopulationClaimIssuerIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_DESC', + StatTypesByUpdatedBlockIdStddevPopulationClaimTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_ASC', + StatTypesByUpdatedBlockIdStddevPopulationClaimTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_DESC', + StatTypesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + StatTypesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + StatTypesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdStddevPopulationCustomClaimTypeIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByUpdatedBlockIdStddevPopulationCustomClaimTypeIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByUpdatedBlockIdStddevPopulationIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + StatTypesByUpdatedBlockIdStddevPopulationIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + StatTypesByUpdatedBlockIdStddevPopulationOpTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OP_TYPE_ASC', + StatTypesByUpdatedBlockIdStddevPopulationOpTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OP_TYPE_DESC', + StatTypesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdStddevSampleAssetIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + StatTypesByUpdatedBlockIdStddevSampleAssetIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + StatTypesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StatTypesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StatTypesByUpdatedBlockIdStddevSampleClaimIssuerIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_ASC', + StatTypesByUpdatedBlockIdStddevSampleClaimIssuerIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_DESC', + StatTypesByUpdatedBlockIdStddevSampleClaimTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + StatTypesByUpdatedBlockIdStddevSampleClaimTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + StatTypesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + StatTypesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + StatTypesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdStddevSampleCustomClaimTypeIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByUpdatedBlockIdStddevSampleCustomClaimTypeIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByUpdatedBlockIdStddevSampleIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + StatTypesByUpdatedBlockIdStddevSampleIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + StatTypesByUpdatedBlockIdStddevSampleOpTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OP_TYPE_ASC', + StatTypesByUpdatedBlockIdStddevSampleOpTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OP_TYPE_DESC', + StatTypesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdSumAssetIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + StatTypesByUpdatedBlockIdSumAssetIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + StatTypesByUpdatedBlockIdSumBlockRangeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + StatTypesByUpdatedBlockIdSumBlockRangeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + StatTypesByUpdatedBlockIdSumClaimIssuerIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_CLAIM_ISSUER_ID_ASC', + StatTypesByUpdatedBlockIdSumClaimIssuerIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_CLAIM_ISSUER_ID_DESC', + StatTypesByUpdatedBlockIdSumClaimTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_CLAIM_TYPE_ASC', + StatTypesByUpdatedBlockIdSumClaimTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_CLAIM_TYPE_DESC', + StatTypesByUpdatedBlockIdSumCreatedAtAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + StatTypesByUpdatedBlockIdSumCreatedAtDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + StatTypesByUpdatedBlockIdSumCreatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdSumCreatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdSumCustomClaimTypeIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByUpdatedBlockIdSumCustomClaimTypeIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByUpdatedBlockIdSumIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + StatTypesByUpdatedBlockIdSumIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + StatTypesByUpdatedBlockIdSumOpTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_OP_TYPE_ASC', + StatTypesByUpdatedBlockIdSumOpTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_OP_TYPE_DESC', + StatTypesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdVariancePopulationAssetIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + StatTypesByUpdatedBlockIdVariancePopulationAssetIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + StatTypesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StatTypesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StatTypesByUpdatedBlockIdVariancePopulationClaimIssuerIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_ASC', + StatTypesByUpdatedBlockIdVariancePopulationClaimIssuerIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_DESC', + StatTypesByUpdatedBlockIdVariancePopulationClaimTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + StatTypesByUpdatedBlockIdVariancePopulationClaimTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + StatTypesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + StatTypesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + StatTypesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdVariancePopulationCustomClaimTypeIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByUpdatedBlockIdVariancePopulationCustomClaimTypeIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByUpdatedBlockIdVariancePopulationIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + StatTypesByUpdatedBlockIdVariancePopulationIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + StatTypesByUpdatedBlockIdVariancePopulationOpTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OP_TYPE_ASC', + StatTypesByUpdatedBlockIdVariancePopulationOpTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OP_TYPE_DESC', + StatTypesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdVarianceSampleAssetIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + StatTypesByUpdatedBlockIdVarianceSampleAssetIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + StatTypesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StatTypesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StatTypesByUpdatedBlockIdVarianceSampleClaimIssuerIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_ASC', + StatTypesByUpdatedBlockIdVarianceSampleClaimIssuerIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_DESC', + StatTypesByUpdatedBlockIdVarianceSampleClaimTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + StatTypesByUpdatedBlockIdVarianceSampleClaimTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + StatTypesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + StatTypesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + StatTypesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StatTypesByUpdatedBlockIdVarianceSampleCustomClaimTypeIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByUpdatedBlockIdVarianceSampleCustomClaimTypeIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByUpdatedBlockIdVarianceSampleIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + StatTypesByUpdatedBlockIdVarianceSampleIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + StatTypesByUpdatedBlockIdVarianceSampleOpTypeAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OP_TYPE_ASC', + StatTypesByUpdatedBlockIdVarianceSampleOpTypeDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OP_TYPE_DESC', + StatTypesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StatTypesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'STAT_TYPES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByCreatedBlockIdAverageBlockRangeAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + StosByCreatedBlockIdAverageBlockRangeDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + StosByCreatedBlockIdAverageCreatedAtAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + StosByCreatedBlockIdAverageCreatedAtDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + StosByCreatedBlockIdAverageCreatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + StosByCreatedBlockIdAverageCreatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + StosByCreatedBlockIdAverageCreatorIdAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + StosByCreatedBlockIdAverageCreatorIdDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + StosByCreatedBlockIdAverageEndAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_END_ASC', + StosByCreatedBlockIdAverageEndDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_END_DESC', + StosByCreatedBlockIdAverageIdAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + StosByCreatedBlockIdAverageIdDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + StosByCreatedBlockIdAverageMinimumInvestmentAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_MINIMUM_INVESTMENT_ASC', + StosByCreatedBlockIdAverageMinimumInvestmentDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_MINIMUM_INVESTMENT_DESC', + StosByCreatedBlockIdAverageNameAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_NAME_ASC', + StosByCreatedBlockIdAverageNameDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_NAME_DESC', + StosByCreatedBlockIdAverageOfferingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_OFFERING_ASSET_ID_ASC', + StosByCreatedBlockIdAverageOfferingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_OFFERING_ASSET_ID_DESC', + StosByCreatedBlockIdAverageOfferingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdAverageOfferingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdAverageRaisingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_RAISING_ASSET_ID_ASC', + StosByCreatedBlockIdAverageRaisingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_RAISING_ASSET_ID_DESC', + StosByCreatedBlockIdAverageRaisingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_RAISING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdAverageRaisingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_RAISING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdAverageRaisingTickerAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_RAISING_TICKER_ASC', + StosByCreatedBlockIdAverageRaisingTickerDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_RAISING_TICKER_DESC', + StosByCreatedBlockIdAverageStartAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_START_ASC', + StosByCreatedBlockIdAverageStartDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_START_DESC', + StosByCreatedBlockIdAverageStatusAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_ASC', + StosByCreatedBlockIdAverageStatusDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_STATUS_DESC', + StosByCreatedBlockIdAverageStoIdAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_STO_ID_ASC', + StosByCreatedBlockIdAverageStoIdDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_STO_ID_DESC', + StosByCreatedBlockIdAverageTiersAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_TIERS_ASC', + StosByCreatedBlockIdAverageTiersDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_TIERS_DESC', + StosByCreatedBlockIdAverageUpdatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + StosByCreatedBlockIdAverageUpdatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + StosByCreatedBlockIdAverageVenueIdAsc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_VENUE_ID_ASC', + StosByCreatedBlockIdAverageVenueIdDesc = 'STOS_BY_CREATED_BLOCK_ID_AVERAGE_VENUE_ID_DESC', + StosByCreatedBlockIdCountAsc = 'STOS_BY_CREATED_BLOCK_ID_COUNT_ASC', + StosByCreatedBlockIdCountDesc = 'STOS_BY_CREATED_BLOCK_ID_COUNT_DESC', + StosByCreatedBlockIdDistinctCountBlockRangeAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StosByCreatedBlockIdDistinctCountBlockRangeDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StosByCreatedBlockIdDistinctCountCreatedAtAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + StosByCreatedBlockIdDistinctCountCreatedAtDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + StosByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StosByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StosByCreatedBlockIdDistinctCountCreatorIdAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + StosByCreatedBlockIdDistinctCountCreatorIdDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + StosByCreatedBlockIdDistinctCountEndAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_END_ASC', + StosByCreatedBlockIdDistinctCountEndDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_END_DESC', + StosByCreatedBlockIdDistinctCountIdAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + StosByCreatedBlockIdDistinctCountIdDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + StosByCreatedBlockIdDistinctCountMinimumInvestmentAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_ASC', + StosByCreatedBlockIdDistinctCountMinimumInvestmentDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_DESC', + StosByCreatedBlockIdDistinctCountNameAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC', + StosByCreatedBlockIdDistinctCountNameDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC', + StosByCreatedBlockIdDistinctCountOfferingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_ASC', + StosByCreatedBlockIdDistinctCountOfferingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_DESC', + StosByCreatedBlockIdDistinctCountOfferingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdDistinctCountOfferingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdDistinctCountRaisingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISING_ASSET_ID_ASC', + StosByCreatedBlockIdDistinctCountRaisingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISING_ASSET_ID_DESC', + StosByCreatedBlockIdDistinctCountRaisingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdDistinctCountRaisingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdDistinctCountRaisingTickerAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISING_TICKER_ASC', + StosByCreatedBlockIdDistinctCountRaisingTickerDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_RAISING_TICKER_DESC', + StosByCreatedBlockIdDistinctCountStartAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_START_ASC', + StosByCreatedBlockIdDistinctCountStartDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_START_DESC', + StosByCreatedBlockIdDistinctCountStatusAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + StosByCreatedBlockIdDistinctCountStatusDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + StosByCreatedBlockIdDistinctCountStoIdAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STO_ID_ASC', + StosByCreatedBlockIdDistinctCountStoIdDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STO_ID_DESC', + StosByCreatedBlockIdDistinctCountTiersAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TIERS_ASC', + StosByCreatedBlockIdDistinctCountTiersDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TIERS_DESC', + StosByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StosByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StosByCreatedBlockIdDistinctCountVenueIdAsc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_ASC', + StosByCreatedBlockIdDistinctCountVenueIdDesc = 'STOS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_DESC', + StosByCreatedBlockIdMaxBlockRangeAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + StosByCreatedBlockIdMaxBlockRangeDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + StosByCreatedBlockIdMaxCreatedAtAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + StosByCreatedBlockIdMaxCreatedAtDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + StosByCreatedBlockIdMaxCreatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + StosByCreatedBlockIdMaxCreatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + StosByCreatedBlockIdMaxCreatorIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + StosByCreatedBlockIdMaxCreatorIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + StosByCreatedBlockIdMaxEndAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_END_ASC', + StosByCreatedBlockIdMaxEndDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_END_DESC', + StosByCreatedBlockIdMaxIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + StosByCreatedBlockIdMaxIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + StosByCreatedBlockIdMaxMinimumInvestmentAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_MINIMUM_INVESTMENT_ASC', + StosByCreatedBlockIdMaxMinimumInvestmentDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_MINIMUM_INVESTMENT_DESC', + StosByCreatedBlockIdMaxNameAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_NAME_ASC', + StosByCreatedBlockIdMaxNameDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_NAME_DESC', + StosByCreatedBlockIdMaxOfferingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_OFFERING_ASSET_ID_ASC', + StosByCreatedBlockIdMaxOfferingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_OFFERING_ASSET_ID_DESC', + StosByCreatedBlockIdMaxOfferingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdMaxOfferingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdMaxRaisingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_RAISING_ASSET_ID_ASC', + StosByCreatedBlockIdMaxRaisingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_RAISING_ASSET_ID_DESC', + StosByCreatedBlockIdMaxRaisingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_RAISING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdMaxRaisingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_RAISING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdMaxRaisingTickerAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_RAISING_TICKER_ASC', + StosByCreatedBlockIdMaxRaisingTickerDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_RAISING_TICKER_DESC', + StosByCreatedBlockIdMaxStartAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_START_ASC', + StosByCreatedBlockIdMaxStartDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_START_DESC', + StosByCreatedBlockIdMaxStatusAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_STATUS_ASC', + StosByCreatedBlockIdMaxStatusDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_STATUS_DESC', + StosByCreatedBlockIdMaxStoIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_STO_ID_ASC', + StosByCreatedBlockIdMaxStoIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_STO_ID_DESC', + StosByCreatedBlockIdMaxTiersAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_TIERS_ASC', + StosByCreatedBlockIdMaxTiersDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_TIERS_DESC', + StosByCreatedBlockIdMaxUpdatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + StosByCreatedBlockIdMaxUpdatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + StosByCreatedBlockIdMaxVenueIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MAX_VENUE_ID_ASC', + StosByCreatedBlockIdMaxVenueIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MAX_VENUE_ID_DESC', + StosByCreatedBlockIdMinBlockRangeAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + StosByCreatedBlockIdMinBlockRangeDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + StosByCreatedBlockIdMinCreatedAtAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + StosByCreatedBlockIdMinCreatedAtDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + StosByCreatedBlockIdMinCreatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + StosByCreatedBlockIdMinCreatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + StosByCreatedBlockIdMinCreatorIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + StosByCreatedBlockIdMinCreatorIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + StosByCreatedBlockIdMinEndAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_END_ASC', + StosByCreatedBlockIdMinEndDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_END_DESC', + StosByCreatedBlockIdMinIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + StosByCreatedBlockIdMinIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + StosByCreatedBlockIdMinMinimumInvestmentAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_MINIMUM_INVESTMENT_ASC', + StosByCreatedBlockIdMinMinimumInvestmentDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_MINIMUM_INVESTMENT_DESC', + StosByCreatedBlockIdMinNameAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_NAME_ASC', + StosByCreatedBlockIdMinNameDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_NAME_DESC', + StosByCreatedBlockIdMinOfferingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_OFFERING_ASSET_ID_ASC', + StosByCreatedBlockIdMinOfferingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_OFFERING_ASSET_ID_DESC', + StosByCreatedBlockIdMinOfferingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdMinOfferingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdMinRaisingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_RAISING_ASSET_ID_ASC', + StosByCreatedBlockIdMinRaisingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_RAISING_ASSET_ID_DESC', + StosByCreatedBlockIdMinRaisingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_RAISING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdMinRaisingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_RAISING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdMinRaisingTickerAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_RAISING_TICKER_ASC', + StosByCreatedBlockIdMinRaisingTickerDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_RAISING_TICKER_DESC', + StosByCreatedBlockIdMinStartAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_START_ASC', + StosByCreatedBlockIdMinStartDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_START_DESC', + StosByCreatedBlockIdMinStatusAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_STATUS_ASC', + StosByCreatedBlockIdMinStatusDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_STATUS_DESC', + StosByCreatedBlockIdMinStoIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_STO_ID_ASC', + StosByCreatedBlockIdMinStoIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_STO_ID_DESC', + StosByCreatedBlockIdMinTiersAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_TIERS_ASC', + StosByCreatedBlockIdMinTiersDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_TIERS_DESC', + StosByCreatedBlockIdMinUpdatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + StosByCreatedBlockIdMinUpdatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + StosByCreatedBlockIdMinVenueIdAsc = 'STOS_BY_CREATED_BLOCK_ID_MIN_VENUE_ID_ASC', + StosByCreatedBlockIdMinVenueIdDesc = 'STOS_BY_CREATED_BLOCK_ID_MIN_VENUE_ID_DESC', + StosByCreatedBlockIdStddevPopulationBlockRangeAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StosByCreatedBlockIdStddevPopulationBlockRangeDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StosByCreatedBlockIdStddevPopulationCreatedAtAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + StosByCreatedBlockIdStddevPopulationCreatedAtDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + StosByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StosByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StosByCreatedBlockIdStddevPopulationCreatorIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + StosByCreatedBlockIdStddevPopulationCreatorIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + StosByCreatedBlockIdStddevPopulationEndAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_END_ASC', + StosByCreatedBlockIdStddevPopulationEndDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_END_DESC', + StosByCreatedBlockIdStddevPopulationIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + StosByCreatedBlockIdStddevPopulationIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + StosByCreatedBlockIdStddevPopulationMinimumInvestmentAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByCreatedBlockIdStddevPopulationMinimumInvestmentDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByCreatedBlockIdStddevPopulationNameAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC', + StosByCreatedBlockIdStddevPopulationNameDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC', + StosByCreatedBlockIdStddevPopulationOfferingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_ASC', + StosByCreatedBlockIdStddevPopulationOfferingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_DESC', + StosByCreatedBlockIdStddevPopulationOfferingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdStddevPopulationOfferingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdStddevPopulationRaisingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISING_ASSET_ID_ASC', + StosByCreatedBlockIdStddevPopulationRaisingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISING_ASSET_ID_DESC', + StosByCreatedBlockIdStddevPopulationRaisingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdStddevPopulationRaisingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdStddevPopulationRaisingTickerAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISING_TICKER_ASC', + StosByCreatedBlockIdStddevPopulationRaisingTickerDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_RAISING_TICKER_DESC', + StosByCreatedBlockIdStddevPopulationStartAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_START_ASC', + StosByCreatedBlockIdStddevPopulationStartDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_START_DESC', + StosByCreatedBlockIdStddevPopulationStatusAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + StosByCreatedBlockIdStddevPopulationStatusDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + StosByCreatedBlockIdStddevPopulationStoIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STO_ID_ASC', + StosByCreatedBlockIdStddevPopulationStoIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STO_ID_DESC', + StosByCreatedBlockIdStddevPopulationTiersAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TIERS_ASC', + StosByCreatedBlockIdStddevPopulationTiersDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TIERS_DESC', + StosByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByCreatedBlockIdStddevPopulationVenueIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_ASC', + StosByCreatedBlockIdStddevPopulationVenueIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_DESC', + StosByCreatedBlockIdStddevSampleBlockRangeAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StosByCreatedBlockIdStddevSampleBlockRangeDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StosByCreatedBlockIdStddevSampleCreatedAtAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + StosByCreatedBlockIdStddevSampleCreatedAtDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + StosByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByCreatedBlockIdStddevSampleCreatorIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + StosByCreatedBlockIdStddevSampleCreatorIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + StosByCreatedBlockIdStddevSampleEndAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_END_ASC', + StosByCreatedBlockIdStddevSampleEndDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_END_DESC', + StosByCreatedBlockIdStddevSampleIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + StosByCreatedBlockIdStddevSampleIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + StosByCreatedBlockIdStddevSampleMinimumInvestmentAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByCreatedBlockIdStddevSampleMinimumInvestmentDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByCreatedBlockIdStddevSampleNameAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC', + StosByCreatedBlockIdStddevSampleNameDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC', + StosByCreatedBlockIdStddevSampleOfferingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByCreatedBlockIdStddevSampleOfferingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByCreatedBlockIdStddevSampleOfferingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdStddevSampleOfferingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdStddevSampleRaisingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_ASC', + StosByCreatedBlockIdStddevSampleRaisingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_DESC', + StosByCreatedBlockIdStddevSampleRaisingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdStddevSampleRaisingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdStddevSampleRaisingTickerAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_TICKER_ASC', + StosByCreatedBlockIdStddevSampleRaisingTickerDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_TICKER_DESC', + StosByCreatedBlockIdStddevSampleStartAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_START_ASC', + StosByCreatedBlockIdStddevSampleStartDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_START_DESC', + StosByCreatedBlockIdStddevSampleStatusAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + StosByCreatedBlockIdStddevSampleStatusDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + StosByCreatedBlockIdStddevSampleStoIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STO_ID_ASC', + StosByCreatedBlockIdStddevSampleStoIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STO_ID_DESC', + StosByCreatedBlockIdStddevSampleTiersAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TIERS_ASC', + StosByCreatedBlockIdStddevSampleTiersDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TIERS_DESC', + StosByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByCreatedBlockIdStddevSampleVenueIdAsc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + StosByCreatedBlockIdStddevSampleVenueIdDesc = 'STOS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + StosByCreatedBlockIdSumBlockRangeAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + StosByCreatedBlockIdSumBlockRangeDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + StosByCreatedBlockIdSumCreatedAtAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + StosByCreatedBlockIdSumCreatedAtDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + StosByCreatedBlockIdSumCreatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + StosByCreatedBlockIdSumCreatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + StosByCreatedBlockIdSumCreatorIdAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + StosByCreatedBlockIdSumCreatorIdDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + StosByCreatedBlockIdSumEndAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_END_ASC', + StosByCreatedBlockIdSumEndDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_END_DESC', + StosByCreatedBlockIdSumIdAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + StosByCreatedBlockIdSumIdDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + StosByCreatedBlockIdSumMinimumInvestmentAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_MINIMUM_INVESTMENT_ASC', + StosByCreatedBlockIdSumMinimumInvestmentDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_MINIMUM_INVESTMENT_DESC', + StosByCreatedBlockIdSumNameAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_NAME_ASC', + StosByCreatedBlockIdSumNameDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_NAME_DESC', + StosByCreatedBlockIdSumOfferingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_OFFERING_ASSET_ID_ASC', + StosByCreatedBlockIdSumOfferingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_OFFERING_ASSET_ID_DESC', + StosByCreatedBlockIdSumOfferingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdSumOfferingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdSumRaisingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_RAISING_ASSET_ID_ASC', + StosByCreatedBlockIdSumRaisingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_RAISING_ASSET_ID_DESC', + StosByCreatedBlockIdSumRaisingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_RAISING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdSumRaisingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_RAISING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdSumRaisingTickerAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_RAISING_TICKER_ASC', + StosByCreatedBlockIdSumRaisingTickerDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_RAISING_TICKER_DESC', + StosByCreatedBlockIdSumStartAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_START_ASC', + StosByCreatedBlockIdSumStartDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_START_DESC', + StosByCreatedBlockIdSumStatusAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_STATUS_ASC', + StosByCreatedBlockIdSumStatusDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_STATUS_DESC', + StosByCreatedBlockIdSumStoIdAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_STO_ID_ASC', + StosByCreatedBlockIdSumStoIdDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_STO_ID_DESC', + StosByCreatedBlockIdSumTiersAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_TIERS_ASC', + StosByCreatedBlockIdSumTiersDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_TIERS_DESC', + StosByCreatedBlockIdSumUpdatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + StosByCreatedBlockIdSumUpdatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + StosByCreatedBlockIdSumVenueIdAsc = 'STOS_BY_CREATED_BLOCK_ID_SUM_VENUE_ID_ASC', + StosByCreatedBlockIdSumVenueIdDesc = 'STOS_BY_CREATED_BLOCK_ID_SUM_VENUE_ID_DESC', + StosByCreatedBlockIdVariancePopulationBlockRangeAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StosByCreatedBlockIdVariancePopulationBlockRangeDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StosByCreatedBlockIdVariancePopulationCreatedAtAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + StosByCreatedBlockIdVariancePopulationCreatedAtDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + StosByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StosByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StosByCreatedBlockIdVariancePopulationCreatorIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + StosByCreatedBlockIdVariancePopulationCreatorIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + StosByCreatedBlockIdVariancePopulationEndAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_END_ASC', + StosByCreatedBlockIdVariancePopulationEndDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_END_DESC', + StosByCreatedBlockIdVariancePopulationIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + StosByCreatedBlockIdVariancePopulationIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + StosByCreatedBlockIdVariancePopulationMinimumInvestmentAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByCreatedBlockIdVariancePopulationMinimumInvestmentDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByCreatedBlockIdVariancePopulationNameAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC', + StosByCreatedBlockIdVariancePopulationNameDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC', + StosByCreatedBlockIdVariancePopulationOfferingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_ASC', + StosByCreatedBlockIdVariancePopulationOfferingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_DESC', + StosByCreatedBlockIdVariancePopulationOfferingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdVariancePopulationOfferingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdVariancePopulationRaisingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_ASC', + StosByCreatedBlockIdVariancePopulationRaisingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_DESC', + StosByCreatedBlockIdVariancePopulationRaisingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdVariancePopulationRaisingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdVariancePopulationRaisingTickerAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_TICKER_ASC', + StosByCreatedBlockIdVariancePopulationRaisingTickerDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_TICKER_DESC', + StosByCreatedBlockIdVariancePopulationStartAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_START_ASC', + StosByCreatedBlockIdVariancePopulationStartDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_START_DESC', + StosByCreatedBlockIdVariancePopulationStatusAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + StosByCreatedBlockIdVariancePopulationStatusDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + StosByCreatedBlockIdVariancePopulationStoIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STO_ID_ASC', + StosByCreatedBlockIdVariancePopulationStoIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STO_ID_DESC', + StosByCreatedBlockIdVariancePopulationTiersAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TIERS_ASC', + StosByCreatedBlockIdVariancePopulationTiersDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TIERS_DESC', + StosByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByCreatedBlockIdVariancePopulationVenueIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + StosByCreatedBlockIdVariancePopulationVenueIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + StosByCreatedBlockIdVarianceSampleBlockRangeAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StosByCreatedBlockIdVarianceSampleBlockRangeDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StosByCreatedBlockIdVarianceSampleCreatedAtAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + StosByCreatedBlockIdVarianceSampleCreatedAtDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + StosByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByCreatedBlockIdVarianceSampleCreatorIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + StosByCreatedBlockIdVarianceSampleCreatorIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + StosByCreatedBlockIdVarianceSampleEndAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_END_ASC', + StosByCreatedBlockIdVarianceSampleEndDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_END_DESC', + StosByCreatedBlockIdVarianceSampleIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + StosByCreatedBlockIdVarianceSampleIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + StosByCreatedBlockIdVarianceSampleMinimumInvestmentAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByCreatedBlockIdVarianceSampleMinimumInvestmentDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByCreatedBlockIdVarianceSampleNameAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC', + StosByCreatedBlockIdVarianceSampleNameDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC', + StosByCreatedBlockIdVarianceSampleOfferingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByCreatedBlockIdVarianceSampleOfferingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByCreatedBlockIdVarianceSampleOfferingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdVarianceSampleOfferingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdVarianceSampleRaisingAssetIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_ASC', + StosByCreatedBlockIdVarianceSampleRaisingAssetIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_DESC', + StosByCreatedBlockIdVarianceSampleRaisingPortfolioIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByCreatedBlockIdVarianceSampleRaisingPortfolioIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByCreatedBlockIdVarianceSampleRaisingTickerAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_TICKER_ASC', + StosByCreatedBlockIdVarianceSampleRaisingTickerDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_TICKER_DESC', + StosByCreatedBlockIdVarianceSampleStartAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_START_ASC', + StosByCreatedBlockIdVarianceSampleStartDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_START_DESC', + StosByCreatedBlockIdVarianceSampleStatusAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + StosByCreatedBlockIdVarianceSampleStatusDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + StosByCreatedBlockIdVarianceSampleStoIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STO_ID_ASC', + StosByCreatedBlockIdVarianceSampleStoIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STO_ID_DESC', + StosByCreatedBlockIdVarianceSampleTiersAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TIERS_ASC', + StosByCreatedBlockIdVarianceSampleTiersDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TIERS_DESC', + StosByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByCreatedBlockIdVarianceSampleVenueIdAsc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + StosByCreatedBlockIdVarianceSampleVenueIdDesc = 'STOS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + StosByUpdatedBlockIdAverageBlockRangeAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + StosByUpdatedBlockIdAverageBlockRangeDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + StosByUpdatedBlockIdAverageCreatedAtAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + StosByUpdatedBlockIdAverageCreatedAtDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + StosByUpdatedBlockIdAverageCreatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdAverageCreatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdAverageCreatorIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_ASC', + StosByUpdatedBlockIdAverageCreatorIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATOR_ID_DESC', + StosByUpdatedBlockIdAverageEndAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_END_ASC', + StosByUpdatedBlockIdAverageEndDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_END_DESC', + StosByUpdatedBlockIdAverageIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + StosByUpdatedBlockIdAverageIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + StosByUpdatedBlockIdAverageMinimumInvestmentAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_MINIMUM_INVESTMENT_ASC', + StosByUpdatedBlockIdAverageMinimumInvestmentDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_MINIMUM_INVESTMENT_DESC', + StosByUpdatedBlockIdAverageNameAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_ASC', + StosByUpdatedBlockIdAverageNameDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_NAME_DESC', + StosByUpdatedBlockIdAverageOfferingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_OFFERING_ASSET_ID_ASC', + StosByUpdatedBlockIdAverageOfferingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_OFFERING_ASSET_ID_DESC', + StosByUpdatedBlockIdAverageOfferingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_OFFERING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdAverageOfferingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_OFFERING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdAverageRaisingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISING_ASSET_ID_ASC', + StosByUpdatedBlockIdAverageRaisingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISING_ASSET_ID_DESC', + StosByUpdatedBlockIdAverageRaisingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdAverageRaisingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdAverageRaisingTickerAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISING_TICKER_ASC', + StosByUpdatedBlockIdAverageRaisingTickerDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_RAISING_TICKER_DESC', + StosByUpdatedBlockIdAverageStartAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_START_ASC', + StosByUpdatedBlockIdAverageStartDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_START_DESC', + StosByUpdatedBlockIdAverageStatusAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_ASC', + StosByUpdatedBlockIdAverageStatusDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_STATUS_DESC', + StosByUpdatedBlockIdAverageStoIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_STO_ID_ASC', + StosByUpdatedBlockIdAverageStoIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_STO_ID_DESC', + StosByUpdatedBlockIdAverageTiersAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_TIERS_ASC', + StosByUpdatedBlockIdAverageTiersDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_TIERS_DESC', + StosByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdAverageVenueIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_VENUE_ID_ASC', + StosByUpdatedBlockIdAverageVenueIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_AVERAGE_VENUE_ID_DESC', + StosByUpdatedBlockIdCountAsc = 'STOS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + StosByUpdatedBlockIdCountDesc = 'STOS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + StosByUpdatedBlockIdDistinctCountBlockRangeAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StosByUpdatedBlockIdDistinctCountBlockRangeDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StosByUpdatedBlockIdDistinctCountCreatedAtAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + StosByUpdatedBlockIdDistinctCountCreatedAtDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + StosByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdDistinctCountCreatorIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + StosByUpdatedBlockIdDistinctCountCreatorIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + StosByUpdatedBlockIdDistinctCountEndAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_END_ASC', + StosByUpdatedBlockIdDistinctCountEndDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_END_DESC', + StosByUpdatedBlockIdDistinctCountIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + StosByUpdatedBlockIdDistinctCountIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + StosByUpdatedBlockIdDistinctCountMinimumInvestmentAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_ASC', + StosByUpdatedBlockIdDistinctCountMinimumInvestmentDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_DESC', + StosByUpdatedBlockIdDistinctCountNameAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_ASC', + StosByUpdatedBlockIdDistinctCountNameDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_NAME_DESC', + StosByUpdatedBlockIdDistinctCountOfferingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_ASC', + StosByUpdatedBlockIdDistinctCountOfferingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_DESC', + StosByUpdatedBlockIdDistinctCountOfferingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdDistinctCountOfferingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdDistinctCountRaisingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISING_ASSET_ID_ASC', + StosByUpdatedBlockIdDistinctCountRaisingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISING_ASSET_ID_DESC', + StosByUpdatedBlockIdDistinctCountRaisingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdDistinctCountRaisingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdDistinctCountRaisingTickerAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISING_TICKER_ASC', + StosByUpdatedBlockIdDistinctCountRaisingTickerDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_RAISING_TICKER_DESC', + StosByUpdatedBlockIdDistinctCountStartAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_START_ASC', + StosByUpdatedBlockIdDistinctCountStartDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_START_DESC', + StosByUpdatedBlockIdDistinctCountStatusAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_ASC', + StosByUpdatedBlockIdDistinctCountStatusDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STATUS_DESC', + StosByUpdatedBlockIdDistinctCountStoIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STO_ID_ASC', + StosByUpdatedBlockIdDistinctCountStoIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STO_ID_DESC', + StosByUpdatedBlockIdDistinctCountTiersAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TIERS_ASC', + StosByUpdatedBlockIdDistinctCountTiersDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TIERS_DESC', + StosByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdDistinctCountVenueIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_ASC', + StosByUpdatedBlockIdDistinctCountVenueIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VENUE_ID_DESC', + StosByUpdatedBlockIdMaxBlockRangeAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + StosByUpdatedBlockIdMaxBlockRangeDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + StosByUpdatedBlockIdMaxCreatedAtAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + StosByUpdatedBlockIdMaxCreatedAtDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + StosByUpdatedBlockIdMaxCreatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdMaxCreatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdMaxCreatorIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_ASC', + StosByUpdatedBlockIdMaxCreatorIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_CREATOR_ID_DESC', + StosByUpdatedBlockIdMaxEndAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_END_ASC', + StosByUpdatedBlockIdMaxEndDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_END_DESC', + StosByUpdatedBlockIdMaxIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + StosByUpdatedBlockIdMaxIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + StosByUpdatedBlockIdMaxMinimumInvestmentAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_MINIMUM_INVESTMENT_ASC', + StosByUpdatedBlockIdMaxMinimumInvestmentDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_MINIMUM_INVESTMENT_DESC', + StosByUpdatedBlockIdMaxNameAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_NAME_ASC', + StosByUpdatedBlockIdMaxNameDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_NAME_DESC', + StosByUpdatedBlockIdMaxOfferingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_OFFERING_ASSET_ID_ASC', + StosByUpdatedBlockIdMaxOfferingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_OFFERING_ASSET_ID_DESC', + StosByUpdatedBlockIdMaxOfferingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_OFFERING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdMaxOfferingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_OFFERING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdMaxRaisingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_RAISING_ASSET_ID_ASC', + StosByUpdatedBlockIdMaxRaisingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_RAISING_ASSET_ID_DESC', + StosByUpdatedBlockIdMaxRaisingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_RAISING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdMaxRaisingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_RAISING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdMaxRaisingTickerAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_RAISING_TICKER_ASC', + StosByUpdatedBlockIdMaxRaisingTickerDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_RAISING_TICKER_DESC', + StosByUpdatedBlockIdMaxStartAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_START_ASC', + StosByUpdatedBlockIdMaxStartDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_START_DESC', + StosByUpdatedBlockIdMaxStatusAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_STATUS_ASC', + StosByUpdatedBlockIdMaxStatusDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_STATUS_DESC', + StosByUpdatedBlockIdMaxStoIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_STO_ID_ASC', + StosByUpdatedBlockIdMaxStoIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_STO_ID_DESC', + StosByUpdatedBlockIdMaxTiersAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_TIERS_ASC', + StosByUpdatedBlockIdMaxTiersDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_TIERS_DESC', + StosByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdMaxVenueIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_VENUE_ID_ASC', + StosByUpdatedBlockIdMaxVenueIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MAX_VENUE_ID_DESC', + StosByUpdatedBlockIdMinBlockRangeAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + StosByUpdatedBlockIdMinBlockRangeDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + StosByUpdatedBlockIdMinCreatedAtAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + StosByUpdatedBlockIdMinCreatedAtDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + StosByUpdatedBlockIdMinCreatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdMinCreatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdMinCreatorIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_ASC', + StosByUpdatedBlockIdMinCreatorIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_CREATOR_ID_DESC', + StosByUpdatedBlockIdMinEndAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_END_ASC', + StosByUpdatedBlockIdMinEndDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_END_DESC', + StosByUpdatedBlockIdMinIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + StosByUpdatedBlockIdMinIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + StosByUpdatedBlockIdMinMinimumInvestmentAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_MINIMUM_INVESTMENT_ASC', + StosByUpdatedBlockIdMinMinimumInvestmentDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_MINIMUM_INVESTMENT_DESC', + StosByUpdatedBlockIdMinNameAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_NAME_ASC', + StosByUpdatedBlockIdMinNameDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_NAME_DESC', + StosByUpdatedBlockIdMinOfferingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_OFFERING_ASSET_ID_ASC', + StosByUpdatedBlockIdMinOfferingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_OFFERING_ASSET_ID_DESC', + StosByUpdatedBlockIdMinOfferingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_OFFERING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdMinOfferingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_OFFERING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdMinRaisingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_RAISING_ASSET_ID_ASC', + StosByUpdatedBlockIdMinRaisingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_RAISING_ASSET_ID_DESC', + StosByUpdatedBlockIdMinRaisingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_RAISING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdMinRaisingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_RAISING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdMinRaisingTickerAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_RAISING_TICKER_ASC', + StosByUpdatedBlockIdMinRaisingTickerDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_RAISING_TICKER_DESC', + StosByUpdatedBlockIdMinStartAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_START_ASC', + StosByUpdatedBlockIdMinStartDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_START_DESC', + StosByUpdatedBlockIdMinStatusAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_STATUS_ASC', + StosByUpdatedBlockIdMinStatusDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_STATUS_DESC', + StosByUpdatedBlockIdMinStoIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_STO_ID_ASC', + StosByUpdatedBlockIdMinStoIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_STO_ID_DESC', + StosByUpdatedBlockIdMinTiersAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_TIERS_ASC', + StosByUpdatedBlockIdMinTiersDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_TIERS_DESC', + StosByUpdatedBlockIdMinUpdatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdMinUpdatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdMinVenueIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_VENUE_ID_ASC', + StosByUpdatedBlockIdMinVenueIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_MIN_VENUE_ID_DESC', + StosByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StosByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StosByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + StosByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + StosByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdStddevPopulationCreatorIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + StosByUpdatedBlockIdStddevPopulationCreatorIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + StosByUpdatedBlockIdStddevPopulationEndAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_END_ASC', + StosByUpdatedBlockIdStddevPopulationEndDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_END_DESC', + StosByUpdatedBlockIdStddevPopulationIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + StosByUpdatedBlockIdStddevPopulationIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + StosByUpdatedBlockIdStddevPopulationMinimumInvestmentAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByUpdatedBlockIdStddevPopulationMinimumInvestmentDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByUpdatedBlockIdStddevPopulationNameAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_ASC', + StosByUpdatedBlockIdStddevPopulationNameDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_NAME_DESC', + StosByUpdatedBlockIdStddevPopulationOfferingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_ASC', + StosByUpdatedBlockIdStddevPopulationOfferingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_DESC', + StosByUpdatedBlockIdStddevPopulationOfferingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdStddevPopulationOfferingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdStddevPopulationRaisingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISING_ASSET_ID_ASC', + StosByUpdatedBlockIdStddevPopulationRaisingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISING_ASSET_ID_DESC', + StosByUpdatedBlockIdStddevPopulationRaisingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdStddevPopulationRaisingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdStddevPopulationRaisingTickerAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISING_TICKER_ASC', + StosByUpdatedBlockIdStddevPopulationRaisingTickerDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_RAISING_TICKER_DESC', + StosByUpdatedBlockIdStddevPopulationStartAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_START_ASC', + StosByUpdatedBlockIdStddevPopulationStartDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_START_DESC', + StosByUpdatedBlockIdStddevPopulationStatusAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_ASC', + StosByUpdatedBlockIdStddevPopulationStatusDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STATUS_DESC', + StosByUpdatedBlockIdStddevPopulationStoIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STO_ID_ASC', + StosByUpdatedBlockIdStddevPopulationStoIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STO_ID_DESC', + StosByUpdatedBlockIdStddevPopulationTiersAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TIERS_ASC', + StosByUpdatedBlockIdStddevPopulationTiersDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TIERS_DESC', + StosByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdStddevPopulationVenueIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_ASC', + StosByUpdatedBlockIdStddevPopulationVenueIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VENUE_ID_DESC', + StosByUpdatedBlockIdStddevSampleBlockRangeAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StosByUpdatedBlockIdStddevSampleBlockRangeDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StosByUpdatedBlockIdStddevSampleCreatedAtAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + StosByUpdatedBlockIdStddevSampleCreatedAtDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + StosByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdStddevSampleCreatorIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + StosByUpdatedBlockIdStddevSampleCreatorIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + StosByUpdatedBlockIdStddevSampleEndAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_END_ASC', + StosByUpdatedBlockIdStddevSampleEndDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_END_DESC', + StosByUpdatedBlockIdStddevSampleIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + StosByUpdatedBlockIdStddevSampleIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + StosByUpdatedBlockIdStddevSampleMinimumInvestmentAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByUpdatedBlockIdStddevSampleMinimumInvestmentDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByUpdatedBlockIdStddevSampleNameAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_ASC', + StosByUpdatedBlockIdStddevSampleNameDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_NAME_DESC', + StosByUpdatedBlockIdStddevSampleOfferingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByUpdatedBlockIdStddevSampleOfferingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByUpdatedBlockIdStddevSampleOfferingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdStddevSampleOfferingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdStddevSampleRaisingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_ASC', + StosByUpdatedBlockIdStddevSampleRaisingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_DESC', + StosByUpdatedBlockIdStddevSampleRaisingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdStddevSampleRaisingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdStddevSampleRaisingTickerAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_TICKER_ASC', + StosByUpdatedBlockIdStddevSampleRaisingTickerDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_RAISING_TICKER_DESC', + StosByUpdatedBlockIdStddevSampleStartAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_START_ASC', + StosByUpdatedBlockIdStddevSampleStartDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_START_DESC', + StosByUpdatedBlockIdStddevSampleStatusAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_ASC', + StosByUpdatedBlockIdStddevSampleStatusDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STATUS_DESC', + StosByUpdatedBlockIdStddevSampleStoIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STO_ID_ASC', + StosByUpdatedBlockIdStddevSampleStoIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STO_ID_DESC', + StosByUpdatedBlockIdStddevSampleTiersAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TIERS_ASC', + StosByUpdatedBlockIdStddevSampleTiersDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TIERS_DESC', + StosByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdStddevSampleVenueIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + StosByUpdatedBlockIdStddevSampleVenueIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + StosByUpdatedBlockIdSumBlockRangeAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + StosByUpdatedBlockIdSumBlockRangeDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + StosByUpdatedBlockIdSumCreatedAtAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + StosByUpdatedBlockIdSumCreatedAtDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + StosByUpdatedBlockIdSumCreatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdSumCreatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdSumCreatorIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_ASC', + StosByUpdatedBlockIdSumCreatorIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_CREATOR_ID_DESC', + StosByUpdatedBlockIdSumEndAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_END_ASC', + StosByUpdatedBlockIdSumEndDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_END_DESC', + StosByUpdatedBlockIdSumIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + StosByUpdatedBlockIdSumIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + StosByUpdatedBlockIdSumMinimumInvestmentAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_MINIMUM_INVESTMENT_ASC', + StosByUpdatedBlockIdSumMinimumInvestmentDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_MINIMUM_INVESTMENT_DESC', + StosByUpdatedBlockIdSumNameAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_NAME_ASC', + StosByUpdatedBlockIdSumNameDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_NAME_DESC', + StosByUpdatedBlockIdSumOfferingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_OFFERING_ASSET_ID_ASC', + StosByUpdatedBlockIdSumOfferingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_OFFERING_ASSET_ID_DESC', + StosByUpdatedBlockIdSumOfferingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_OFFERING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdSumOfferingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_OFFERING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdSumRaisingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_RAISING_ASSET_ID_ASC', + StosByUpdatedBlockIdSumRaisingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_RAISING_ASSET_ID_DESC', + StosByUpdatedBlockIdSumRaisingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_RAISING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdSumRaisingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_RAISING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdSumRaisingTickerAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_RAISING_TICKER_ASC', + StosByUpdatedBlockIdSumRaisingTickerDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_RAISING_TICKER_DESC', + StosByUpdatedBlockIdSumStartAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_START_ASC', + StosByUpdatedBlockIdSumStartDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_START_DESC', + StosByUpdatedBlockIdSumStatusAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_STATUS_ASC', + StosByUpdatedBlockIdSumStatusDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_STATUS_DESC', + StosByUpdatedBlockIdSumStoIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_STO_ID_ASC', + StosByUpdatedBlockIdSumStoIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_STO_ID_DESC', + StosByUpdatedBlockIdSumTiersAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_TIERS_ASC', + StosByUpdatedBlockIdSumTiersDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_TIERS_DESC', + StosByUpdatedBlockIdSumUpdatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdSumUpdatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdSumVenueIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_VENUE_ID_ASC', + StosByUpdatedBlockIdSumVenueIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_SUM_VENUE_ID_DESC', + StosByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StosByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StosByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + StosByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + StosByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdVariancePopulationCreatorIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + StosByUpdatedBlockIdVariancePopulationCreatorIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + StosByUpdatedBlockIdVariancePopulationEndAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_END_ASC', + StosByUpdatedBlockIdVariancePopulationEndDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_END_DESC', + StosByUpdatedBlockIdVariancePopulationIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + StosByUpdatedBlockIdVariancePopulationIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + StosByUpdatedBlockIdVariancePopulationMinimumInvestmentAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByUpdatedBlockIdVariancePopulationMinimumInvestmentDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByUpdatedBlockIdVariancePopulationNameAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_ASC', + StosByUpdatedBlockIdVariancePopulationNameDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_NAME_DESC', + StosByUpdatedBlockIdVariancePopulationOfferingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_ASC', + StosByUpdatedBlockIdVariancePopulationOfferingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_DESC', + StosByUpdatedBlockIdVariancePopulationOfferingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdVariancePopulationOfferingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdVariancePopulationRaisingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_ASC', + StosByUpdatedBlockIdVariancePopulationRaisingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_DESC', + StosByUpdatedBlockIdVariancePopulationRaisingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdVariancePopulationRaisingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdVariancePopulationRaisingTickerAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_TICKER_ASC', + StosByUpdatedBlockIdVariancePopulationRaisingTickerDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_RAISING_TICKER_DESC', + StosByUpdatedBlockIdVariancePopulationStartAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_START_ASC', + StosByUpdatedBlockIdVariancePopulationStartDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_START_DESC', + StosByUpdatedBlockIdVariancePopulationStatusAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_ASC', + StosByUpdatedBlockIdVariancePopulationStatusDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STATUS_DESC', + StosByUpdatedBlockIdVariancePopulationStoIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STO_ID_ASC', + StosByUpdatedBlockIdVariancePopulationStoIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STO_ID_DESC', + StosByUpdatedBlockIdVariancePopulationTiersAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TIERS_ASC', + StosByUpdatedBlockIdVariancePopulationTiersDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TIERS_DESC', + StosByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdVariancePopulationVenueIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + StosByUpdatedBlockIdVariancePopulationVenueIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + StosByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StosByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StosByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + StosByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + StosByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdVarianceSampleCreatorIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + StosByUpdatedBlockIdVarianceSampleCreatorIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + StosByUpdatedBlockIdVarianceSampleEndAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_END_ASC', + StosByUpdatedBlockIdVarianceSampleEndDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_END_DESC', + StosByUpdatedBlockIdVarianceSampleIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + StosByUpdatedBlockIdVarianceSampleIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + StosByUpdatedBlockIdVarianceSampleMinimumInvestmentAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByUpdatedBlockIdVarianceSampleMinimumInvestmentDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByUpdatedBlockIdVarianceSampleNameAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_ASC', + StosByUpdatedBlockIdVarianceSampleNameDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_NAME_DESC', + StosByUpdatedBlockIdVarianceSampleOfferingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByUpdatedBlockIdVarianceSampleOfferingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByUpdatedBlockIdVarianceSampleOfferingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdVarianceSampleOfferingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdVarianceSampleRaisingAssetIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_ASC', + StosByUpdatedBlockIdVarianceSampleRaisingAssetIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_DESC', + StosByUpdatedBlockIdVarianceSampleRaisingPortfolioIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByUpdatedBlockIdVarianceSampleRaisingPortfolioIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByUpdatedBlockIdVarianceSampleRaisingTickerAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_TICKER_ASC', + StosByUpdatedBlockIdVarianceSampleRaisingTickerDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_RAISING_TICKER_DESC', + StosByUpdatedBlockIdVarianceSampleStartAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_START_ASC', + StosByUpdatedBlockIdVarianceSampleStartDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_START_DESC', + StosByUpdatedBlockIdVarianceSampleStatusAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_ASC', + StosByUpdatedBlockIdVarianceSampleStatusDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STATUS_DESC', + StosByUpdatedBlockIdVarianceSampleStoIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STO_ID_ASC', + StosByUpdatedBlockIdVarianceSampleStoIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STO_ID_DESC', + StosByUpdatedBlockIdVarianceSampleTiersAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TIERS_ASC', + StosByUpdatedBlockIdVarianceSampleTiersDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TIERS_DESC', + StosByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByUpdatedBlockIdVarianceSampleVenueIdAsc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + StosByUpdatedBlockIdVarianceSampleVenueIdDesc = 'STOS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + TickerExternalAgentsByCreatedBlockIdAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentsByCreatedBlockIdAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentsByCreatedBlockIdAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentsByCreatedBlockIdAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentsByCreatedBlockIdAverageCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_CALLER_ID_ASC', + TickerExternalAgentsByCreatedBlockIdAverageCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_CALLER_ID_DESC', + TickerExternalAgentsByCreatedBlockIdAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentsByCreatedBlockIdAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentsByCreatedBlockIdAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdAverageDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + TickerExternalAgentsByCreatedBlockIdAverageDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + TickerExternalAgentsByCreatedBlockIdAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentsByCreatedBlockIdAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentsByCreatedBlockIdAverageIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + TickerExternalAgentsByCreatedBlockIdAverageIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + TickerExternalAgentsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdCountAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_COUNT_ASC', + TickerExternalAgentsByCreatedBlockIdCountDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_COUNT_DESC', + TickerExternalAgentsByCreatedBlockIdDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentsByCreatedBlockIdDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentsByCreatedBlockIdDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentsByCreatedBlockIdDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentsByCreatedBlockIdDistinctCountCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CALLER_ID_ASC', + TickerExternalAgentsByCreatedBlockIdDistinctCountCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CALLER_ID_DESC', + TickerExternalAgentsByCreatedBlockIdDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentsByCreatedBlockIdDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdDistinctCountDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + TickerExternalAgentsByCreatedBlockIdDistinctCountDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + TickerExternalAgentsByCreatedBlockIdDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentsByCreatedBlockIdDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentsByCreatedBlockIdDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentsByCreatedBlockIdDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TickerExternalAgentsByCreatedBlockIdMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TickerExternalAgentsByCreatedBlockIdMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentsByCreatedBlockIdMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentsByCreatedBlockIdMaxCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_CALLER_ID_ASC', + TickerExternalAgentsByCreatedBlockIdMaxCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_CALLER_ID_DESC', + TickerExternalAgentsByCreatedBlockIdMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TickerExternalAgentsByCreatedBlockIdMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TickerExternalAgentsByCreatedBlockIdMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdMaxDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + TickerExternalAgentsByCreatedBlockIdMaxDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + TickerExternalAgentsByCreatedBlockIdMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + TickerExternalAgentsByCreatedBlockIdMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + TickerExternalAgentsByCreatedBlockIdMaxIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + TickerExternalAgentsByCreatedBlockIdMaxIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + TickerExternalAgentsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdMinAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TickerExternalAgentsByCreatedBlockIdMinAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TickerExternalAgentsByCreatedBlockIdMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentsByCreatedBlockIdMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentsByCreatedBlockIdMinCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_CALLER_ID_ASC', + TickerExternalAgentsByCreatedBlockIdMinCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_CALLER_ID_DESC', + TickerExternalAgentsByCreatedBlockIdMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TickerExternalAgentsByCreatedBlockIdMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TickerExternalAgentsByCreatedBlockIdMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdMinDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + TickerExternalAgentsByCreatedBlockIdMinDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + TickerExternalAgentsByCreatedBlockIdMinEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + TickerExternalAgentsByCreatedBlockIdMinEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + TickerExternalAgentsByCreatedBlockIdMinIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + TickerExternalAgentsByCreatedBlockIdMinIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + TickerExternalAgentsByCreatedBlockIdMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CALLER_ID_ASC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CALLER_ID_DESC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentsByCreatedBlockIdStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentsByCreatedBlockIdStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentsByCreatedBlockIdStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentsByCreatedBlockIdStddevSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentsByCreatedBlockIdStddevSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentsByCreatedBlockIdStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentsByCreatedBlockIdStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdStddevSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + TickerExternalAgentsByCreatedBlockIdStddevSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + TickerExternalAgentsByCreatedBlockIdStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentsByCreatedBlockIdStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentsByCreatedBlockIdStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentsByCreatedBlockIdStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdSumAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TickerExternalAgentsByCreatedBlockIdSumAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TickerExternalAgentsByCreatedBlockIdSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentsByCreatedBlockIdSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentsByCreatedBlockIdSumCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_CALLER_ID_ASC', + TickerExternalAgentsByCreatedBlockIdSumCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_CALLER_ID_DESC', + TickerExternalAgentsByCreatedBlockIdSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TickerExternalAgentsByCreatedBlockIdSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TickerExternalAgentsByCreatedBlockIdSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdSumDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + TickerExternalAgentsByCreatedBlockIdSumDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + TickerExternalAgentsByCreatedBlockIdSumEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + TickerExternalAgentsByCreatedBlockIdSumEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + TickerExternalAgentsByCreatedBlockIdSumIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + TickerExternalAgentsByCreatedBlockIdSumIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + TickerExternalAgentsByCreatedBlockIdSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CALLER_ID_ASC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CALLER_ID_DESC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentsByUpdatedBlockIdAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentsByUpdatedBlockIdAverageCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CALLER_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdAverageCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CALLER_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentsByUpdatedBlockIdAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdAverageDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + TickerExternalAgentsByUpdatedBlockIdAverageDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + TickerExternalAgentsByUpdatedBlockIdAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentsByUpdatedBlockIdAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentsByUpdatedBlockIdAverageIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdAverageIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdCountAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + TickerExternalAgentsByUpdatedBlockIdCountDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CALLER_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CALLER_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentsByUpdatedBlockIdMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentsByUpdatedBlockIdMaxCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_CALLER_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdMaxCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_CALLER_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TickerExternalAgentsByUpdatedBlockIdMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TickerExternalAgentsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdMaxDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + TickerExternalAgentsByUpdatedBlockIdMaxDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + TickerExternalAgentsByUpdatedBlockIdMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + TickerExternalAgentsByUpdatedBlockIdMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + TickerExternalAgentsByUpdatedBlockIdMaxIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdMaxIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdMinAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdMinAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentsByUpdatedBlockIdMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentsByUpdatedBlockIdMinCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_CALLER_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdMinCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_CALLER_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TickerExternalAgentsByUpdatedBlockIdMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TickerExternalAgentsByUpdatedBlockIdMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdMinDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + TickerExternalAgentsByUpdatedBlockIdMinDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + TickerExternalAgentsByUpdatedBlockIdMinEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + TickerExternalAgentsByUpdatedBlockIdMinEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + TickerExternalAgentsByUpdatedBlockIdMinIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdMinIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CALLER_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CALLER_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdSumAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdSumAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentsByUpdatedBlockIdSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentsByUpdatedBlockIdSumCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_CALLER_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdSumCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_CALLER_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TickerExternalAgentsByUpdatedBlockIdSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TickerExternalAgentsByUpdatedBlockIdSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdSumDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + TickerExternalAgentsByUpdatedBlockIdSumDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + TickerExternalAgentsByUpdatedBlockIdSumEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + TickerExternalAgentsByUpdatedBlockIdSumEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + TickerExternalAgentsByUpdatedBlockIdSumIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdSumIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CALLER_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CALLER_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCreatedBlockIdAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCreatedBlockIdAverageCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CALLER_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdAverageCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CALLER_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentActionsByCreatedBlockIdAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentActionsByCreatedBlockIdAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentActionsByCreatedBlockIdAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentActionsByCreatedBlockIdAverageEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdAverageEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdAverageIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdAverageIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdAveragePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_PALLET_NAME_ASC', + TickerExternalAgentActionsByCreatedBlockIdAveragePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_PALLET_NAME_DESC', + TickerExternalAgentActionsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdCountAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_COUNT_ASC', + TickerExternalAgentActionsByCreatedBlockIdCountDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_COUNT_DESC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CALLER_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CALLER_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PALLET_NAME_ASC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PALLET_NAME_DESC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCreatedBlockIdMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCreatedBlockIdMaxCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_CALLER_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMaxCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_CALLER_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TickerExternalAgentActionsByCreatedBlockIdMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TickerExternalAgentActionsByCreatedBlockIdMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + TickerExternalAgentActionsByCreatedBlockIdMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + TickerExternalAgentActionsByCreatedBlockIdMaxEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMaxEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_EVENT_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMaxIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMaxIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMaxPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_PALLET_NAME_ASC', + TickerExternalAgentActionsByCreatedBlockIdMaxPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_PALLET_NAME_DESC', + TickerExternalAgentActionsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMinAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMinAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCreatedBlockIdMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCreatedBlockIdMinCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_CALLER_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMinCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_CALLER_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TickerExternalAgentActionsByCreatedBlockIdMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TickerExternalAgentActionsByCreatedBlockIdMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMinEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + TickerExternalAgentActionsByCreatedBlockIdMinEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + TickerExternalAgentActionsByCreatedBlockIdMinEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMinEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_EVENT_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMinIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMinIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdMinPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_PALLET_NAME_ASC', + TickerExternalAgentActionsByCreatedBlockIdMinPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_PALLET_NAME_DESC', + TickerExternalAgentActionsByCreatedBlockIdMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CALLER_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CALLER_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PALLET_NAME_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PALLET_NAME_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevSamplePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PALLET_NAME_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevSamplePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PALLET_NAME_DESC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdSumAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdSumAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCreatedBlockIdSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCreatedBlockIdSumCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_CALLER_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdSumCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_CALLER_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TickerExternalAgentActionsByCreatedBlockIdSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TickerExternalAgentActionsByCreatedBlockIdSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdSumEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + TickerExternalAgentActionsByCreatedBlockIdSumEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + TickerExternalAgentActionsByCreatedBlockIdSumEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdSumEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_EVENT_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdSumIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdSumIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdSumPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_PALLET_NAME_ASC', + TickerExternalAgentActionsByCreatedBlockIdSumPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_PALLET_NAME_DESC', + TickerExternalAgentActionsByCreatedBlockIdSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CALLER_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CALLER_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PALLET_NAME_ASC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PALLET_NAME_DESC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSamplePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PALLET_NAME_ASC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSamplePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PALLET_NAME_DESC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByUpdatedBlockIdAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByUpdatedBlockIdAverageCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CALLER_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdAverageCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CALLER_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentActionsByUpdatedBlockIdAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentActionsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentActionsByUpdatedBlockIdAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentActionsByUpdatedBlockIdAverageEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdAverageEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdAverageIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdAverageIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdAveragePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PALLET_NAME_ASC', + TickerExternalAgentActionsByUpdatedBlockIdAveragePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_PALLET_NAME_DESC', + TickerExternalAgentActionsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdCountAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + TickerExternalAgentActionsByUpdatedBlockIdCountDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CALLER_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CALLER_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PALLET_NAME_ASC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PALLET_NAME_DESC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMaxCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_CALLER_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMaxCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_CALLER_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMaxEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMaxEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_EVENT_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMaxIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMaxIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMaxPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_PALLET_NAME_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMaxPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_PALLET_NAME_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMinAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMinAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMinCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_CALLER_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMinCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_CALLER_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMinEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMinEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMinEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMinEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_EVENT_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMinIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMinIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMinPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_PALLET_NAME_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMinPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_PALLET_NAME_DESC', + TickerExternalAgentActionsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CALLER_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CALLER_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PALLET_NAME_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PALLET_NAME_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSamplePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PALLET_NAME_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSamplePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PALLET_NAME_DESC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdSumAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdSumAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByUpdatedBlockIdSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByUpdatedBlockIdSumCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_CALLER_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdSumCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_CALLER_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TickerExternalAgentActionsByUpdatedBlockIdSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TickerExternalAgentActionsByUpdatedBlockIdSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdSumEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + TickerExternalAgentActionsByUpdatedBlockIdSumEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + TickerExternalAgentActionsByUpdatedBlockIdSumEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdSumEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_EVENT_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdSumIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdSumIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdSumPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_PALLET_NAME_ASC', + TickerExternalAgentActionsByUpdatedBlockIdSumPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_PALLET_NAME_DESC', + TickerExternalAgentActionsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CALLER_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CALLER_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PALLET_NAME_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PALLET_NAME_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSamplePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PALLET_NAME_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSamplePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PALLET_NAME_DESC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdAveragePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdAveragePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdCountAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_COUNT_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdCountDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_COUNT_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_DATETIME_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_DATETIME_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_TYPE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_TYPE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMinAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMinAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMinDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_DATETIME_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMinDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_DATETIME_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMinEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMinEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMinIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMinIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMinIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMinIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMinPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMinPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMinTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_TYPE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMinTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_TYPE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSamplePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSamplePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdSumAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdSumAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdSumDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_DATETIME_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdSumDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_DATETIME_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdSumEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdSumEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdSumIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdSumIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdSumIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdSumIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdSumPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdSumPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdSumTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_TYPE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdSumTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_TYPE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSamplePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSamplePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_DATETIME_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdAveragePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdAveragePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdCountAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdCountDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DATETIME_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_DATETIME_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_DATETIME_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_TYPE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_TYPE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_DATETIME_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_DATETIME_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_TYPE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_TYPE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DATETIME_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DATETIME_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSamplePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSamplePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_DATETIME_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_DATETIME_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_TYPE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_TYPE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DATETIME_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DATETIME_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSamplePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSamplePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdAverageAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TransferCompliancesByCreatedBlockIdAverageAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TransferCompliancesByCreatedBlockIdAverageBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TransferCompliancesByCreatedBlockIdAverageBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TransferCompliancesByCreatedBlockIdAverageClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByCreatedBlockIdAverageClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByCreatedBlockIdAverageClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_ASC', + TransferCompliancesByCreatedBlockIdAverageClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_DESC', + TransferCompliancesByCreatedBlockIdAverageClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_VALUE_ASC', + TransferCompliancesByCreatedBlockIdAverageClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_VALUE_DESC', + TransferCompliancesByCreatedBlockIdAverageCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TransferCompliancesByCreatedBlockIdAverageCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TransferCompliancesByCreatedBlockIdAverageCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdAverageCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdAverageIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + TransferCompliancesByCreatedBlockIdAverageIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + TransferCompliancesByCreatedBlockIdAverageMaxAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_MAX_ASC', + TransferCompliancesByCreatedBlockIdAverageMaxDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_MAX_DESC', + TransferCompliancesByCreatedBlockIdAverageMinAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_MIN_ASC', + TransferCompliancesByCreatedBlockIdAverageMinDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_MIN_DESC', + TransferCompliancesByCreatedBlockIdAverageStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_STAT_TYPE_ID_ASC', + TransferCompliancesByCreatedBlockIdAverageStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_STAT_TYPE_ID_DESC', + TransferCompliancesByCreatedBlockIdAverageTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_ASC', + TransferCompliancesByCreatedBlockIdAverageTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_DESC', + TransferCompliancesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdAverageValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_VALUE_ASC', + TransferCompliancesByCreatedBlockIdAverageValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_AVERAGE_VALUE_DESC', + TransferCompliancesByCreatedBlockIdCountAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_COUNT_ASC', + TransferCompliancesByCreatedBlockIdCountDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_COUNT_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_VALUE_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_VALUE_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountMaxAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MAX_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountMaxDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MAX_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountMinAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MIN_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountMinDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_MIN_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STAT_TYPE_ID_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_STAT_TYPE_ID_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdDistinctCountValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VALUE_ASC', + TransferCompliancesByCreatedBlockIdDistinctCountValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VALUE_DESC', + TransferCompliancesByCreatedBlockIdMaxAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TransferCompliancesByCreatedBlockIdMaxAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TransferCompliancesByCreatedBlockIdMaxBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TransferCompliancesByCreatedBlockIdMaxBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TransferCompliancesByCreatedBlockIdMaxClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByCreatedBlockIdMaxClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByCreatedBlockIdMaxClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CLAIM_TYPE_ASC', + TransferCompliancesByCreatedBlockIdMaxClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CLAIM_TYPE_DESC', + TransferCompliancesByCreatedBlockIdMaxClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CLAIM_VALUE_ASC', + TransferCompliancesByCreatedBlockIdMaxClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CLAIM_VALUE_DESC', + TransferCompliancesByCreatedBlockIdMaxCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TransferCompliancesByCreatedBlockIdMaxCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TransferCompliancesByCreatedBlockIdMaxCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdMaxCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdMaxIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + TransferCompliancesByCreatedBlockIdMaxIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + TransferCompliancesByCreatedBlockIdMaxMaxAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_MAX_ASC', + TransferCompliancesByCreatedBlockIdMaxMaxDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_MAX_DESC', + TransferCompliancesByCreatedBlockIdMaxMinAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_MIN_ASC', + TransferCompliancesByCreatedBlockIdMaxMinDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_MIN_DESC', + TransferCompliancesByCreatedBlockIdMaxStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_STAT_TYPE_ID_ASC', + TransferCompliancesByCreatedBlockIdMaxStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_STAT_TYPE_ID_DESC', + TransferCompliancesByCreatedBlockIdMaxTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_TYPE_ASC', + TransferCompliancesByCreatedBlockIdMaxTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_TYPE_DESC', + TransferCompliancesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdMaxValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_VALUE_ASC', + TransferCompliancesByCreatedBlockIdMaxValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MAX_VALUE_DESC', + TransferCompliancesByCreatedBlockIdMinAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TransferCompliancesByCreatedBlockIdMinAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TransferCompliancesByCreatedBlockIdMinBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TransferCompliancesByCreatedBlockIdMinBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TransferCompliancesByCreatedBlockIdMinClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByCreatedBlockIdMinClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByCreatedBlockIdMinClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CLAIM_TYPE_ASC', + TransferCompliancesByCreatedBlockIdMinClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CLAIM_TYPE_DESC', + TransferCompliancesByCreatedBlockIdMinClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CLAIM_VALUE_ASC', + TransferCompliancesByCreatedBlockIdMinClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CLAIM_VALUE_DESC', + TransferCompliancesByCreatedBlockIdMinCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TransferCompliancesByCreatedBlockIdMinCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TransferCompliancesByCreatedBlockIdMinCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdMinCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdMinIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + TransferCompliancesByCreatedBlockIdMinIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + TransferCompliancesByCreatedBlockIdMinMaxAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_MAX_ASC', + TransferCompliancesByCreatedBlockIdMinMaxDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_MAX_DESC', + TransferCompliancesByCreatedBlockIdMinMinAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_MIN_ASC', + TransferCompliancesByCreatedBlockIdMinMinDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_MIN_DESC', + TransferCompliancesByCreatedBlockIdMinStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_STAT_TYPE_ID_ASC', + TransferCompliancesByCreatedBlockIdMinStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_STAT_TYPE_ID_DESC', + TransferCompliancesByCreatedBlockIdMinTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_TYPE_ASC', + TransferCompliancesByCreatedBlockIdMinTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_TYPE_DESC', + TransferCompliancesByCreatedBlockIdMinUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdMinUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdMinValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_VALUE_ASC', + TransferCompliancesByCreatedBlockIdMinValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_MIN_VALUE_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_VALUE_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_VALUE_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationMaxAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MAX_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationMaxDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MAX_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationMinAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MIN_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationMinDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_MIN_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STAT_TYPE_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_STAT_TYPE_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevPopulationValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VALUE_ASC', + TransferCompliancesByCreatedBlockIdStddevPopulationValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VALUE_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_VALUE_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_VALUE_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleMaxAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MAX_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleMaxDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MAX_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleMinAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MIN_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleMinDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_MIN_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STAT_TYPE_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_STAT_TYPE_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdStddevSampleValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_ASC', + TransferCompliancesByCreatedBlockIdStddevSampleValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_DESC', + TransferCompliancesByCreatedBlockIdSumAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TransferCompliancesByCreatedBlockIdSumAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TransferCompliancesByCreatedBlockIdSumBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TransferCompliancesByCreatedBlockIdSumBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TransferCompliancesByCreatedBlockIdSumClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByCreatedBlockIdSumClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByCreatedBlockIdSumClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CLAIM_TYPE_ASC', + TransferCompliancesByCreatedBlockIdSumClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CLAIM_TYPE_DESC', + TransferCompliancesByCreatedBlockIdSumClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CLAIM_VALUE_ASC', + TransferCompliancesByCreatedBlockIdSumClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CLAIM_VALUE_DESC', + TransferCompliancesByCreatedBlockIdSumCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TransferCompliancesByCreatedBlockIdSumCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TransferCompliancesByCreatedBlockIdSumCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdSumCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdSumIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + TransferCompliancesByCreatedBlockIdSumIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + TransferCompliancesByCreatedBlockIdSumMaxAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_MAX_ASC', + TransferCompliancesByCreatedBlockIdSumMaxDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_MAX_DESC', + TransferCompliancesByCreatedBlockIdSumMinAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_MIN_ASC', + TransferCompliancesByCreatedBlockIdSumMinDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_MIN_DESC', + TransferCompliancesByCreatedBlockIdSumStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_STAT_TYPE_ID_ASC', + TransferCompliancesByCreatedBlockIdSumStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_STAT_TYPE_ID_DESC', + TransferCompliancesByCreatedBlockIdSumTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_TYPE_ASC', + TransferCompliancesByCreatedBlockIdSumTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_TYPE_DESC', + TransferCompliancesByCreatedBlockIdSumUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdSumUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdSumValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_VALUE_ASC', + TransferCompliancesByCreatedBlockIdSumValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_SUM_VALUE_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_VALUE_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_VALUE_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationMaxAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MAX_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationMaxDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MAX_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationMinAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MIN_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationMinDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_MIN_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STAT_TYPE_ID_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_STAT_TYPE_ID_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdVariancePopulationValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_ASC', + TransferCompliancesByCreatedBlockIdVariancePopulationValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_VALUE_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_VALUE_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleMaxAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MAX_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleMaxDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MAX_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleMinAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MIN_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleMinDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_MIN_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STAT_TYPE_ID_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_STAT_TYPE_ID_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleTypeAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleTypeDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByCreatedBlockIdVarianceSampleValueAsc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_ASC', + TransferCompliancesByCreatedBlockIdVarianceSampleValueDesc = 'TRANSFER_COMPLIANCES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdAverageAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TransferCompliancesByUpdatedBlockIdAverageAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TransferCompliancesByUpdatedBlockIdAverageBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TransferCompliancesByUpdatedBlockIdAverageBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TransferCompliancesByUpdatedBlockIdAverageClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByUpdatedBlockIdAverageClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByUpdatedBlockIdAverageClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdAverageClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdAverageClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdAverageClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdAverageCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TransferCompliancesByUpdatedBlockIdAverageCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TransferCompliancesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdAverageIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + TransferCompliancesByUpdatedBlockIdAverageIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + TransferCompliancesByUpdatedBlockIdAverageMaxAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_MAX_ASC', + TransferCompliancesByUpdatedBlockIdAverageMaxDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_MAX_DESC', + TransferCompliancesByUpdatedBlockIdAverageMinAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_MIN_ASC', + TransferCompliancesByUpdatedBlockIdAverageMinDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_MIN_DESC', + TransferCompliancesByUpdatedBlockIdAverageStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_STAT_TYPE_ID_ASC', + TransferCompliancesByUpdatedBlockIdAverageStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_STAT_TYPE_ID_DESC', + TransferCompliancesByUpdatedBlockIdAverageTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdAverageTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdAverageValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdAverageValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_AVERAGE_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdCountAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + TransferCompliancesByUpdatedBlockIdCountDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountMaxAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MAX_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountMaxDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MAX_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountMinAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MIN_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountMinDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_MIN_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STAT_TYPE_ID_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_STAT_TYPE_ID_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdDistinctCountValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdDistinctCountValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdMaxAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TransferCompliancesByUpdatedBlockIdMaxAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TransferCompliancesByUpdatedBlockIdMaxBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TransferCompliancesByUpdatedBlockIdMaxBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TransferCompliancesByUpdatedBlockIdMaxClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByUpdatedBlockIdMaxClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByUpdatedBlockIdMaxClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CLAIM_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdMaxClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CLAIM_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdMaxClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CLAIM_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdMaxClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CLAIM_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdMaxCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TransferCompliancesByUpdatedBlockIdMaxCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TransferCompliancesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdMaxIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + TransferCompliancesByUpdatedBlockIdMaxIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + TransferCompliancesByUpdatedBlockIdMaxMaxAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_MAX_ASC', + TransferCompliancesByUpdatedBlockIdMaxMaxDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_MAX_DESC', + TransferCompliancesByUpdatedBlockIdMaxMinAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_MIN_ASC', + TransferCompliancesByUpdatedBlockIdMaxMinDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_MIN_DESC', + TransferCompliancesByUpdatedBlockIdMaxStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_STAT_TYPE_ID_ASC', + TransferCompliancesByUpdatedBlockIdMaxStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_STAT_TYPE_ID_DESC', + TransferCompliancesByUpdatedBlockIdMaxTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdMaxTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdMaxValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdMaxValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MAX_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdMinAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TransferCompliancesByUpdatedBlockIdMinAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TransferCompliancesByUpdatedBlockIdMinBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TransferCompliancesByUpdatedBlockIdMinBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TransferCompliancesByUpdatedBlockIdMinClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByUpdatedBlockIdMinClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByUpdatedBlockIdMinClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CLAIM_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdMinClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CLAIM_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdMinClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CLAIM_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdMinClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CLAIM_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdMinCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TransferCompliancesByUpdatedBlockIdMinCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TransferCompliancesByUpdatedBlockIdMinCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdMinCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdMinIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + TransferCompliancesByUpdatedBlockIdMinIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + TransferCompliancesByUpdatedBlockIdMinMaxAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_MAX_ASC', + TransferCompliancesByUpdatedBlockIdMinMaxDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_MAX_DESC', + TransferCompliancesByUpdatedBlockIdMinMinAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_MIN_ASC', + TransferCompliancesByUpdatedBlockIdMinMinDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_MIN_DESC', + TransferCompliancesByUpdatedBlockIdMinStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_STAT_TYPE_ID_ASC', + TransferCompliancesByUpdatedBlockIdMinStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_STAT_TYPE_ID_DESC', + TransferCompliancesByUpdatedBlockIdMinTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdMinTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdMinValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdMinValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_MIN_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationMaxAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MAX_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationMaxDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MAX_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationMinAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MIN_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationMinDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_MIN_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STAT_TYPE_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_STAT_TYPE_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevPopulationValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdStddevPopulationValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleMaxAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MAX_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleMaxDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MAX_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleMinAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MIN_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleMinDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_MIN_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STAT_TYPE_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_STAT_TYPE_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdStddevSampleValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdStddevSampleValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdSumAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TransferCompliancesByUpdatedBlockIdSumAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TransferCompliancesByUpdatedBlockIdSumBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TransferCompliancesByUpdatedBlockIdSumBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TransferCompliancesByUpdatedBlockIdSumClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByUpdatedBlockIdSumClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByUpdatedBlockIdSumClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CLAIM_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdSumClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CLAIM_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdSumClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CLAIM_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdSumClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CLAIM_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdSumCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TransferCompliancesByUpdatedBlockIdSumCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TransferCompliancesByUpdatedBlockIdSumCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdSumCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdSumIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + TransferCompliancesByUpdatedBlockIdSumIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + TransferCompliancesByUpdatedBlockIdSumMaxAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_MAX_ASC', + TransferCompliancesByUpdatedBlockIdSumMaxDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_MAX_DESC', + TransferCompliancesByUpdatedBlockIdSumMinAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_MIN_ASC', + TransferCompliancesByUpdatedBlockIdSumMinDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_MIN_DESC', + TransferCompliancesByUpdatedBlockIdSumStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_STAT_TYPE_ID_ASC', + TransferCompliancesByUpdatedBlockIdSumStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_STAT_TYPE_ID_DESC', + TransferCompliancesByUpdatedBlockIdSumTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdSumTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdSumValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdSumValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_SUM_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationMaxAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MAX_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationMaxDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MAX_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationMinAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MIN_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationMinDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_MIN_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STAT_TYPE_ID_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_STAT_TYPE_ID_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdVariancePopulationValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdVariancePopulationValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_VALUE_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleMaxAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MAX_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleMaxDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MAX_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleMinAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MIN_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleMinDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_MIN_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STAT_TYPE_ID_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_STAT_TYPE_ID_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleTypeAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleTypeDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByUpdatedBlockIdVarianceSampleValueAsc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_ASC', + TransferCompliancesByUpdatedBlockIdVarianceSampleValueDesc = 'TRANSFER_COMPLIANCES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_DESC', + TransferComplianceExemptionsByCreatedBlockIdAverageAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdAverageAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdAverageBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByCreatedBlockIdAverageBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByCreatedBlockIdAverageClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdAverageClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdAverageCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TransferComplianceExemptionsByCreatedBlockIdAverageCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TransferComplianceExemptionsByCreatedBlockIdAverageCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdAverageCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdAverageExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdAverageExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdAverageIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdAverageIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdAverageOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_OP_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdAverageOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_OP_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdAverageUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdAverageUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdCountAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_COUNT_ASC', + TransferComplianceExemptionsByCreatedBlockIdCountDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_COUNT_DESC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OP_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OP_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdMaxAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdMaxAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdMaxBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByCreatedBlockIdMaxBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByCreatedBlockIdMaxClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdMaxClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdMaxCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TransferComplianceExemptionsByCreatedBlockIdMaxCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TransferComplianceExemptionsByCreatedBlockIdMaxCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdMaxCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdMaxExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdMaxExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdMaxIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdMaxIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdMaxOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_OP_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdMaxOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_OP_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdMaxUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdMaxUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdMinAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdMinAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdMinBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByCreatedBlockIdMinBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByCreatedBlockIdMinClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdMinClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdMinCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TransferComplianceExemptionsByCreatedBlockIdMinCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TransferComplianceExemptionsByCreatedBlockIdMinCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdMinCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdMinExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdMinExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdMinIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdMinIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdMinOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_OP_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdMinOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_OP_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdMinUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdMinUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OP_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OP_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OP_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OP_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdSumAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdSumAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdSumBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByCreatedBlockIdSumBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByCreatedBlockIdSumClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdSumClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdSumCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TransferComplianceExemptionsByCreatedBlockIdSumCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TransferComplianceExemptionsByCreatedBlockIdSumCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdSumCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdSumExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdSumExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdSumIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdSumIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdSumOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_OP_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdSumOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_OP_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdSumUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdSumUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OP_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OP_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OP_TYPE_ASC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OP_TYPE_DESC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdAverageAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdAverageAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdAverageBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdAverageBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdAverageClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdAverageClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdAverageCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TransferComplianceExemptionsByUpdatedBlockIdAverageCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TransferComplianceExemptionsByUpdatedBlockIdAverageCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdAverageCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdAverageExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdAverageExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdAverageIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdAverageIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdAverageOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_OP_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdAverageOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_OP_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdCountAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + TransferComplianceExemptionsByUpdatedBlockIdCountDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OP_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OP_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMaxAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMaxAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMaxBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMaxBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMaxClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMaxClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMaxCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMaxCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMaxCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMaxCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMaxExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMaxExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMaxIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMaxIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMaxOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_OP_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMaxOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_OP_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMinAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMinAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMinBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMinBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMinClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMinClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMinCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMinCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMinCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMinCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMinExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMinExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMinIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMinIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMinOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_OP_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMinOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_OP_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdMinUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdMinUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OP_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OP_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OP_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OP_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdSumAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdSumAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdSumBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdSumBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdSumClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdSumClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdSumCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TransferComplianceExemptionsByUpdatedBlockIdSumCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TransferComplianceExemptionsByUpdatedBlockIdSumCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdSumCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdSumExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdSumExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdSumIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdSumIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdSumOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_OP_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdSumOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_OP_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdSumUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdSumUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OP_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OP_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleAssetIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleAssetIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleClaimTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleClaimTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleExemptedEntityIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXEMPTED_ENTITY_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleExemptedEntityIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXEMPTED_ENTITY_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleOpTypeAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OP_TYPE_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleOpTypeDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OP_TYPE_DESC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferComplianceExemptionsByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCE_EXEMPTIONS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdAverageAssetIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TransferManagersByCreatedBlockIdAverageAssetIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TransferManagersByCreatedBlockIdAverageBlockRangeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TransferManagersByCreatedBlockIdAverageBlockRangeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TransferManagersByCreatedBlockIdAverageCreatedAtAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TransferManagersByCreatedBlockIdAverageCreatedAtDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TransferManagersByCreatedBlockIdAverageCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdAverageCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdAverageExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_EXEMPTED_ENTITIES_ASC', + TransferManagersByCreatedBlockIdAverageExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_EXEMPTED_ENTITIES_DESC', + TransferManagersByCreatedBlockIdAverageIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + TransferManagersByCreatedBlockIdAverageIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + TransferManagersByCreatedBlockIdAverageTypeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_ASC', + TransferManagersByCreatedBlockIdAverageTypeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_DESC', + TransferManagersByCreatedBlockIdAverageUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdAverageUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdAverageValueAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_VALUE_ASC', + TransferManagersByCreatedBlockIdAverageValueDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_AVERAGE_VALUE_DESC', + TransferManagersByCreatedBlockIdCountAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_COUNT_ASC', + TransferManagersByCreatedBlockIdCountDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_COUNT_DESC', + TransferManagersByCreatedBlockIdDistinctCountAssetIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TransferManagersByCreatedBlockIdDistinctCountAssetIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TransferManagersByCreatedBlockIdDistinctCountBlockRangeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TransferManagersByCreatedBlockIdDistinctCountBlockRangeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TransferManagersByCreatedBlockIdDistinctCountCreatedAtAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TransferManagersByCreatedBlockIdDistinctCountCreatedAtDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TransferManagersByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdDistinctCountExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXEMPTED_ENTITIES_ASC', + TransferManagersByCreatedBlockIdDistinctCountExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EXEMPTED_ENTITIES_DESC', + TransferManagersByCreatedBlockIdDistinctCountIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TransferManagersByCreatedBlockIdDistinctCountIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TransferManagersByCreatedBlockIdDistinctCountTypeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + TransferManagersByCreatedBlockIdDistinctCountTypeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + TransferManagersByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdDistinctCountValueAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VALUE_ASC', + TransferManagersByCreatedBlockIdDistinctCountValueDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_VALUE_DESC', + TransferManagersByCreatedBlockIdMaxAssetIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TransferManagersByCreatedBlockIdMaxAssetIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TransferManagersByCreatedBlockIdMaxBlockRangeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TransferManagersByCreatedBlockIdMaxBlockRangeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TransferManagersByCreatedBlockIdMaxCreatedAtAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TransferManagersByCreatedBlockIdMaxCreatedAtDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TransferManagersByCreatedBlockIdMaxCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdMaxCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdMaxExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_EXEMPTED_ENTITIES_ASC', + TransferManagersByCreatedBlockIdMaxExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_EXEMPTED_ENTITIES_DESC', + TransferManagersByCreatedBlockIdMaxIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + TransferManagersByCreatedBlockIdMaxIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + TransferManagersByCreatedBlockIdMaxTypeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_TYPE_ASC', + TransferManagersByCreatedBlockIdMaxTypeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_TYPE_DESC', + TransferManagersByCreatedBlockIdMaxUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdMaxUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdMaxValueAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_VALUE_ASC', + TransferManagersByCreatedBlockIdMaxValueDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MAX_VALUE_DESC', + TransferManagersByCreatedBlockIdMinAssetIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TransferManagersByCreatedBlockIdMinAssetIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TransferManagersByCreatedBlockIdMinBlockRangeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TransferManagersByCreatedBlockIdMinBlockRangeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TransferManagersByCreatedBlockIdMinCreatedAtAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TransferManagersByCreatedBlockIdMinCreatedAtDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TransferManagersByCreatedBlockIdMinCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdMinCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdMinExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_EXEMPTED_ENTITIES_ASC', + TransferManagersByCreatedBlockIdMinExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_EXEMPTED_ENTITIES_DESC', + TransferManagersByCreatedBlockIdMinIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + TransferManagersByCreatedBlockIdMinIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + TransferManagersByCreatedBlockIdMinTypeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_TYPE_ASC', + TransferManagersByCreatedBlockIdMinTypeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_TYPE_DESC', + TransferManagersByCreatedBlockIdMinUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdMinUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdMinValueAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_VALUE_ASC', + TransferManagersByCreatedBlockIdMinValueDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_MIN_VALUE_DESC', + TransferManagersByCreatedBlockIdStddevPopulationAssetIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TransferManagersByCreatedBlockIdStddevPopulationAssetIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TransferManagersByCreatedBlockIdStddevPopulationBlockRangeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TransferManagersByCreatedBlockIdStddevPopulationBlockRangeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TransferManagersByCreatedBlockIdStddevPopulationCreatedAtAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TransferManagersByCreatedBlockIdStddevPopulationCreatedAtDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TransferManagersByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdStddevPopulationExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXEMPTED_ENTITIES_ASC', + TransferManagersByCreatedBlockIdStddevPopulationExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EXEMPTED_ENTITIES_DESC', + TransferManagersByCreatedBlockIdStddevPopulationIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TransferManagersByCreatedBlockIdStddevPopulationIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TransferManagersByCreatedBlockIdStddevPopulationTypeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + TransferManagersByCreatedBlockIdStddevPopulationTypeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + TransferManagersByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdStddevPopulationValueAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VALUE_ASC', + TransferManagersByCreatedBlockIdStddevPopulationValueDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_VALUE_DESC', + TransferManagersByCreatedBlockIdStddevSampleAssetIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TransferManagersByCreatedBlockIdStddevSampleAssetIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TransferManagersByCreatedBlockIdStddevSampleBlockRangeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TransferManagersByCreatedBlockIdStddevSampleBlockRangeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TransferManagersByCreatedBlockIdStddevSampleCreatedAtAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TransferManagersByCreatedBlockIdStddevSampleCreatedAtDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TransferManagersByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdStddevSampleExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXEMPTED_ENTITIES_ASC', + TransferManagersByCreatedBlockIdStddevSampleExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EXEMPTED_ENTITIES_DESC', + TransferManagersByCreatedBlockIdStddevSampleIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TransferManagersByCreatedBlockIdStddevSampleIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TransferManagersByCreatedBlockIdStddevSampleTypeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + TransferManagersByCreatedBlockIdStddevSampleTypeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + TransferManagersByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdStddevSampleValueAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_ASC', + TransferManagersByCreatedBlockIdStddevSampleValueDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_DESC', + TransferManagersByCreatedBlockIdSumAssetIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TransferManagersByCreatedBlockIdSumAssetIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TransferManagersByCreatedBlockIdSumBlockRangeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TransferManagersByCreatedBlockIdSumBlockRangeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TransferManagersByCreatedBlockIdSumCreatedAtAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TransferManagersByCreatedBlockIdSumCreatedAtDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TransferManagersByCreatedBlockIdSumCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdSumCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdSumExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_EXEMPTED_ENTITIES_ASC', + TransferManagersByCreatedBlockIdSumExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_EXEMPTED_ENTITIES_DESC', + TransferManagersByCreatedBlockIdSumIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + TransferManagersByCreatedBlockIdSumIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + TransferManagersByCreatedBlockIdSumTypeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_TYPE_ASC', + TransferManagersByCreatedBlockIdSumTypeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_TYPE_DESC', + TransferManagersByCreatedBlockIdSumUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdSumUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdSumValueAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_VALUE_ASC', + TransferManagersByCreatedBlockIdSumValueDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_SUM_VALUE_DESC', + TransferManagersByCreatedBlockIdVariancePopulationAssetIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TransferManagersByCreatedBlockIdVariancePopulationAssetIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TransferManagersByCreatedBlockIdVariancePopulationBlockRangeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TransferManagersByCreatedBlockIdVariancePopulationBlockRangeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TransferManagersByCreatedBlockIdVariancePopulationCreatedAtAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TransferManagersByCreatedBlockIdVariancePopulationCreatedAtDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TransferManagersByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdVariancePopulationExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXEMPTED_ENTITIES_ASC', + TransferManagersByCreatedBlockIdVariancePopulationExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EXEMPTED_ENTITIES_DESC', + TransferManagersByCreatedBlockIdVariancePopulationIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TransferManagersByCreatedBlockIdVariancePopulationIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TransferManagersByCreatedBlockIdVariancePopulationTypeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + TransferManagersByCreatedBlockIdVariancePopulationTypeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + TransferManagersByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdVariancePopulationValueAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_ASC', + TransferManagersByCreatedBlockIdVariancePopulationValueDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_DESC', + TransferManagersByCreatedBlockIdVarianceSampleAssetIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TransferManagersByCreatedBlockIdVarianceSampleAssetIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TransferManagersByCreatedBlockIdVarianceSampleBlockRangeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TransferManagersByCreatedBlockIdVarianceSampleBlockRangeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TransferManagersByCreatedBlockIdVarianceSampleCreatedAtAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TransferManagersByCreatedBlockIdVarianceSampleCreatedAtDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TransferManagersByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdVarianceSampleExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXEMPTED_ENTITIES_ASC', + TransferManagersByCreatedBlockIdVarianceSampleExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EXEMPTED_ENTITIES_DESC', + TransferManagersByCreatedBlockIdVarianceSampleIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TransferManagersByCreatedBlockIdVarianceSampleIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TransferManagersByCreatedBlockIdVarianceSampleTypeAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + TransferManagersByCreatedBlockIdVarianceSampleTypeDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + TransferManagersByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferManagersByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferManagersByCreatedBlockIdVarianceSampleValueAsc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_ASC', + TransferManagersByCreatedBlockIdVarianceSampleValueDesc = 'TRANSFER_MANAGERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_DESC', + TransferManagersByUpdatedBlockIdAverageAssetIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TransferManagersByUpdatedBlockIdAverageAssetIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TransferManagersByUpdatedBlockIdAverageBlockRangeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TransferManagersByUpdatedBlockIdAverageBlockRangeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TransferManagersByUpdatedBlockIdAverageCreatedAtAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TransferManagersByUpdatedBlockIdAverageCreatedAtDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TransferManagersByUpdatedBlockIdAverageCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdAverageCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdAverageExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_EXEMPTED_ENTITIES_ASC', + TransferManagersByUpdatedBlockIdAverageExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_EXEMPTED_ENTITIES_DESC', + TransferManagersByUpdatedBlockIdAverageIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + TransferManagersByUpdatedBlockIdAverageIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + TransferManagersByUpdatedBlockIdAverageTypeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_ASC', + TransferManagersByUpdatedBlockIdAverageTypeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_DESC', + TransferManagersByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdAverageValueAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_VALUE_ASC', + TransferManagersByUpdatedBlockIdAverageValueDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_AVERAGE_VALUE_DESC', + TransferManagersByUpdatedBlockIdCountAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + TransferManagersByUpdatedBlockIdCountDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + TransferManagersByUpdatedBlockIdDistinctCountAssetIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TransferManagersByUpdatedBlockIdDistinctCountAssetIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TransferManagersByUpdatedBlockIdDistinctCountBlockRangeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TransferManagersByUpdatedBlockIdDistinctCountBlockRangeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TransferManagersByUpdatedBlockIdDistinctCountCreatedAtAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TransferManagersByUpdatedBlockIdDistinctCountCreatedAtDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TransferManagersByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdDistinctCountExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXEMPTED_ENTITIES_ASC', + TransferManagersByUpdatedBlockIdDistinctCountExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EXEMPTED_ENTITIES_DESC', + TransferManagersByUpdatedBlockIdDistinctCountIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TransferManagersByUpdatedBlockIdDistinctCountIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TransferManagersByUpdatedBlockIdDistinctCountTypeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + TransferManagersByUpdatedBlockIdDistinctCountTypeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + TransferManagersByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdDistinctCountValueAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VALUE_ASC', + TransferManagersByUpdatedBlockIdDistinctCountValueDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_VALUE_DESC', + TransferManagersByUpdatedBlockIdMaxAssetIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TransferManagersByUpdatedBlockIdMaxAssetIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TransferManagersByUpdatedBlockIdMaxBlockRangeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TransferManagersByUpdatedBlockIdMaxBlockRangeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TransferManagersByUpdatedBlockIdMaxCreatedAtAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TransferManagersByUpdatedBlockIdMaxCreatedAtDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TransferManagersByUpdatedBlockIdMaxCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdMaxCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdMaxExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_EXEMPTED_ENTITIES_ASC', + TransferManagersByUpdatedBlockIdMaxExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_EXEMPTED_ENTITIES_DESC', + TransferManagersByUpdatedBlockIdMaxIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + TransferManagersByUpdatedBlockIdMaxIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + TransferManagersByUpdatedBlockIdMaxTypeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_TYPE_ASC', + TransferManagersByUpdatedBlockIdMaxTypeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_TYPE_DESC', + TransferManagersByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdMaxValueAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_VALUE_ASC', + TransferManagersByUpdatedBlockIdMaxValueDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MAX_VALUE_DESC', + TransferManagersByUpdatedBlockIdMinAssetIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TransferManagersByUpdatedBlockIdMinAssetIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TransferManagersByUpdatedBlockIdMinBlockRangeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TransferManagersByUpdatedBlockIdMinBlockRangeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TransferManagersByUpdatedBlockIdMinCreatedAtAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TransferManagersByUpdatedBlockIdMinCreatedAtDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TransferManagersByUpdatedBlockIdMinCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdMinCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdMinExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_EXEMPTED_ENTITIES_ASC', + TransferManagersByUpdatedBlockIdMinExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_EXEMPTED_ENTITIES_DESC', + TransferManagersByUpdatedBlockIdMinIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + TransferManagersByUpdatedBlockIdMinIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + TransferManagersByUpdatedBlockIdMinTypeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_TYPE_ASC', + TransferManagersByUpdatedBlockIdMinTypeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_TYPE_DESC', + TransferManagersByUpdatedBlockIdMinUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdMinUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdMinValueAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_VALUE_ASC', + TransferManagersByUpdatedBlockIdMinValueDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_MIN_VALUE_DESC', + TransferManagersByUpdatedBlockIdStddevPopulationAssetIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TransferManagersByUpdatedBlockIdStddevPopulationAssetIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TransferManagersByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TransferManagersByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TransferManagersByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TransferManagersByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TransferManagersByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdStddevPopulationExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXEMPTED_ENTITIES_ASC', + TransferManagersByUpdatedBlockIdStddevPopulationExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EXEMPTED_ENTITIES_DESC', + TransferManagersByUpdatedBlockIdStddevPopulationIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TransferManagersByUpdatedBlockIdStddevPopulationIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TransferManagersByUpdatedBlockIdStddevPopulationTypeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + TransferManagersByUpdatedBlockIdStddevPopulationTypeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + TransferManagersByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdStddevPopulationValueAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VALUE_ASC', + TransferManagersByUpdatedBlockIdStddevPopulationValueDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_VALUE_DESC', + TransferManagersByUpdatedBlockIdStddevSampleAssetIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TransferManagersByUpdatedBlockIdStddevSampleAssetIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TransferManagersByUpdatedBlockIdStddevSampleBlockRangeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TransferManagersByUpdatedBlockIdStddevSampleBlockRangeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TransferManagersByUpdatedBlockIdStddevSampleCreatedAtAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TransferManagersByUpdatedBlockIdStddevSampleCreatedAtDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TransferManagersByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdStddevSampleExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXEMPTED_ENTITIES_ASC', + TransferManagersByUpdatedBlockIdStddevSampleExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EXEMPTED_ENTITIES_DESC', + TransferManagersByUpdatedBlockIdStddevSampleIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TransferManagersByUpdatedBlockIdStddevSampleIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TransferManagersByUpdatedBlockIdStddevSampleTypeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + TransferManagersByUpdatedBlockIdStddevSampleTypeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + TransferManagersByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdStddevSampleValueAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_ASC', + TransferManagersByUpdatedBlockIdStddevSampleValueDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_VALUE_DESC', + TransferManagersByUpdatedBlockIdSumAssetIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TransferManagersByUpdatedBlockIdSumAssetIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TransferManagersByUpdatedBlockIdSumBlockRangeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TransferManagersByUpdatedBlockIdSumBlockRangeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TransferManagersByUpdatedBlockIdSumCreatedAtAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TransferManagersByUpdatedBlockIdSumCreatedAtDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TransferManagersByUpdatedBlockIdSumCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdSumCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdSumExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_EXEMPTED_ENTITIES_ASC', + TransferManagersByUpdatedBlockIdSumExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_EXEMPTED_ENTITIES_DESC', + TransferManagersByUpdatedBlockIdSumIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + TransferManagersByUpdatedBlockIdSumIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + TransferManagersByUpdatedBlockIdSumTypeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_TYPE_ASC', + TransferManagersByUpdatedBlockIdSumTypeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_TYPE_DESC', + TransferManagersByUpdatedBlockIdSumUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdSumUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdSumValueAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_VALUE_ASC', + TransferManagersByUpdatedBlockIdSumValueDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_SUM_VALUE_DESC', + TransferManagersByUpdatedBlockIdVariancePopulationAssetIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TransferManagersByUpdatedBlockIdVariancePopulationAssetIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TransferManagersByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TransferManagersByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TransferManagersByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TransferManagersByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TransferManagersByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdVariancePopulationExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXEMPTED_ENTITIES_ASC', + TransferManagersByUpdatedBlockIdVariancePopulationExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EXEMPTED_ENTITIES_DESC', + TransferManagersByUpdatedBlockIdVariancePopulationIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TransferManagersByUpdatedBlockIdVariancePopulationIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TransferManagersByUpdatedBlockIdVariancePopulationTypeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + TransferManagersByUpdatedBlockIdVariancePopulationTypeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + TransferManagersByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdVariancePopulationValueAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_ASC', + TransferManagersByUpdatedBlockIdVariancePopulationValueDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_VALUE_DESC', + TransferManagersByUpdatedBlockIdVarianceSampleAssetIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TransferManagersByUpdatedBlockIdVarianceSampleAssetIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TransferManagersByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TransferManagersByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TransferManagersByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TransferManagersByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TransferManagersByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdVarianceSampleExemptedEntitiesAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXEMPTED_ENTITIES_ASC', + TransferManagersByUpdatedBlockIdVarianceSampleExemptedEntitiesDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EXEMPTED_ENTITIES_DESC', + TransferManagersByUpdatedBlockIdVarianceSampleIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TransferManagersByUpdatedBlockIdVarianceSampleIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TransferManagersByUpdatedBlockIdVarianceSampleTypeAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + TransferManagersByUpdatedBlockIdVarianceSampleTypeDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + TransferManagersByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferManagersByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferManagersByUpdatedBlockIdVarianceSampleValueAsc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_ASC', + TransferManagersByUpdatedBlockIdVarianceSampleValueDesc = 'TRANSFER_MANAGERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_VALUE_DESC', + TrustedClaimIssuersByCreatedBlockIdAverageAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdAverageAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdAverageBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TrustedClaimIssuersByCreatedBlockIdAverageBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TrustedClaimIssuersByCreatedBlockIdAverageCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TrustedClaimIssuersByCreatedBlockIdAverageCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TrustedClaimIssuersByCreatedBlockIdAverageCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdAverageCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdAverageEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + TrustedClaimIssuersByCreatedBlockIdAverageEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + TrustedClaimIssuersByCreatedBlockIdAverageIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdAverageIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdAverageIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_ISSUER_ASC', + TrustedClaimIssuersByCreatedBlockIdAverageIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_ISSUER_DESC', + TrustedClaimIssuersByCreatedBlockIdAverageUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdAverageUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdCountAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_COUNT_ASC', + TrustedClaimIssuersByCreatedBlockIdCountDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_COUNT_DESC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ISSUER_ASC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ISSUER_DESC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdMaxAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdMaxAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdMaxBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TrustedClaimIssuersByCreatedBlockIdMaxBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TrustedClaimIssuersByCreatedBlockIdMaxCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TrustedClaimIssuersByCreatedBlockIdMaxCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TrustedClaimIssuersByCreatedBlockIdMaxCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdMaxCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdMaxEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + TrustedClaimIssuersByCreatedBlockIdMaxEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + TrustedClaimIssuersByCreatedBlockIdMaxIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdMaxIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdMaxIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_ISSUER_ASC', + TrustedClaimIssuersByCreatedBlockIdMaxIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_ISSUER_DESC', + TrustedClaimIssuersByCreatedBlockIdMaxUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdMaxUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdMinAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdMinAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdMinBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TrustedClaimIssuersByCreatedBlockIdMinBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TrustedClaimIssuersByCreatedBlockIdMinCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TrustedClaimIssuersByCreatedBlockIdMinCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TrustedClaimIssuersByCreatedBlockIdMinCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdMinCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdMinEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + TrustedClaimIssuersByCreatedBlockIdMinEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + TrustedClaimIssuersByCreatedBlockIdMinIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdMinIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdMinIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_ISSUER_ASC', + TrustedClaimIssuersByCreatedBlockIdMinIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_ISSUER_DESC', + TrustedClaimIssuersByCreatedBlockIdMinUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdMinUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ISSUER_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ISSUER_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ISSUER_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ISSUER_DESC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdSumAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdSumAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdSumBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TrustedClaimIssuersByCreatedBlockIdSumBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TrustedClaimIssuersByCreatedBlockIdSumCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TrustedClaimIssuersByCreatedBlockIdSumCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TrustedClaimIssuersByCreatedBlockIdSumCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdSumCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdSumEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + TrustedClaimIssuersByCreatedBlockIdSumEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + TrustedClaimIssuersByCreatedBlockIdSumIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdSumIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdSumIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_ISSUER_ASC', + TrustedClaimIssuersByCreatedBlockIdSumIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_ISSUER_DESC', + TrustedClaimIssuersByCreatedBlockIdSumUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdSumUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ISSUER_ASC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ISSUER_DESC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUER_ASC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUER_DESC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdAverageAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdAverageAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_ASSET_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdAverageBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + TrustedClaimIssuersByUpdatedBlockIdAverageBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + TrustedClaimIssuersByUpdatedBlockIdAverageCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + TrustedClaimIssuersByUpdatedBlockIdAverageCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + TrustedClaimIssuersByUpdatedBlockIdAverageCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdAverageCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdAverageEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_ASC', + TrustedClaimIssuersByUpdatedBlockIdAverageEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_EVENT_IDX_DESC', + TrustedClaimIssuersByUpdatedBlockIdAverageIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdAverageIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdAverageIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_ISSUER_ASC', + TrustedClaimIssuersByUpdatedBlockIdAverageIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_ISSUER_DESC', + TrustedClaimIssuersByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdCountAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_COUNT_ASC', + TrustedClaimIssuersByUpdatedBlockIdCountDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_COUNT_DESC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ISSUER_ASC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ISSUER_DESC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdMaxAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdMaxAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_ASSET_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdMaxBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + TrustedClaimIssuersByUpdatedBlockIdMaxBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + TrustedClaimIssuersByUpdatedBlockIdMaxCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + TrustedClaimIssuersByUpdatedBlockIdMaxCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + TrustedClaimIssuersByUpdatedBlockIdMaxCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdMaxCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdMaxEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_ASC', + TrustedClaimIssuersByUpdatedBlockIdMaxEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_EVENT_IDX_DESC', + TrustedClaimIssuersByUpdatedBlockIdMaxIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdMaxIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdMaxIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_ISSUER_ASC', + TrustedClaimIssuersByUpdatedBlockIdMaxIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_ISSUER_DESC', + TrustedClaimIssuersByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdMinAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdMinAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_ASSET_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdMinBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + TrustedClaimIssuersByUpdatedBlockIdMinBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + TrustedClaimIssuersByUpdatedBlockIdMinCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + TrustedClaimIssuersByUpdatedBlockIdMinCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + TrustedClaimIssuersByUpdatedBlockIdMinCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdMinCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdMinEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_ASC', + TrustedClaimIssuersByUpdatedBlockIdMinEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_EVENT_IDX_DESC', + TrustedClaimIssuersByUpdatedBlockIdMinIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdMinIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdMinIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_ISSUER_ASC', + TrustedClaimIssuersByUpdatedBlockIdMinIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_ISSUER_DESC', + TrustedClaimIssuersByUpdatedBlockIdMinUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdMinUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ISSUER_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ISSUER_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ISSUER_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ISSUER_DESC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdSumAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdSumAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_ASSET_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdSumBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + TrustedClaimIssuersByUpdatedBlockIdSumBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + TrustedClaimIssuersByUpdatedBlockIdSumCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + TrustedClaimIssuersByUpdatedBlockIdSumCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + TrustedClaimIssuersByUpdatedBlockIdSumCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdSumCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdSumEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_ASC', + TrustedClaimIssuersByUpdatedBlockIdSumEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_EVENT_IDX_DESC', + TrustedClaimIssuersByUpdatedBlockIdSumIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdSumIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdSumIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_ISSUER_ASC', + TrustedClaimIssuersByUpdatedBlockIdSumIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_ISSUER_DESC', + TrustedClaimIssuersByUpdatedBlockIdSumUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdSumUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ISSUER_ASC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ISSUER_DESC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleAssetIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleAssetIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleEventIdxAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleEventIdxDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleIssuerAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUER_ASC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleIssuerDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ISSUER_DESC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TrustedClaimIssuersByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'TRUSTED_CLAIM_ISSUERS_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdAverageBlockRangeAsc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + VenuesByCreatedBlockIdAverageBlockRangeDesc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + VenuesByCreatedBlockIdAverageCreatedAtAsc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + VenuesByCreatedBlockIdAverageCreatedAtDesc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + VenuesByCreatedBlockIdAverageCreatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdAverageCreatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdAverageDetailsAsc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_DETAILS_ASC', + VenuesByCreatedBlockIdAverageDetailsDesc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_DETAILS_DESC', + VenuesByCreatedBlockIdAverageIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_ID_ASC', + VenuesByCreatedBlockIdAverageIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_ID_DESC', + VenuesByCreatedBlockIdAverageOwnerIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_OWNER_ID_ASC', + VenuesByCreatedBlockIdAverageOwnerIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_OWNER_ID_DESC', + VenuesByCreatedBlockIdAverageSignersAsc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_SIGNERS_ASC', + VenuesByCreatedBlockIdAverageSignersDesc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_SIGNERS_DESC', + VenuesByCreatedBlockIdAverageTypeAsc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_ASC', + VenuesByCreatedBlockIdAverageTypeDesc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_TYPE_DESC', + VenuesByCreatedBlockIdAverageUpdatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdAverageUpdatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdCountAsc = 'VENUES_BY_CREATED_BLOCK_ID_COUNT_ASC', + VenuesByCreatedBlockIdCountDesc = 'VENUES_BY_CREATED_BLOCK_ID_COUNT_DESC', + VenuesByCreatedBlockIdDistinctCountBlockRangeAsc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + VenuesByCreatedBlockIdDistinctCountBlockRangeDesc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + VenuesByCreatedBlockIdDistinctCountCreatedAtAsc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + VenuesByCreatedBlockIdDistinctCountCreatedAtDesc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + VenuesByCreatedBlockIdDistinctCountCreatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdDistinctCountCreatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdDistinctCountDetailsAsc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DETAILS_ASC', + VenuesByCreatedBlockIdDistinctCountDetailsDesc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_DETAILS_DESC', + VenuesByCreatedBlockIdDistinctCountIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + VenuesByCreatedBlockIdDistinctCountIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + VenuesByCreatedBlockIdDistinctCountOwnerIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_ASC', + VenuesByCreatedBlockIdDistinctCountOwnerIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_DESC', + VenuesByCreatedBlockIdDistinctCountSignersAsc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNERS_ASC', + VenuesByCreatedBlockIdDistinctCountSignersDesc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_SIGNERS_DESC', + VenuesByCreatedBlockIdDistinctCountTypeAsc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + VenuesByCreatedBlockIdDistinctCountTypeDesc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + VenuesByCreatedBlockIdDistinctCountUpdatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdDistinctCountUpdatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdMaxBlockRangeAsc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + VenuesByCreatedBlockIdMaxBlockRangeDesc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + VenuesByCreatedBlockIdMaxCreatedAtAsc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_ASC', + VenuesByCreatedBlockIdMaxCreatedAtDesc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_CREATED_AT_DESC', + VenuesByCreatedBlockIdMaxCreatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdMaxCreatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdMaxDetailsAsc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_DETAILS_ASC', + VenuesByCreatedBlockIdMaxDetailsDesc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_DETAILS_DESC', + VenuesByCreatedBlockIdMaxIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_ID_ASC', + VenuesByCreatedBlockIdMaxIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_ID_DESC', + VenuesByCreatedBlockIdMaxOwnerIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_OWNER_ID_ASC', + VenuesByCreatedBlockIdMaxOwnerIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_OWNER_ID_DESC', + VenuesByCreatedBlockIdMaxSignersAsc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_SIGNERS_ASC', + VenuesByCreatedBlockIdMaxSignersDesc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_SIGNERS_DESC', + VenuesByCreatedBlockIdMaxTypeAsc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_TYPE_ASC', + VenuesByCreatedBlockIdMaxTypeDesc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_TYPE_DESC', + VenuesByCreatedBlockIdMaxUpdatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdMaxUpdatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdMinBlockRangeAsc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + VenuesByCreatedBlockIdMinBlockRangeDesc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + VenuesByCreatedBlockIdMinCreatedAtAsc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_ASC', + VenuesByCreatedBlockIdMinCreatedAtDesc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_CREATED_AT_DESC', + VenuesByCreatedBlockIdMinCreatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdMinCreatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdMinDetailsAsc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_DETAILS_ASC', + VenuesByCreatedBlockIdMinDetailsDesc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_DETAILS_DESC', + VenuesByCreatedBlockIdMinIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_ID_ASC', + VenuesByCreatedBlockIdMinIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_ID_DESC', + VenuesByCreatedBlockIdMinOwnerIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_OWNER_ID_ASC', + VenuesByCreatedBlockIdMinOwnerIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_OWNER_ID_DESC', + VenuesByCreatedBlockIdMinSignersAsc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_SIGNERS_ASC', + VenuesByCreatedBlockIdMinSignersDesc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_SIGNERS_DESC', + VenuesByCreatedBlockIdMinTypeAsc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_TYPE_ASC', + VenuesByCreatedBlockIdMinTypeDesc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_TYPE_DESC', + VenuesByCreatedBlockIdMinUpdatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdMinUpdatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdStddevPopulationBlockRangeAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + VenuesByCreatedBlockIdStddevPopulationBlockRangeDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + VenuesByCreatedBlockIdStddevPopulationCreatedAtAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + VenuesByCreatedBlockIdStddevPopulationCreatedAtDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + VenuesByCreatedBlockIdStddevPopulationCreatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdStddevPopulationCreatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdStddevPopulationDetailsAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DETAILS_ASC', + VenuesByCreatedBlockIdStddevPopulationDetailsDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_DETAILS_DESC', + VenuesByCreatedBlockIdStddevPopulationIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + VenuesByCreatedBlockIdStddevPopulationIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + VenuesByCreatedBlockIdStddevPopulationOwnerIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_ASC', + VenuesByCreatedBlockIdStddevPopulationOwnerIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_DESC', + VenuesByCreatedBlockIdStddevPopulationSignersAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNERS_ASC', + VenuesByCreatedBlockIdStddevPopulationSignersDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_SIGNERS_DESC', + VenuesByCreatedBlockIdStddevPopulationTypeAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + VenuesByCreatedBlockIdStddevPopulationTypeDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + VenuesByCreatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdStddevSampleBlockRangeAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + VenuesByCreatedBlockIdStddevSampleBlockRangeDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + VenuesByCreatedBlockIdStddevSampleCreatedAtAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + VenuesByCreatedBlockIdStddevSampleCreatedAtDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + VenuesByCreatedBlockIdStddevSampleCreatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdStddevSampleCreatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdStddevSampleDetailsAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DETAILS_ASC', + VenuesByCreatedBlockIdStddevSampleDetailsDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_DETAILS_DESC', + VenuesByCreatedBlockIdStddevSampleIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + VenuesByCreatedBlockIdStddevSampleIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + VenuesByCreatedBlockIdStddevSampleOwnerIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_ASC', + VenuesByCreatedBlockIdStddevSampleOwnerIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_DESC', + VenuesByCreatedBlockIdStddevSampleSignersAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNERS_ASC', + VenuesByCreatedBlockIdStddevSampleSignersDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_SIGNERS_DESC', + VenuesByCreatedBlockIdStddevSampleTypeAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + VenuesByCreatedBlockIdStddevSampleTypeDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + VenuesByCreatedBlockIdStddevSampleUpdatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdStddevSampleUpdatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdSumBlockRangeAsc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + VenuesByCreatedBlockIdSumBlockRangeDesc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + VenuesByCreatedBlockIdSumCreatedAtAsc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_ASC', + VenuesByCreatedBlockIdSumCreatedAtDesc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_CREATED_AT_DESC', + VenuesByCreatedBlockIdSumCreatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdSumCreatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdSumDetailsAsc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_DETAILS_ASC', + VenuesByCreatedBlockIdSumDetailsDesc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_DETAILS_DESC', + VenuesByCreatedBlockIdSumIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_ID_ASC', + VenuesByCreatedBlockIdSumIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_ID_DESC', + VenuesByCreatedBlockIdSumOwnerIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_OWNER_ID_ASC', + VenuesByCreatedBlockIdSumOwnerIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_OWNER_ID_DESC', + VenuesByCreatedBlockIdSumSignersAsc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_SIGNERS_ASC', + VenuesByCreatedBlockIdSumSignersDesc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_SIGNERS_DESC', + VenuesByCreatedBlockIdSumTypeAsc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_TYPE_ASC', + VenuesByCreatedBlockIdSumTypeDesc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_TYPE_DESC', + VenuesByCreatedBlockIdSumUpdatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdSumUpdatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdVariancePopulationBlockRangeAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + VenuesByCreatedBlockIdVariancePopulationBlockRangeDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + VenuesByCreatedBlockIdVariancePopulationCreatedAtAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + VenuesByCreatedBlockIdVariancePopulationCreatedAtDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + VenuesByCreatedBlockIdVariancePopulationCreatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdVariancePopulationCreatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdVariancePopulationDetailsAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DETAILS_ASC', + VenuesByCreatedBlockIdVariancePopulationDetailsDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_DETAILS_DESC', + VenuesByCreatedBlockIdVariancePopulationIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + VenuesByCreatedBlockIdVariancePopulationIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + VenuesByCreatedBlockIdVariancePopulationOwnerIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_ASC', + VenuesByCreatedBlockIdVariancePopulationOwnerIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_DESC', + VenuesByCreatedBlockIdVariancePopulationSignersAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNERS_ASC', + VenuesByCreatedBlockIdVariancePopulationSignersDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_SIGNERS_DESC', + VenuesByCreatedBlockIdVariancePopulationTypeAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + VenuesByCreatedBlockIdVariancePopulationTypeDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + VenuesByCreatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdVarianceSampleBlockRangeAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + VenuesByCreatedBlockIdVarianceSampleBlockRangeDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + VenuesByCreatedBlockIdVarianceSampleCreatedAtAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + VenuesByCreatedBlockIdVarianceSampleCreatedAtDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + VenuesByCreatedBlockIdVarianceSampleCreatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdVarianceSampleCreatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + VenuesByCreatedBlockIdVarianceSampleDetailsAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DETAILS_ASC', + VenuesByCreatedBlockIdVarianceSampleDetailsDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_DETAILS_DESC', + VenuesByCreatedBlockIdVarianceSampleIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + VenuesByCreatedBlockIdVarianceSampleIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + VenuesByCreatedBlockIdVarianceSampleOwnerIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_ASC', + VenuesByCreatedBlockIdVarianceSampleOwnerIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_DESC', + VenuesByCreatedBlockIdVarianceSampleSignersAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNERS_ASC', + VenuesByCreatedBlockIdVarianceSampleSignersDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNERS_DESC', + VenuesByCreatedBlockIdVarianceSampleTypeAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + VenuesByCreatedBlockIdVarianceSampleTypeDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + VenuesByCreatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + VenuesByCreatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'VENUES_BY_CREATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdAverageBlockRangeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_ASC', + VenuesByUpdatedBlockIdAverageBlockRangeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_BLOCK_RANGE_DESC', + VenuesByUpdatedBlockIdAverageCreatedAtAsc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_ASC', + VenuesByUpdatedBlockIdAverageCreatedAtDesc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_AT_DESC', + VenuesByUpdatedBlockIdAverageCreatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdAverageCreatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdAverageDetailsAsc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_DETAILS_ASC', + VenuesByUpdatedBlockIdAverageDetailsDesc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_DETAILS_DESC', + VenuesByUpdatedBlockIdAverageIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_ASC', + VenuesByUpdatedBlockIdAverageIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_ID_DESC', + VenuesByUpdatedBlockIdAverageOwnerIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_OWNER_ID_ASC', + VenuesByUpdatedBlockIdAverageOwnerIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_OWNER_ID_DESC', + VenuesByUpdatedBlockIdAverageSignersAsc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNERS_ASC', + VenuesByUpdatedBlockIdAverageSignersDesc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_SIGNERS_DESC', + VenuesByUpdatedBlockIdAverageTypeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_ASC', + VenuesByUpdatedBlockIdAverageTypeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_TYPE_DESC', + VenuesByUpdatedBlockIdAverageUpdatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdAverageUpdatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdCountAsc = 'VENUES_BY_UPDATED_BLOCK_ID_COUNT_ASC', + VenuesByUpdatedBlockIdCountDesc = 'VENUES_BY_UPDATED_BLOCK_ID_COUNT_DESC', + VenuesByUpdatedBlockIdDistinctCountBlockRangeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + VenuesByUpdatedBlockIdDistinctCountBlockRangeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + VenuesByUpdatedBlockIdDistinctCountCreatedAtAsc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_ASC', + VenuesByUpdatedBlockIdDistinctCountCreatedAtDesc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_AT_DESC', + VenuesByUpdatedBlockIdDistinctCountCreatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdDistinctCountCreatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdDistinctCountDetailsAsc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DETAILS_ASC', + VenuesByUpdatedBlockIdDistinctCountDetailsDesc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_DETAILS_DESC', + VenuesByUpdatedBlockIdDistinctCountIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_ASC', + VenuesByUpdatedBlockIdDistinctCountIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_ID_DESC', + VenuesByUpdatedBlockIdDistinctCountOwnerIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_ASC', + VenuesByUpdatedBlockIdDistinctCountOwnerIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_OWNER_ID_DESC', + VenuesByUpdatedBlockIdDistinctCountSignersAsc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNERS_ASC', + VenuesByUpdatedBlockIdDistinctCountSignersDesc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_SIGNERS_DESC', + VenuesByUpdatedBlockIdDistinctCountTypeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_ASC', + VenuesByUpdatedBlockIdDistinctCountTypeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_TYPE_DESC', + VenuesByUpdatedBlockIdDistinctCountUpdatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdDistinctCountUpdatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdMaxBlockRangeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_ASC', + VenuesByUpdatedBlockIdMaxBlockRangeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_BLOCK_RANGE_DESC', + VenuesByUpdatedBlockIdMaxCreatedAtAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_ASC', + VenuesByUpdatedBlockIdMaxCreatedAtDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_CREATED_AT_DESC', + VenuesByUpdatedBlockIdMaxCreatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdMaxCreatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_CREATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdMaxDetailsAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_DETAILS_ASC', + VenuesByUpdatedBlockIdMaxDetailsDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_DETAILS_DESC', + VenuesByUpdatedBlockIdMaxIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_ID_ASC', + VenuesByUpdatedBlockIdMaxIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_ID_DESC', + VenuesByUpdatedBlockIdMaxOwnerIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_OWNER_ID_ASC', + VenuesByUpdatedBlockIdMaxOwnerIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_OWNER_ID_DESC', + VenuesByUpdatedBlockIdMaxSignersAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_SIGNERS_ASC', + VenuesByUpdatedBlockIdMaxSignersDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_SIGNERS_DESC', + VenuesByUpdatedBlockIdMaxTypeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_TYPE_ASC', + VenuesByUpdatedBlockIdMaxTypeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_TYPE_DESC', + VenuesByUpdatedBlockIdMaxUpdatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdMaxUpdatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MAX_UPDATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdMinBlockRangeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_ASC', + VenuesByUpdatedBlockIdMinBlockRangeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_BLOCK_RANGE_DESC', + VenuesByUpdatedBlockIdMinCreatedAtAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_ASC', + VenuesByUpdatedBlockIdMinCreatedAtDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_CREATED_AT_DESC', + VenuesByUpdatedBlockIdMinCreatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdMinCreatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_CREATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdMinDetailsAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_DETAILS_ASC', + VenuesByUpdatedBlockIdMinDetailsDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_DETAILS_DESC', + VenuesByUpdatedBlockIdMinIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_ID_ASC', + VenuesByUpdatedBlockIdMinIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_ID_DESC', + VenuesByUpdatedBlockIdMinOwnerIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_OWNER_ID_ASC', + VenuesByUpdatedBlockIdMinOwnerIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_OWNER_ID_DESC', + VenuesByUpdatedBlockIdMinSignersAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_SIGNERS_ASC', + VenuesByUpdatedBlockIdMinSignersDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_SIGNERS_DESC', + VenuesByUpdatedBlockIdMinTypeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_TYPE_ASC', + VenuesByUpdatedBlockIdMinTypeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_TYPE_DESC', + VenuesByUpdatedBlockIdMinUpdatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdMinUpdatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_MIN_UPDATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdStddevPopulationBlockRangeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + VenuesByUpdatedBlockIdStddevPopulationBlockRangeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + VenuesByUpdatedBlockIdStddevPopulationCreatedAtAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_ASC', + VenuesByUpdatedBlockIdStddevPopulationCreatedAtDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_AT_DESC', + VenuesByUpdatedBlockIdStddevPopulationCreatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdStddevPopulationCreatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdStddevPopulationDetailsAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DETAILS_ASC', + VenuesByUpdatedBlockIdStddevPopulationDetailsDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_DETAILS_DESC', + VenuesByUpdatedBlockIdStddevPopulationIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_ASC', + VenuesByUpdatedBlockIdStddevPopulationIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_ID_DESC', + VenuesByUpdatedBlockIdStddevPopulationOwnerIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_ASC', + VenuesByUpdatedBlockIdStddevPopulationOwnerIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_OWNER_ID_DESC', + VenuesByUpdatedBlockIdStddevPopulationSignersAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNERS_ASC', + VenuesByUpdatedBlockIdStddevPopulationSignersDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_SIGNERS_DESC', + VenuesByUpdatedBlockIdStddevPopulationTypeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_ASC', + VenuesByUpdatedBlockIdStddevPopulationTypeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_TYPE_DESC', + VenuesByUpdatedBlockIdStddevPopulationUpdatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdStddevPopulationUpdatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdStddevSampleBlockRangeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + VenuesByUpdatedBlockIdStddevSampleBlockRangeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + VenuesByUpdatedBlockIdStddevSampleCreatedAtAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + VenuesByUpdatedBlockIdStddevSampleCreatedAtDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + VenuesByUpdatedBlockIdStddevSampleCreatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdStddevSampleCreatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdStddevSampleDetailsAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DETAILS_ASC', + VenuesByUpdatedBlockIdStddevSampleDetailsDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_DETAILS_DESC', + VenuesByUpdatedBlockIdStddevSampleIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_ASC', + VenuesByUpdatedBlockIdStddevSampleIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_ID_DESC', + VenuesByUpdatedBlockIdStddevSampleOwnerIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_ASC', + VenuesByUpdatedBlockIdStddevSampleOwnerIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_OWNER_ID_DESC', + VenuesByUpdatedBlockIdStddevSampleSignersAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNERS_ASC', + VenuesByUpdatedBlockIdStddevSampleSignersDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_SIGNERS_DESC', + VenuesByUpdatedBlockIdStddevSampleTypeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_ASC', + VenuesByUpdatedBlockIdStddevSampleTypeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_TYPE_DESC', + VenuesByUpdatedBlockIdStddevSampleUpdatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdStddevSampleUpdatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdSumBlockRangeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_ASC', + VenuesByUpdatedBlockIdSumBlockRangeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_BLOCK_RANGE_DESC', + VenuesByUpdatedBlockIdSumCreatedAtAsc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_ASC', + VenuesByUpdatedBlockIdSumCreatedAtDesc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_CREATED_AT_DESC', + VenuesByUpdatedBlockIdSumCreatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdSumCreatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_CREATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdSumDetailsAsc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_DETAILS_ASC', + VenuesByUpdatedBlockIdSumDetailsDesc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_DETAILS_DESC', + VenuesByUpdatedBlockIdSumIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_ID_ASC', + VenuesByUpdatedBlockIdSumIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_ID_DESC', + VenuesByUpdatedBlockIdSumOwnerIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_OWNER_ID_ASC', + VenuesByUpdatedBlockIdSumOwnerIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_OWNER_ID_DESC', + VenuesByUpdatedBlockIdSumSignersAsc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_SIGNERS_ASC', + VenuesByUpdatedBlockIdSumSignersDesc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_SIGNERS_DESC', + VenuesByUpdatedBlockIdSumTypeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_TYPE_ASC', + VenuesByUpdatedBlockIdSumTypeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_TYPE_DESC', + VenuesByUpdatedBlockIdSumUpdatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdSumUpdatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_SUM_UPDATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdVariancePopulationBlockRangeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + VenuesByUpdatedBlockIdVariancePopulationBlockRangeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + VenuesByUpdatedBlockIdVariancePopulationCreatedAtAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + VenuesByUpdatedBlockIdVariancePopulationCreatedAtDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + VenuesByUpdatedBlockIdVariancePopulationCreatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdVariancePopulationCreatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdVariancePopulationDetailsAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DETAILS_ASC', + VenuesByUpdatedBlockIdVariancePopulationDetailsDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_DETAILS_DESC', + VenuesByUpdatedBlockIdVariancePopulationIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_ASC', + VenuesByUpdatedBlockIdVariancePopulationIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_ID_DESC', + VenuesByUpdatedBlockIdVariancePopulationOwnerIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_ASC', + VenuesByUpdatedBlockIdVariancePopulationOwnerIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_OWNER_ID_DESC', + VenuesByUpdatedBlockIdVariancePopulationSignersAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNERS_ASC', + VenuesByUpdatedBlockIdVariancePopulationSignersDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_SIGNERS_DESC', + VenuesByUpdatedBlockIdVariancePopulationTypeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_ASC', + VenuesByUpdatedBlockIdVariancePopulationTypeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_TYPE_DESC', + VenuesByUpdatedBlockIdVariancePopulationUpdatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdVariancePopulationUpdatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdVarianceSampleBlockRangeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + VenuesByUpdatedBlockIdVarianceSampleBlockRangeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + VenuesByUpdatedBlockIdVarianceSampleCreatedAtAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + VenuesByUpdatedBlockIdVarianceSampleCreatedAtDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + VenuesByUpdatedBlockIdVarianceSampleCreatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdVarianceSampleCreatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + VenuesByUpdatedBlockIdVarianceSampleDetailsAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DETAILS_ASC', + VenuesByUpdatedBlockIdVarianceSampleDetailsDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_DETAILS_DESC', + VenuesByUpdatedBlockIdVarianceSampleIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_ASC', + VenuesByUpdatedBlockIdVarianceSampleIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_ID_DESC', + VenuesByUpdatedBlockIdVarianceSampleOwnerIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_ASC', + VenuesByUpdatedBlockIdVarianceSampleOwnerIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_OWNER_ID_DESC', + VenuesByUpdatedBlockIdVarianceSampleSignersAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNERS_ASC', + VenuesByUpdatedBlockIdVarianceSampleSignersDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_SIGNERS_DESC', + VenuesByUpdatedBlockIdVarianceSampleTypeAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_ASC', + VenuesByUpdatedBlockIdVarianceSampleTypeDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_TYPE_DESC', + VenuesByUpdatedBlockIdVarianceSampleUpdatedBlockIdAsc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + VenuesByUpdatedBlockIdVarianceSampleUpdatedBlockIdDesc = 'VENUES_BY_UPDATED_BLOCK_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', +} + +/** A filter to be used against Boolean fields. All fields are combined with a logical ‘and.’ */ +export type BooleanFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type BridgeEvent = Node & { + __typename?: 'BridgeEvent'; + amount: Scalars['BigFloat']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `BridgeEvent`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + eventIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `BridgeEvent`. */ + identity?: Maybe; + identityId: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + recipient: Scalars['String']['output']; + txHash: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `BridgeEvent`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type BridgeEventAggregates = { + __typename?: 'BridgeEventAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `BridgeEvent` object types. */ +export type BridgeEventAggregatesFilter = { + /** Mean average aggregate over matching `BridgeEvent` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `BridgeEvent` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `BridgeEvent` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `BridgeEvent` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `BridgeEvent` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `BridgeEvent` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `BridgeEvent` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `BridgeEvent` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `BridgeEvent` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `BridgeEvent` objects. */ + varianceSample?: InputMaybe; +}; + +export type BridgeEventAverageAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventAverageAggregates = { + __typename?: 'BridgeEventAverageAggregates'; + /** Mean average of amount across the matching connection */ + amount?: Maybe; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type BridgeEventDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + amount?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + recipient?: InputMaybe; + txHash?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type BridgeEventDistinctCountAggregates = { + __typename?: 'BridgeEventDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of recipient across the matching connection */ + recipient?: Maybe; + /** Distinct count of txHash across the matching connection */ + txHash?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `BridgeEvent` object types. All fields are combined with a logical ‘and.’ */ +export type BridgeEventFilter = { + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` relation. */ + identity?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `recipient` field. */ + recipient?: InputMaybe; + /** Filter by the object’s `txHash` field. */ + txHash?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type BridgeEventMaxAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventMaxAggregates = { + __typename?: 'BridgeEventMaxAggregates'; + /** Maximum of amount across the matching connection */ + amount?: Maybe; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type BridgeEventMinAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventMinAggregates = { + __typename?: 'BridgeEventMinAggregates'; + /** Minimum of amount across the matching connection */ + amount?: Maybe; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type BridgeEventStddevPopulationAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventStddevPopulationAggregates = { + __typename?: 'BridgeEventStddevPopulationAggregates'; + /** Population standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type BridgeEventStddevSampleAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventStddevSampleAggregates = { + __typename?: 'BridgeEventStddevSampleAggregates'; + /** Sample standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type BridgeEventSumAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventSumAggregates = { + __typename?: 'BridgeEventSumAggregates'; + /** Sum of amount across the matching connection */ + amount: Scalars['BigFloat']['output']; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; +}; + +export type BridgeEventVariancePopulationAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventVariancePopulationAggregates = { + __typename?: 'BridgeEventVariancePopulationAggregates'; + /** Population variance of amount across the matching connection */ + amount?: Maybe; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type BridgeEventVarianceSampleAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventVarianceSampleAggregates = { + __typename?: 'BridgeEventVarianceSampleAggregates'; + /** Sample variance of amount across the matching connection */ + amount?: Maybe; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +/** A connection to a list of `BridgeEvent` values. */ +export type BridgeEventsConnection = { + __typename?: 'BridgeEventsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `BridgeEvent` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `BridgeEvent` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `BridgeEvent` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `BridgeEvent` values. */ +export type BridgeEventsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `BridgeEvent` edge in the connection. */ +export type BridgeEventsEdge = { + __typename?: 'BridgeEventsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `BridgeEvent` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `BridgeEvent` for usage during aggregation. */ +export enum BridgeEventsGroupBy { + Amount = 'AMOUNT', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + EventIdx = 'EVENT_IDX', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + Recipient = 'RECIPIENT', + TxHash = 'TX_HASH', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type BridgeEventsHavingAverageInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventsHavingDistinctCountInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Conditions for `BridgeEvent` aggregates. */ +export type BridgeEventsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type BridgeEventsHavingMaxInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventsHavingMinInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventsHavingStddevPopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventsHavingStddevSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventsHavingSumInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventsHavingVariancePopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type BridgeEventsHavingVarianceSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Methods to use when ordering `BridgeEvent`. */ +export enum BridgeEventsOrderBy { + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + RecipientAsc = 'RECIPIENT_ASC', + RecipientDesc = 'RECIPIENT_DESC', + TxHashAsc = 'TX_HASH_ASC', + TxHashDesc = 'TX_HASH_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** Represents all known chain extrinsics */ +export enum CallIdEnum { + Abdicate = 'abdicate', + AbdicateMembership = 'abdicate_membership', + AcceptAssetOwnershipTransfer = 'accept_asset_ownership_transfer', + AcceptAuthorization = 'accept_authorization', + AcceptBecomeAgent = 'accept_become_agent', + AcceptMasterKey = 'accept_master_key', + AcceptMultisigSignerAsIdentity = 'accept_multisig_signer_as_identity', + AcceptMultisigSignerAsKey = 'accept_multisig_signer_as_key', + AcceptPayingKey = 'accept_paying_key', + AcceptPortfolioCustody = 'accept_portfolio_custody', + AcceptPrimaryIssuanceAgentTransfer = 'accept_primary_issuance_agent_transfer', + AcceptPrimaryKey = 'accept_primary_key', + AcceptTickerTransfer = 'accept_ticker_transfer', + AddActiveRule = 'add_active_rule', + AddAndAffirmInstruction = 'add_and_affirm_instruction', + AddAndAffirmInstructionWithMemo = 'add_and_affirm_instruction_with_memo', + AddAndAffirmInstructionWithMemoV2 = 'add_and_affirm_instruction_with_memo_v2', + AddAndAffirmWithMediators = 'add_and_affirm_with_mediators', + AddAndAuthorizeInstruction = 'add_and_authorize_instruction', + AddAuthorization = 'add_authorization', + AddBallot = 'add_ballot', + AddClaim = 'add_claim', + AddComplianceRequirement = 'add_compliance_requirement', + AddDefaultTrustedClaimIssuer = 'add_default_trusted_claim_issuer', + AddDocuments = 'add_documents', + AddExemptedEntities = 'add_exempted_entities', + AddExtension = 'add_extension', + AddFreezeAdmin = 'add_freeze_admin', + AddInstruction = 'add_instruction', + AddInstructionWithMediators = 'add_instruction_with_mediators', + AddInstructionWithMemo = 'add_instruction_with_memo', + AddInstructionWithMemoV2 = 'add_instruction_with_memo_v2', + AddInvestorUniquenessClaim = 'add_investor_uniqueness_claim', + AddInvestorUniquenessClaimV2 = 'add_investor_uniqueness_claim_v2', + AddMandatoryMediators = 'add_mandatory_mediators', + AddMediatorAccount = 'add_mediator_account', + AddMember = 'add_member', + AddMultisigSigner = 'add_multisig_signer', + AddMultisigSignersViaCreator = 'add_multisig_signers_via_creator', + AddPermissionedValidator = 'add_permissioned_validator', + AddRangeProof = 'add_range_proof', + AddSecondaryKeysWithAuthorization = 'add_secondary_keys_with_authorization', + AddSecondaryKeysWithAuthorizationOld = 'add_secondary_keys_with_authorization_old', + AddTransaction = 'add_transaction', + AddTransferManager = 'add_transfer_manager', + AddVerifyRangeProof = 'add_verify_range_proof', + AffirmInstruction = 'affirm_instruction', + AffirmInstructionAsMediator = 'affirm_instruction_as_mediator', + AffirmInstructionV2 = 'affirm_instruction_v2', + AffirmInstructionWithCount = 'affirm_instruction_with_count', + AffirmTransactions = 'affirm_transactions', + AffirmWithReceipts = 'affirm_with_receipts', + AffirmWithReceiptsWithCount = 'affirm_with_receipts_with_count', + AllowIdentityToCreatePortfolios = 'allow_identity_to_create_portfolios', + AllowVenues = 'allow_venues', + AmendProposal = 'amend_proposal', + ApplyIncomingBalance = 'apply_incoming_balance', + ApplyIncomingBalances = 'apply_incoming_balances', + Approve = 'approve', + ApproveAsIdentity = 'approve_as_identity', + ApproveAsKey = 'approve_as_key', + ApproveCommitteeProposal = 'approve_committee_proposal', + ArchiveExtension = 'archive_extension', + AsDerivative = 'as_derivative', + AttachBallot = 'attach_ballot', + AuthorizeInstruction = 'authorize_instruction', + AuthorizeWithReceipts = 'authorize_with_receipts', + Batch = 'batch', + BatchAcceptAuthorization = 'batch_accept_authorization', + BatchAddAuthorization = 'batch_add_authorization', + BatchAddClaim = 'batch_add_claim', + BatchAddDefaultTrustedClaimIssuer = 'batch_add_default_trusted_claim_issuer', + BatchAddDocument = 'batch_add_document', + BatchAddSecondaryKeyWithAuthorization = 'batch_add_secondary_key_with_authorization', + BatchAddSigningKeyWithAuthorization = 'batch_add_signing_key_with_authorization', + BatchAll = 'batch_all', + BatchAtomic = 'batch_atomic', + BatchChangeAssetRule = 'batch_change_asset_rule', + BatchChangeComplianceRequirement = 'batch_change_compliance_requirement', + BatchForceHandleBridgeTx = 'batch_force_handle_bridge_tx', + BatchFreezeTx = 'batch_freeze_tx', + BatchHandleBridgeTx = 'batch_handle_bridge_tx', + BatchIssue = 'batch_issue', + BatchOld = 'batch_old', + BatchOptimistic = 'batch_optimistic', + BatchProposeBridgeTx = 'batch_propose_bridge_tx', + BatchRemoveAuthorization = 'batch_remove_authorization', + BatchRemoveDefaultTrustedClaimIssuer = 'batch_remove_default_trusted_claim_issuer', + BatchRemoveDocument = 'batch_remove_document', + BatchRevokeClaim = 'batch_revoke_claim', + BatchUnfreezeTx = 'batch_unfreeze_tx', + BatchUpdateAssetStats = 'batch_update_asset_stats', + Bond = 'bond', + BondAdditionalDeposit = 'bond_additional_deposit', + BondExtra = 'bond_extra', + Burn = 'burn', + BurnAccountBalance = 'burn_account_balance', + BuyTokens = 'buy_tokens', + Call = 'call', + CallOldWeight = 'call_old_weight', + Cancel = 'cancel', + CancelBallot = 'cancel_ballot', + CancelDeferredSlash = 'cancel_deferred_slash', + CancelNamed = 'cancel_named', + CancelProposal = 'cancel_proposal', + CddRegisterDid = 'cdd_register_did', + CddRegisterDidWithCdd = 'cdd_register_did_with_cdd', + ChangeAdmin = 'change_admin', + ChangeAllSignersAndSigsRequired = 'change_all_signers_and_sigs_required', + ChangeAssetRule = 'change_asset_rule', + ChangeBaseFee = 'change_base_fee', + ChangeBridgeExempted = 'change_bridge_exempted', + ChangeBridgeLimit = 'change_bridge_limit', + ChangeCddRequirementForMkRotation = 'change_cdd_requirement_for_mk_rotation', + ChangeCoefficient = 'change_coefficient', + ChangeComplianceRequirement = 'change_compliance_requirement', + ChangeController = 'change_controller', + ChangeEnd = 'change_end', + ChangeGroup = 'change_group', + ChangeMeta = 'change_meta', + ChangeRcv = 'change_rcv', + ChangeReceiptValidity = 'change_receipt_validity', + ChangeRecordDate = 'change_record_date', + ChangeSigsRequired = 'change_sigs_required', + ChangeSigsRequiredViaCreator = 'change_sigs_required_via_creator', + ChangeSlashingAllowedFor = 'change_slashing_allowed_for', + ChangeTemplateFees = 'change_template_fees', + ChangeTemplateMetaUrl = 'change_template_meta_url', + ChangeTimelock = 'change_timelock', + Chill = 'chill', + ChillFromGovernance = 'chill_from_governance', + Claim = 'claim', + ClaimClassicTicker = 'claim_classic_ticker', + ClaimItnReward = 'claim_itn_reward', + ClaimReceipt = 'claim_receipt', + ClaimSurcharge = 'claim_surcharge', + ClaimUnclaimed = 'claim_unclaimed', + ClearSnapshot = 'clear_snapshot', + Close = 'close', + ContinueMigrate = 'continue_migrate', + ControlAutoMigration = 'control_auto_migration', + ControllerRedeem = 'controller_redeem', + ControllerTransfer = 'controller_transfer', + CreateAccount = 'create_account', + CreateAndChangeCustomGroup = 'create_and_change_custom_group', + CreateAsset = 'create_asset', + CreateAssetAndMint = 'create_asset_and_mint', + CreateAssetWithCustomType = 'create_asset_with_custom_type', + CreateCheckpoint = 'create_checkpoint', + CreateChildIdentities = 'create_child_identities', + CreateChildIdentity = 'create_child_identity', + CreateCustodyPortfolio = 'create_custody_portfolio', + CreateFundraiser = 'create_fundraiser', + CreateGroup = 'create_group', + CreateGroupAndAddAuth = 'create_group_and_add_auth', + CreateMultisig = 'create_multisig', + CreateNftCollection = 'create_nft_collection', + CreateOrApproveProposalAsIdentity = 'create_or_approve_proposal_as_identity', + CreateOrApproveProposalAsKey = 'create_or_approve_proposal_as_key', + CreatePortfolio = 'create_portfolio', + CreateProposalAsIdentity = 'create_proposal_as_identity', + CreateProposalAsKey = 'create_proposal_as_key', + CreateSchedule = 'create_schedule', + CreateVenue = 'create_venue', + DecreasePolyxLimit = 'decrease_polyx_limit', + DeletePortfolio = 'delete_portfolio', + DepositBlockRewardReserveBalance = 'deposit_block_reward_reserve_balance', + DisableMember = 'disable_member', + DisallowVenues = 'disallow_venues', + Disbursement = 'disbursement', + DispatchAs = 'dispatch_as', + Distribute = 'distribute', + EmergencyReferendum = 'emergency_referendum', + EnableIndividualCommissions = 'enable_individual_commissions', + EnactReferendum = 'enact_referendum', + EnactSnapshotResults = 'enact_snapshot_results', + ExecuteManualInstruction = 'execute_manual_instruction', + ExecuteScheduledInstruction = 'execute_scheduled_instruction', + ExecuteScheduledInstructionV2 = 'execute_scheduled_instruction_v2', + ExecuteScheduledInstructionV3 = 'execute_scheduled_instruction_v3', + ExecuteScheduledPip = 'execute_scheduled_pip', + ExecuteScheduledProposal = 'execute_scheduled_proposal', + ExecuteTransaction = 'execute_transaction', + ExemptAssetAffirmation = 'exempt_asset_affirmation', + ExemptTickerAffirmation = 'exempt_ticker_affirmation', + ExpireScheduledPip = 'expire_scheduled_pip', + FastTrackProposal = 'fast_track_proposal', + FillBlock = 'fill_block', + FinalHint = 'final_hint', + ForceBatch = 'force_batch', + ForceHandleBridgeTx = 'force_handle_bridge_tx', + ForceNewEra = 'force_new_era', + ForceNewEraAlways = 'force_new_era_always', + ForceNoEras = 'force_no_eras', + ForceSetProgress = 'force_set_progress', + ForceTransfer = 'force_transfer', + ForceUnstake = 'force_unstake', + ForwardedCall = 'forwarded_call', + Free = 'free', + Freeze = 'freeze', + FreezeFundraiser = 'freeze_fundraiser', + FreezeInstantiation = 'freeze_instantiation', + FreezeSecondaryKeys = 'freeze_secondary_keys', + FreezeSigningKeys = 'freeze_signing_keys', + FreezeTxs = 'freeze_txs', + GcAddCddClaim = 'gc_add_cdd_claim', + GcRevokeCddClaim = 'gc_revoke_cdd_claim', + GetCddOf = 'get_cdd_of', + GetMyDid = 'get_my_did', + HandleBridgeTx = 'handle_bridge_tx', + HandleScheduledBridgeTx = 'handle_scheduled_bridge_tx', + Heartbeat = 'heartbeat', + IncreaseCustodyAllowance = 'increase_custody_allowance', + IncreaseCustodyAllowanceOf = 'increase_custody_allowance_of', + IncreasePolyxLimit = 'increase_polyx_limit', + IncreaseValidatorCount = 'increase_validator_count', + InitiateCorporateAction = 'initiate_corporate_action', + InitiateCorporateActionAndDistribute = 'initiate_corporate_action_and_distribute', + Instantiate = 'instantiate', + InstantiateOldWeight = 'instantiate_old_weight', + InstantiateWithCode = 'instantiate_with_code', + InstantiateWithCodeAsPrimaryKey = 'instantiate_with_code_as_primary_key', + InstantiateWithCodeOldWeight = 'instantiate_with_code_old_weight', + InstantiateWithCodePerms = 'instantiate_with_code_perms', + InstantiateWithHashAsPrimaryKey = 'instantiate_with_hash_as_primary_key', + InstantiateWithHashPerms = 'instantiate_with_hash_perms', + InvalidateCddClaims = 'invalidate_cdd_claims', + Invest = 'invest', + IsIssuable = 'is_issuable', + Issue = 'issue', + IssueNft = 'issue_nft', + JoinIdentityAsIdentity = 'join_identity_as_identity', + JoinIdentityAsKey = 'join_identity_as_key', + KillPrefix = 'kill_prefix', + KillProposal = 'kill_proposal', + KillStorage = 'kill_storage', + LaunchSto = 'launch_sto', + LeaveIdentityAsIdentity = 'leave_identity_as_identity', + LeaveIdentityAsKey = 'leave_identity_as_key', + LegacySetPermissionToSigner = 'legacy_set_permission_to_signer', + LinkCaDoc = 'link_ca_doc', + LinkTickerToAssetId = 'link_ticker_to_asset_id', + MakeDivisible = 'make_divisible', + MakeMultisigPrimary = 'make_multisig_primary', + MakeMultisigSecondary = 'make_multisig_secondary', + MakeMultisigSigner = 'make_multisig_signer', + MediatorAffirmTransaction = 'mediator_affirm_transaction', + MediatorUnaffirmTransaction = 'mediator_unaffirm_transaction', + MigrateCustomChild = 'migrate_custom_child', + MigrateCustomTop = 'migrate_custom_top', + Mint = 'mint', + MockCddRegisterDid = 'mock_cdd_register_did', + ModifyExemptionList = 'modify_exemption_list', + ModifyFundraiserWindow = 'modify_fundraiser_window', + MoveAssets = 'move_assets', + MovePortfolioFunds = 'move_portfolio_funds', + MovePortfolioFundsV2 = 'move_portfolio_funds_v2', + New = 'new', + Nominate = 'nominate', + NotePreimage = 'note_preimage', + NoteStalled = 'note_stalled', + OverrideReferendumEnactmentPeriod = 'override_referendum_enactment_period', + PauseAssetCompliance = 'pause_asset_compliance', + PauseAssetRules = 'pause_asset_rules', + PauseSto = 'pause_sto', + PayoutStakers = 'payout_stakers', + PayoutStakersBySystem = 'payout_stakers_by_system', + PlaceholderAddAndAffirmInstruction = 'placeholder_add_and_affirm_instruction', + PlaceholderAddAndAffirmInstructionWithMemo = 'placeholder_add_and_affirm_instruction_with_memo', + PlaceholderAddInstruction = 'placeholder_add_instruction', + PlaceholderAddInstructionWithMemo = 'placeholder_add_instruction_with_memo', + PlaceholderAffirmInstruction = 'placeholder_affirm_instruction', + PlaceholderClaimReceipt = 'placeholder_claim_receipt', + PlaceholderFillBlock = 'placeholder_fill_block', + PlaceholderLegacySetPermissionToSigner = 'placeholder_legacy_set_permission_to_signer', + PlaceholderRejectInstruction = 'placeholder_reject_instruction', + PlaceholderUnclaimReceipt = 'placeholder_unclaim_receipt', + PlaceholderWithdrawAffirmation = 'placeholder_withdraw_affirmation', + PlanConfigChange = 'plan_config_change', + PreApproveAsset = 'pre_approve_asset', + PreApprovePortfolio = 'pre_approve_portfolio', + PreApproveTicker = 'pre_approve_ticker', + Propose = 'propose', + ProposeBridgeTx = 'propose_bridge_tx', + PruneProposal = 'prune_proposal', + PurgeKeys = 'purge_keys', + PushBenefit = 'push_benefit', + PutCode = 'put_code', + QuitPortfolioCustody = 'quit_portfolio_custody', + ReapStash = 'reap_stash', + Rebond = 'rebond', + ReceiverAffirmTransaction = 'receiver_affirm_transaction', + ReceiverUnaffirmTransaction = 'receiver_unaffirm_transaction', + Reclaim = 'reclaim', + Redeem = 'redeem', + RedeemFrom = 'redeem_from', + RedeemFromPortfolio = 'redeem_from_portfolio', + RedeemNft = 'redeem_nft', + RegisterAndSetLocalAssetMetadata = 'register_and_set_local_asset_metadata', + RegisterAssetMetadataGlobalType = 'register_asset_metadata_global_type', + RegisterAssetMetadataLocalType = 'register_asset_metadata_local_type', + RegisterCustomAssetType = 'register_custom_asset_type', + RegisterCustomClaimType = 'register_custom_claim_type', + RegisterDid = 'register_did', + RegisterTicker = 'register_ticker', + RegisterUniqueTicker = 'register_unique_ticker', + Reimbursement = 'reimbursement', + RejectAsIdentity = 'reject_as_identity', + RejectAsKey = 'reject_as_key', + RejectInstruction = 'reject_instruction', + RejectInstructionAsMediator = 'reject_instruction_as_mediator', + RejectInstructionV2 = 'reject_instruction_v2', + RejectInstructionWithCount = 'reject_instruction_with_count', + RejectProposal = 'reject_proposal', + RejectReferendum = 'reject_referendum', + RejectTransaction = 'reject_transaction', + RelayTx = 'relay_tx', + Remark = 'remark', + RemarkWithEvent = 'remark_with_event', + RemoveActiveRule = 'remove_active_rule', + RemoveAgent = 'remove_agent', + RemoveAssetAffirmationExemption = 'remove_asset_affirmation_exemption', + RemoveAssetPreApproval = 'remove_asset_pre_approval', + RemoveAuthorization = 'remove_authorization', + RemoveBallot = 'remove_ballot', + RemoveCa = 'remove_ca', + RemoveCode = 'remove_code', + RemoveComplianceRequirement = 'remove_compliance_requirement', + RemoveCreatorControls = 'remove_creator_controls', + RemoveDefaultTrustedClaimIssuer = 'remove_default_trusted_claim_issuer', + RemoveDistribution = 'remove_distribution', + RemoveDocuments = 'remove_documents', + RemoveExemptedEntities = 'remove_exempted_entities', + RemoveFreezeAdmin = 'remove_freeze_admin', + RemoveLocalMetadataKey = 'remove_local_metadata_key', + RemoveMandatoryMediators = 'remove_mandatory_mediators', + RemoveMember = 'remove_member', + RemoveMetadataValue = 'remove_metadata_value', + RemoveMultisigSigner = 'remove_multisig_signer', + RemoveMultisigSignersViaCreator = 'remove_multisig_signers_via_creator', + RemovePayingKey = 'remove_paying_key', + RemovePermissionedValidator = 'remove_permissioned_validator', + RemovePortfolioPreApproval = 'remove_portfolio_pre_approval', + RemovePrimaryIssuanceAgent = 'remove_primary_issuance_agent', + RemoveSchedule = 'remove_schedule', + RemoveSecondaryKeys = 'remove_secondary_keys', + RemoveSecondaryKeysOld = 'remove_secondary_keys_old', + RemoveSigningKeys = 'remove_signing_keys', + RemoveSmartExtension = 'remove_smart_extension', + RemoveTickerAffirmationExemption = 'remove_ticker_affirmation_exemption', + RemoveTickerPreApproval = 'remove_ticker_pre_approval', + RemoveTransferManager = 'remove_transfer_manager', + RemoveTxs = 'remove_txs', + RenameAsset = 'rename_asset', + RenamePortfolio = 'rename_portfolio', + ReplaceAssetCompliance = 'replace_asset_compliance', + ReplaceAssetRules = 'replace_asset_rules', + ReportEquivocation = 'report_equivocation', + ReportEquivocationUnsigned = 'report_equivocation_unsigned', + RequestPreimage = 'request_preimage', + RescheduleExecution = 'reschedule_execution', + RescheduleInstruction = 'reschedule_instruction', + ReserveClassicTicker = 'reserve_classic_ticker', + ResetActiveRules = 'reset_active_rules', + ResetAssetCompliance = 'reset_asset_compliance', + ResetCaa = 'reset_caa', + ResetMembers = 'reset_members', + ResumeAssetCompliance = 'resume_asset_compliance', + ResumeAssetRules = 'resume_asset_rules', + RevokeClaim = 'revoke_claim', + RevokeClaimByIndex = 'revoke_claim_by_index', + RevokeCreatePortfoliosPermission = 'revoke_create_portfolios_permission', + RevokeOffchainAuthorization = 'revoke_offchain_authorization', + RotatePrimaryKeyToSecondary = 'rotate_primary_key_to_secondary', + ScaleValidatorCount = 'scale_validator_count', + Schedule = 'schedule', + ScheduleAfter = 'schedule_after', + ScheduleNamed = 'schedule_named', + ScheduleNamedAfter = 'schedule_named_after', + SenderAffirmTransaction = 'sender_affirm_transaction', + SenderUnaffirmTransaction = 'sender_unaffirm_transaction', + Set = 'set', + SetAccountAssetFrozen = 'set_account_asset_frozen', + SetActiveAssetStats = 'set_active_asset_stats', + SetActiveMembersLimit = 'set_active_members_limit', + SetActivePipLimit = 'set_active_pip_limit', + SetAssetFrozen = 'set_asset_frozen', + SetAssetMetadata = 'set_asset_metadata', + SetAssetMetadataDetails = 'set_asset_metadata_details', + SetAssetTransferCompliance = 'set_asset_transfer_compliance', + SetBalance = 'set_balance', + SetChangesTrieConfig = 'set_changes_trie_config', + SetCode = 'set_code', + SetCodeWithoutChecks = 'set_code_without_checks', + SetCommissionCap = 'set_commission_cap', + SetController = 'set_controller', + SetDefaultEnactmentPeriod = 'set_default_enactment_period', + SetDefaultTargets = 'set_default_targets', + SetDefaultWithholdingTax = 'set_default_withholding_tax', + SetDidWithholdingTax = 'set_did_withholding_tax', + SetEntitiesExempt = 'set_entities_exempt', + SetExpiresAfter = 'set_expires_after', + SetFundingRound = 'set_funding_round', + SetGlobalCommission = 'set_global_commission', + SetGroupPermissions = 'set_group_permissions', + SetHeapPages = 'set_heap_pages', + SetHistoryDepth = 'set_history_depth', + SetInvulnerables = 'set_invulnerables', + SetItnRewardStatus = 'set_itn_reward_status', + SetKey = 'set_key', + SetKeys = 'set_keys', + SetMasterKey = 'set_master_key', + SetMaxDetailsLength = 'set_max_details_length', + SetMaxPipSkipCount = 'set_max_pip_skip_count', + SetMinBondThreshold = 'set_min_bond_threshold', + SetMinProposalDeposit = 'set_min_proposal_deposit', + SetPayee = 'set_payee', + SetPayingKey = 'set_paying_key', + SetPendingPipExpiry = 'set_pending_pip_expiry', + SetPermissionToSigner = 'set_permission_to_signer', + SetPrimaryKey = 'set_primary_key', + SetProposalCoolOffPeriod = 'set_proposal_cool_off_period', + SetProposalDuration = 'set_proposal_duration', + SetPruneHistoricalPips = 'set_prune_historical_pips', + SetReleaseCoordinator = 'set_release_coordinator', + SetSchedulesMaxComplexity = 'set_schedules_max_complexity', + SetSecondaryKeyPermissions = 'set_secondary_key_permissions', + SetSignedMaxLimits = 'set_signed_max_limits', + SetStorage = 'set_storage', + SetUncles = 'set_uncles', + SetValidatorCount = 'set_validator_count', + SetVenueFiltering = 'set_venue_filtering', + SetVoteThreshold = 'set_vote_threshold', + Snapshot = 'snapshot', + Stop = 'stop', + SubmitElectionSolution = 'submit_election_solution', + SubmitElectionSolutionUnsigned = 'submit_election_solution_unsigned', + Sudo = 'sudo', + SudoAs = 'sudo_as', + SudoUncheckedWeight = 'sudo_unchecked_weight', + SwapMember = 'swap_member', + Transfer = 'transfer', + TransferWithMemo = 'transfer_with_memo', + Unbond = 'unbond', + UnclaimReceipt = 'unclaim_receipt', + Unfreeze = 'unfreeze', + UnfreezeFundraiser = 'unfreeze_fundraiser', + UnfreezeSecondaryKeys = 'unfreeze_secondary_keys', + UnfreezeTxs = 'unfreeze_txs', + UnlinkChildIdentity = 'unlink_child_identity', + UnnotePreimage = 'unnote_preimage', + UnrequestPreimage = 'unrequest_preimage', + UpdateAssetType = 'update_asset_type', + UpdateCallRuntimeWhitelist = 'update_call_runtime_whitelist', + UpdateIdentifiers = 'update_identifiers', + UpdatePermissionedValidatorIntendedCount = 'update_permissioned_validator_intended_count', + UpdatePolyxLimit = 'update_polyx_limit', + UpdateVenueDetails = 'update_venue_details', + UpdateVenueSigners = 'update_venue_signers', + UpdateVenueType = 'update_venue_type', + UpgradeApi = 'upgrade_api', + UploadCode = 'upload_code', + Validate = 'validate', + ValidateCddExpiryNominators = 'validate_cdd_expiry_nominators', + Vote = 'vote', + VoteOrPropose = 'vote_or_propose', + WithWeight = 'with_weight', + WithdrawAffirmation = 'withdraw_affirmation', + WithdrawAffirmationAsMediator = 'withdraw_affirmation_as_mediator', + WithdrawAffirmationV2 = 'withdraw_affirmation_v2', + WithdrawAffirmationWithCount = 'withdraw_affirmation_with_count', + WithdrawUnbonded = 'withdraw_unbonded', +} + +/** A filter to be used against CallIdEnum fields. All fields are combined with a logical ‘and.’ */ +export type CallIdEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +/** A connection to a list of `ChildIdentity` values. */ +export type ChildIdentitiesConnection = { + __typename?: 'ChildIdentitiesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ChildIdentity` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ChildIdentity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ChildIdentity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ChildIdentity` values. */ +export type ChildIdentitiesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ChildIdentity` edge in the connection. */ +export type ChildIdentitiesEdge = { + __typename?: 'ChildIdentitiesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ChildIdentity` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ChildIdentity` for usage during aggregation. */ +export enum ChildIdentitiesGroupBy { + ChildId = 'CHILD_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + ParentId = 'PARENT_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type ChildIdentitiesHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type ChildIdentitiesHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `ChildIdentity` aggregates. */ +export type ChildIdentitiesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ChildIdentitiesHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type ChildIdentitiesHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type ChildIdentitiesHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type ChildIdentitiesHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type ChildIdentitiesHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type ChildIdentitiesHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type ChildIdentitiesHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `ChildIdentity`. */ +export enum ChildIdentitiesOrderBy { + ChildIdAsc = 'CHILD_ID_ASC', + ChildIdDesc = 'CHILD_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + ParentIdAsc = 'PARENT_ID_ASC', + ParentIdDesc = 'PARENT_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type ChildIdentity = Node & { + __typename?: 'ChildIdentity'; + /** Reads a single `Identity` that is related to this `ChildIdentity`. */ + child?: Maybe; + childId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ChildIdentity`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Identity` that is related to this `ChildIdentity`. */ + parent?: Maybe; + parentId: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `ChildIdentity`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type ChildIdentityAggregates = { + __typename?: 'ChildIdentityAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `ChildIdentity` object types. */ +export type ChildIdentityAggregatesFilter = { + /** Distinct count aggregate over matching `ChildIdentity` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ChildIdentity` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type ChildIdentityDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + childId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + parentId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type ChildIdentityDistinctCountAggregates = { + __typename?: 'ChildIdentityDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of childId across the matching connection */ + childId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of parentId across the matching connection */ + parentId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `ChildIdentity` object types. All fields are combined with a logical ‘and.’ */ +export type ChildIdentityFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `child` relation. */ + child?: InputMaybe; + /** Filter by the object’s `childId` field. */ + childId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `parent` relation. */ + parent?: InputMaybe; + /** Filter by the object’s `parentId` field. */ + parentId?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type Claim = Node & { + __typename?: 'Claim'; + cddId?: Maybe; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Claim`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `CustomClaimType` that is related to this `Claim`. */ + customClaimType?: Maybe; + customClaimTypeId?: Maybe; + eventIdx: Scalars['Int']['output']; + expiry?: Maybe; + filterExpiry: Scalars['BigFloat']['output']; + id: Scalars['String']['output']; + issuanceDate: Scalars['BigFloat']['output']; + /** Reads a single `Identity` that is related to this `Claim`. */ + issuer?: Maybe; + issuerId: Scalars['String']['output']; + jurisdiction?: Maybe; + lastUpdateDate: Scalars['BigFloat']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + revokeDate?: Maybe; + scope?: Maybe; + /** Reads a single `Identity` that is related to this `Claim`. */ + target?: Maybe; + targetId: Scalars['String']['output']; + type: ClaimTypeEnum; + /** Reads a single `Block` that is related to this `Claim`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type ClaimAggregates = { + __typename?: 'ClaimAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Claim` object types. */ +export type ClaimAggregatesFilter = { + /** Mean average aggregate over matching `Claim` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Claim` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Claim` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Claim` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Claim` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Claim` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Claim` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Claim` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Claim` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Claim` objects. */ + varianceSample?: InputMaybe; +}; + +export type ClaimAverageAggregateFilter = { + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimAverageAggregates = { + __typename?: 'ClaimAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of expiry across the matching connection */ + expiry?: Maybe; + /** Mean average of filterExpiry across the matching connection */ + filterExpiry?: Maybe; + /** Mean average of issuanceDate across the matching connection */ + issuanceDate?: Maybe; + /** Mean average of lastUpdateDate across the matching connection */ + lastUpdateDate?: Maybe; + /** Mean average of revokeDate across the matching connection */ + revokeDate?: Maybe; +}; + +export type ClaimDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + cddId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + customClaimTypeId?: InputMaybe; + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + id?: InputMaybe; + issuanceDate?: InputMaybe; + issuerId?: InputMaybe; + jurisdiction?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; + scope?: InputMaybe; + targetId?: InputMaybe; + type?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type ClaimDistinctCountAggregates = { + __typename?: 'ClaimDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of cddId across the matching connection */ + cddId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of customClaimTypeId across the matching connection */ + customClaimTypeId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of expiry across the matching connection */ + expiry?: Maybe; + /** Distinct count of filterExpiry across the matching connection */ + filterExpiry?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of issuanceDate across the matching connection */ + issuanceDate?: Maybe; + /** Distinct count of issuerId across the matching connection */ + issuerId?: Maybe; + /** Distinct count of jurisdiction across the matching connection */ + jurisdiction?: Maybe; + /** Distinct count of lastUpdateDate across the matching connection */ + lastUpdateDate?: Maybe; + /** Distinct count of revokeDate across the matching connection */ + revokeDate?: Maybe; + /** Distinct count of scope across the matching connection */ + scope?: Maybe; + /** Distinct count of targetId across the matching connection */ + targetId?: Maybe; + /** Distinct count of type across the matching connection */ + type?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `Claim` object types. All fields are combined with a logical ‘and.’ */ +export type ClaimFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `cddId` field. */ + cddId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `customClaimType` relation. */ + customClaimType?: InputMaybe; + /** A related `customClaimType` exists. */ + customClaimTypeExists?: InputMaybe; + /** Filter by the object’s `customClaimTypeId` field. */ + customClaimTypeId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `expiry` field. */ + expiry?: InputMaybe; + /** Filter by the object’s `filterExpiry` field. */ + filterExpiry?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `issuanceDate` field. */ + issuanceDate?: InputMaybe; + /** Filter by the object’s `issuer` relation. */ + issuer?: InputMaybe; + /** Filter by the object’s `issuerId` field. */ + issuerId?: InputMaybe; + /** Filter by the object’s `jurisdiction` field. */ + jurisdiction?: InputMaybe; + /** Filter by the object’s `lastUpdateDate` field. */ + lastUpdateDate?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `revokeDate` field. */ + revokeDate?: InputMaybe; + /** Filter by the object’s `scope` field. */ + scope?: InputMaybe; + /** Filter by the object’s `target` relation. */ + target?: InputMaybe; + /** Filter by the object’s `targetId` field. */ + targetId?: InputMaybe; + /** Filter by the object’s `type` field. */ + type?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type ClaimMaxAggregateFilter = { + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimMaxAggregates = { + __typename?: 'ClaimMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of expiry across the matching connection */ + expiry?: Maybe; + /** Maximum of filterExpiry across the matching connection */ + filterExpiry?: Maybe; + /** Maximum of issuanceDate across the matching connection */ + issuanceDate?: Maybe; + /** Maximum of lastUpdateDate across the matching connection */ + lastUpdateDate?: Maybe; + /** Maximum of revokeDate across the matching connection */ + revokeDate?: Maybe; +}; + +export type ClaimMinAggregateFilter = { + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimMinAggregates = { + __typename?: 'ClaimMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of expiry across the matching connection */ + expiry?: Maybe; + /** Minimum of filterExpiry across the matching connection */ + filterExpiry?: Maybe; + /** Minimum of issuanceDate across the matching connection */ + issuanceDate?: Maybe; + /** Minimum of lastUpdateDate across the matching connection */ + lastUpdateDate?: Maybe; + /** Minimum of revokeDate across the matching connection */ + revokeDate?: Maybe; +}; + +export type ClaimScope = Node & { + __typename?: 'ClaimScope'; + /** Reads a single `Asset` that is related to this `ClaimScope`. */ + asset?: Maybe; + assetId?: Maybe; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ClaimScope`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + scope?: Maybe; + target: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `ClaimScope`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type ClaimScopeAggregates = { + __typename?: 'ClaimScopeAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `ClaimScope` object types. */ +export type ClaimScopeAggregatesFilter = { + /** Distinct count aggregate over matching `ClaimScope` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ClaimScope` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type ClaimScopeDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + scope?: InputMaybe; + target?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type ClaimScopeDistinctCountAggregates = { + __typename?: 'ClaimScopeDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of scope across the matching connection */ + scope?: Maybe; + /** Distinct count of target across the matching connection */ + target?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `ClaimScope` object types. All fields are combined with a logical ‘and.’ */ +export type ClaimScopeFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** A related `asset` exists. */ + assetExists?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `scope` field. */ + scope?: InputMaybe; + /** Filter by the object’s `target` field. */ + target?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `ClaimScope` values. */ +export type ClaimScopesConnection = { + __typename?: 'ClaimScopesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ClaimScope` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ClaimScope` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ClaimScope` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ClaimScope` values. */ +export type ClaimScopesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ClaimScope` edge in the connection. */ +export type ClaimScopesEdge = { + __typename?: 'ClaimScopesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ClaimScope` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ClaimScope` for usage during aggregation. */ +export enum ClaimScopesGroupBy { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + Scope = 'SCOPE', + Target = 'TARGET', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type ClaimScopesHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type ClaimScopesHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `ClaimScope` aggregates. */ +export type ClaimScopesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ClaimScopesHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type ClaimScopesHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type ClaimScopesHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type ClaimScopesHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type ClaimScopesHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type ClaimScopesHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type ClaimScopesHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `ClaimScope`. */ +export enum ClaimScopesOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ScopeAsc = 'SCOPE_ASC', + ScopeDesc = 'SCOPE_DESC', + TargetAsc = 'TARGET_ASC', + TargetDesc = 'TARGET_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type ClaimStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimStddevPopulationAggregates = { + __typename?: 'ClaimStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of expiry across the matching connection */ + expiry?: Maybe; + /** Population standard deviation of filterExpiry across the matching connection */ + filterExpiry?: Maybe; + /** Population standard deviation of issuanceDate across the matching connection */ + issuanceDate?: Maybe; + /** Population standard deviation of lastUpdateDate across the matching connection */ + lastUpdateDate?: Maybe; + /** Population standard deviation of revokeDate across the matching connection */ + revokeDate?: Maybe; +}; + +export type ClaimStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimStddevSampleAggregates = { + __typename?: 'ClaimStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of expiry across the matching connection */ + expiry?: Maybe; + /** Sample standard deviation of filterExpiry across the matching connection */ + filterExpiry?: Maybe; + /** Sample standard deviation of issuanceDate across the matching connection */ + issuanceDate?: Maybe; + /** Sample standard deviation of lastUpdateDate across the matching connection */ + lastUpdateDate?: Maybe; + /** Sample standard deviation of revokeDate across the matching connection */ + revokeDate?: Maybe; +}; + +export type ClaimSumAggregateFilter = { + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimSumAggregates = { + __typename?: 'ClaimSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of expiry across the matching connection */ + expiry: Scalars['BigFloat']['output']; + /** Sum of filterExpiry across the matching connection */ + filterExpiry: Scalars['BigFloat']['output']; + /** Sum of issuanceDate across the matching connection */ + issuanceDate: Scalars['BigFloat']['output']; + /** Sum of lastUpdateDate across the matching connection */ + lastUpdateDate: Scalars['BigFloat']['output']; + /** Sum of revokeDate across the matching connection */ + revokeDate: Scalars['BigFloat']['output']; +}; + +/** Represents all possible claims that can be made of an identity */ +export enum ClaimTypeEnum { + Accredited = 'Accredited', + Affiliate = 'Affiliate', + Blocked = 'Blocked', + BuyLockup = 'BuyLockup', + Custom = 'Custom', + CustomerDueDiligence = 'CustomerDueDiligence', + Exempted = 'Exempted', + InvestorUniqueness = 'InvestorUniqueness', + InvestorUniquenessV2 = 'InvestorUniquenessV2', + Jurisdiction = 'Jurisdiction', + KnowYourCustomer = 'KnowYourCustomer', + NoData = 'NoData', + NoType = 'NoType', + SellLockup = 'SellLockup', +} + +/** A filter to be used against ClaimTypeEnum fields. All fields are combined with a logical ‘and.’ */ +export type ClaimTypeEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type ClaimVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimVariancePopulationAggregates = { + __typename?: 'ClaimVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of expiry across the matching connection */ + expiry?: Maybe; + /** Population variance of filterExpiry across the matching connection */ + filterExpiry?: Maybe; + /** Population variance of issuanceDate across the matching connection */ + issuanceDate?: Maybe; + /** Population variance of lastUpdateDate across the matching connection */ + lastUpdateDate?: Maybe; + /** Population variance of revokeDate across the matching connection */ + revokeDate?: Maybe; +}; + +export type ClaimVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimVarianceSampleAggregates = { + __typename?: 'ClaimVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of expiry across the matching connection */ + expiry?: Maybe; + /** Sample variance of filterExpiry across the matching connection */ + filterExpiry?: Maybe; + /** Sample variance of issuanceDate across the matching connection */ + issuanceDate?: Maybe; + /** Sample variance of lastUpdateDate across the matching connection */ + lastUpdateDate?: Maybe; + /** Sample variance of revokeDate across the matching connection */ + revokeDate?: Maybe; +}; + +/** A connection to a list of `Claim` values. */ +export type ClaimsConnection = { + __typename?: 'ClaimsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Claim` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Claim` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Claim` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Claim` values. */ +export type ClaimsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Claim` edge in the connection. */ +export type ClaimsEdge = { + __typename?: 'ClaimsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Claim` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Claim` for usage during aggregation. */ +export enum ClaimsGroupBy { + CddId = 'CDD_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + CustomClaimTypeId = 'CUSTOM_CLAIM_TYPE_ID', + EventIdx = 'EVENT_IDX', + Expiry = 'EXPIRY', + FilterExpiry = 'FILTER_EXPIRY', + Id = 'ID', + IssuanceDate = 'ISSUANCE_DATE', + IssuerId = 'ISSUER_ID', + Jurisdiction = 'JURISDICTION', + LastUpdateDate = 'LAST_UPDATE_DATE', + RevokeDate = 'REVOKE_DATE', + Scope = 'SCOPE', + TargetId = 'TARGET_ID', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type ClaimsHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimsHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +/** Conditions for `Claim` aggregates. */ +export type ClaimsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ClaimsHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimsHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimsHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimsHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +export type ClaimsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + expiry?: InputMaybe; + filterExpiry?: InputMaybe; + issuanceDate?: InputMaybe; + lastUpdateDate?: InputMaybe; + revokeDate?: InputMaybe; +}; + +/** Methods to use when ordering `Claim`. */ +export enum ClaimsOrderBy { + CddIdAsc = 'CDD_ID_ASC', + CddIdDesc = 'CDD_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + CustomClaimTypeIdAsc = 'CUSTOM_CLAIM_TYPE_ID_ASC', + CustomClaimTypeIdDesc = 'CUSTOM_CLAIM_TYPE_ID_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + ExpiryAsc = 'EXPIRY_ASC', + ExpiryDesc = 'EXPIRY_DESC', + FilterExpiryAsc = 'FILTER_EXPIRY_ASC', + FilterExpiryDesc = 'FILTER_EXPIRY_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + IssuanceDateAsc = 'ISSUANCE_DATE_ASC', + IssuanceDateDesc = 'ISSUANCE_DATE_DESC', + IssuerIdAsc = 'ISSUER_ID_ASC', + IssuerIdDesc = 'ISSUER_ID_DESC', + JurisdictionAsc = 'JURISDICTION_ASC', + JurisdictionDesc = 'JURISDICTION_DESC', + LastUpdateDateAsc = 'LAST_UPDATE_DATE_ASC', + LastUpdateDateDesc = 'LAST_UPDATE_DATE_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + RevokeDateAsc = 'REVOKE_DATE_ASC', + RevokeDateDesc = 'REVOKE_DATE_DESC', + ScopeAsc = 'SCOPE_ASC', + ScopeDesc = 'SCOPE_DESC', + TargetIdAsc = 'TARGET_ID_ASC', + TargetIdDesc = 'TARGET_ID_DESC', + TypeAsc = 'TYPE_ASC', + TypeDesc = 'TYPE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type Compliance = Node & { + __typename?: 'Compliance'; + /** Reads a single `Asset` that is related to this `Compliance`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + complianceId: Scalars['Int']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Compliance`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + data: Scalars['String']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Block` that is related to this `Compliance`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type ComplianceAggregates = { + __typename?: 'ComplianceAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Compliance` object types. */ +export type ComplianceAggregatesFilter = { + /** Mean average aggregate over matching `Compliance` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Compliance` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Compliance` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Compliance` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Compliance` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Compliance` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Compliance` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Compliance` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Compliance` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Compliance` objects. */ + varianceSample?: InputMaybe; +}; + +export type ComplianceAverageAggregateFilter = { + complianceId?: InputMaybe; +}; + +export type ComplianceAverageAggregates = { + __typename?: 'ComplianceAverageAggregates'; + /** Mean average of complianceId across the matching connection */ + complianceId?: Maybe; +}; + +export type ComplianceDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + complianceId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + data?: InputMaybe; + id?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type ComplianceDistinctCountAggregates = { + __typename?: 'ComplianceDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of complianceId across the matching connection */ + complianceId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of data across the matching connection */ + data?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `Compliance` object types. All fields are combined with a logical ‘and.’ */ +export type ComplianceFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `complianceId` field. */ + complianceId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `data` field. */ + data?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type ComplianceMaxAggregateFilter = { + complianceId?: InputMaybe; +}; + +export type ComplianceMaxAggregates = { + __typename?: 'ComplianceMaxAggregates'; + /** Maximum of complianceId across the matching connection */ + complianceId?: Maybe; +}; + +export type ComplianceMinAggregateFilter = { + complianceId?: InputMaybe; +}; + +export type ComplianceMinAggregates = { + __typename?: 'ComplianceMinAggregates'; + /** Minimum of complianceId across the matching connection */ + complianceId?: Maybe; +}; + +export type ComplianceStddevPopulationAggregateFilter = { + complianceId?: InputMaybe; +}; + +export type ComplianceStddevPopulationAggregates = { + __typename?: 'ComplianceStddevPopulationAggregates'; + /** Population standard deviation of complianceId across the matching connection */ + complianceId?: Maybe; +}; + +export type ComplianceStddevSampleAggregateFilter = { + complianceId?: InputMaybe; +}; + +export type ComplianceStddevSampleAggregates = { + __typename?: 'ComplianceStddevSampleAggregates'; + /** Sample standard deviation of complianceId across the matching connection */ + complianceId?: Maybe; +}; + +export type ComplianceSumAggregateFilter = { + complianceId?: InputMaybe; +}; + +export type ComplianceSumAggregates = { + __typename?: 'ComplianceSumAggregates'; + /** Sum of complianceId across the matching connection */ + complianceId: Scalars['BigInt']['output']; +}; + +export type ComplianceVariancePopulationAggregateFilter = { + complianceId?: InputMaybe; +}; + +export type ComplianceVariancePopulationAggregates = { + __typename?: 'ComplianceVariancePopulationAggregates'; + /** Population variance of complianceId across the matching connection */ + complianceId?: Maybe; +}; + +export type ComplianceVarianceSampleAggregateFilter = { + complianceId?: InputMaybe; +}; + +export type ComplianceVarianceSampleAggregates = { + __typename?: 'ComplianceVarianceSampleAggregates'; + /** Sample variance of complianceId across the matching connection */ + complianceId?: Maybe; +}; + +/** A connection to a list of `Compliance` values. */ +export type CompliancesConnection = { + __typename?: 'CompliancesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Compliance` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Compliance` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Compliance` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Compliance` values. */ +export type CompliancesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Compliance` edge in the connection. */ +export type CompliancesEdge = { + __typename?: 'CompliancesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Compliance` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Compliance` for usage during aggregation. */ +export enum CompliancesGroupBy { + AssetId = 'ASSET_ID', + ComplianceId = 'COMPLIANCE_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Data = 'DATA', + Id = 'ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type CompliancesHavingAverageInput = { + complianceId?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type CompliancesHavingDistinctCountInput = { + complianceId?: InputMaybe; + createdAt?: InputMaybe; +}; + +/** Conditions for `Compliance` aggregates. */ +export type CompliancesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type CompliancesHavingMaxInput = { + complianceId?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type CompliancesHavingMinInput = { + complianceId?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type CompliancesHavingStddevPopulationInput = { + complianceId?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type CompliancesHavingStddevSampleInput = { + complianceId?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type CompliancesHavingSumInput = { + complianceId?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type CompliancesHavingVariancePopulationInput = { + complianceId?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type CompliancesHavingVarianceSampleInput = { + complianceId?: InputMaybe; + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `Compliance`. */ +export enum CompliancesOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + ComplianceIdAsc = 'COMPLIANCE_ID_ASC', + ComplianceIdDesc = 'COMPLIANCE_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DataAsc = 'DATA_ASC', + DataDesc = 'DATA_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type ConfidentialAccount = Node & { + __typename?: 'ConfidentialAccount'; + account: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHistoryFromIdAndCreatedBlockId: ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHistoryFromIdAndUpdatedBlockId: ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHistoryToIdAndCreatedBlockId: ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHistoryToIdAndUpdatedBlockId: ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHolderAccountIdAndCreatedBlockId: ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHolderAccountIdAndUpdatedBlockId: ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetMovementFromIdAndCreatedBlockId: ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetMovementFromIdAndUpdatedBlockId: ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetMovementToIdAndCreatedBlockId: ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetMovementToIdAndUpdatedBlockId: ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialLegReceiverIdAndCreatedBlockId: ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialLegReceiverIdAndUpdatedBlockId: ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialLegSenderIdAndCreatedBlockId: ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialLegSenderIdAndUpdatedBlockId: ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockId: ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockId: ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHistoryFromIdAndToId: ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHistoryToIdAndFromId: ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetMovementFromIdAndToId: ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetMovementToIdAndFromId: ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialLegReceiverIdAndSenderId: ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialLegSenderIdAndReceiverId: ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAccountId: ConfidentialAssetHoldersConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetHistoryFromIdAndAssetId: ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetHistoryToIdAndAssetId: ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetHolderAccountIdAndAssetId: ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetMovementFromIdAndAssetId: ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetMovementToIdAndAssetId: ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByReceiverId: ConfidentialLegsConnection; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsBySenderId: ConfidentialLegsConnection; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionId: ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionId: ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialLegReceiverIdAndTransactionId: ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialLegSenderIdAndTransactionId: ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionId: ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ConfidentialAccount`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `ConfidentialAccount`. */ + creator?: Maybe; + creatorId: Scalars['String']['output']; + eventIdx: Scalars['Int']['output']; + frozenForAsset: Scalars['JSON']['output']; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByConfidentialTransactionAffirmationAccountIdAndIdentityId: ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyConnection; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Block` that is related to this `ConfidentialAccount`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAssetHistoriesByFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAssetHistoriesByToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAssetHoldersByAccountIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAssetMovementsByFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAssetMovementsByToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialLegsByReceiverIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialLegsBySenderIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialTransactionAffirmationsByAccountIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountAggregates = { + __typename?: 'ConfidentialAccountAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `ConfidentialAccount` object types. */ +export type ConfidentialAccountAggregatesFilter = { + /** Mean average aggregate over matching `ConfidentialAccount` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `ConfidentialAccount` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ConfidentialAccount` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `ConfidentialAccount` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `ConfidentialAccount` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `ConfidentialAccount` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `ConfidentialAccount` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `ConfidentialAccount` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `ConfidentialAccount` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `ConfidentialAccount` objects. */ + varianceSample?: InputMaybe; +}; + +export type ConfidentialAccountAverageAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountAverageAggregates = { + __typename?: 'ConfidentialAccountAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryFromIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHistoryToIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByCreatedBlockId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByUpdatedBlockId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountBlocksByConfidentialAssetHolderAccountIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByCreatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByUpdatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementFromIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByCreatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByUpdatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountBlocksByConfidentialAssetMovementToIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByCreatedBlockId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByUpdatedBlockId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegReceiverIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByCreatedBlockId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByUpdatedBlockId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountBlocksByConfidentialLegSenderIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountBlocksByConfidentialTransactionAffirmationAccountIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryFromIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetHistoryToIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementFromIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialAssetMovementToIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsBySenderId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialLegReceiverIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByReceiverId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialAccountsByConfidentialLegSenderIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryFromIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHistoryToIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAssetId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetHolderAccountIdAndAssetIdManyToManyEdgeConfidentialAssetHoldersByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementFromIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAccountConfidentialAssetsByConfidentialAssetMovementToIdAndAssetIdManyToManyEdgeConfidentialAssetMovementsByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryFromIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialAssetHistoryToIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + legs: ConfidentialLegsConnection; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegReceiverIdAndTransactionIdManyToManyEdgeLegsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + legs: ConfidentialLegsConnection; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialLegSenderIdAndTransactionIdManyToManyEdgeLegsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + affirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountConfidentialTransactionsByConfidentialTransactionAffirmationAccountIdAndTransactionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + account?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + creatorId?: InputMaybe; + eventIdx?: InputMaybe; + frozenForAsset?: InputMaybe; + id?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type ConfidentialAccountDistinctCountAggregates = { + __typename?: 'ConfidentialAccountDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of account across the matching connection */ + account?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of creatorId across the matching connection */ + creatorId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of frozenForAsset across the matching connection */ + frozenForAsset?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `ConfidentialAccount` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAccountFilter = { + /** Filter by the object’s `account` field. */ + account?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `confidentialAssetHistoriesByFromId` relation. */ + confidentialAssetHistoriesByFromId?: InputMaybe; + /** Some related `confidentialAssetHistoriesByFromId` exist. */ + confidentialAssetHistoriesByFromIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetHistoriesByToId` relation. */ + confidentialAssetHistoriesByToId?: InputMaybe; + /** Some related `confidentialAssetHistoriesByToId` exist. */ + confidentialAssetHistoriesByToIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetHoldersByAccountId` relation. */ + confidentialAssetHoldersByAccountId?: InputMaybe; + /** Some related `confidentialAssetHoldersByAccountId` exist. */ + confidentialAssetHoldersByAccountIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetMovementsByFromId` relation. */ + confidentialAssetMovementsByFromId?: InputMaybe; + /** Some related `confidentialAssetMovementsByFromId` exist. */ + confidentialAssetMovementsByFromIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetMovementsByToId` relation. */ + confidentialAssetMovementsByToId?: InputMaybe; + /** Some related `confidentialAssetMovementsByToId` exist. */ + confidentialAssetMovementsByToIdExist?: InputMaybe; + /** Filter by the object’s `confidentialLegsByReceiverId` relation. */ + confidentialLegsByReceiverId?: InputMaybe; + /** Some related `confidentialLegsByReceiverId` exist. */ + confidentialLegsByReceiverIdExist?: InputMaybe; + /** Filter by the object’s `confidentialLegsBySenderId` relation. */ + confidentialLegsBySenderId?: InputMaybe; + /** Some related `confidentialLegsBySenderId` exist. */ + confidentialLegsBySenderIdExist?: InputMaybe; + /** Filter by the object’s `confidentialTransactionAffirmationsByAccountId` relation. */ + confidentialTransactionAffirmationsByAccountId?: InputMaybe; + /** Some related `confidentialTransactionAffirmationsByAccountId` exist. */ + confidentialTransactionAffirmationsByAccountIdExist?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `creator` relation. */ + creator?: InputMaybe; + /** Filter by the object’s `creatorId` field. */ + creatorId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `frozenForAsset` field. */ + frozenForAsset?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyConnection = + { + __typename?: 'ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyEdge = + { + __typename?: 'ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialAccountIdentitiesByConfidentialTransactionAffirmationAccountIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAccountMaxAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountMaxAggregates = { + __typename?: 'ConfidentialAccountMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type ConfidentialAccountMinAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountMinAggregates = { + __typename?: 'ConfidentialAccountMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type ConfidentialAccountStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountStddevPopulationAggregates = { + __typename?: 'ConfidentialAccountStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type ConfidentialAccountStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountStddevSampleAggregates = { + __typename?: 'ConfidentialAccountStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type ConfidentialAccountSumAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountSumAggregates = { + __typename?: 'ConfidentialAccountSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; +}; + +/** A filter to be used against many `ConfidentialAssetHistory` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAccountToManyConfidentialAssetHistoryFilter = { + /** Aggregates across related `ConfidentialAssetHistory` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialAssetHolder` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAccountToManyConfidentialAssetHolderFilter = { + /** Aggregates across related `ConfidentialAssetHolder` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialAssetMovement` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAccountToManyConfidentialAssetMovementFilter = { + /** Aggregates across related `ConfidentialAssetMovement` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAssetMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAssetMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAssetMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialLeg` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAccountToManyConfidentialLegFilter = { + /** Aggregates across related `ConfidentialLeg` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialLeg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialLeg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialLeg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialTransactionAffirmation` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAccountToManyConfidentialTransactionAffirmationFilter = { + /** Aggregates across related `ConfidentialTransactionAffirmation` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type ConfidentialAccountVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountVariancePopulationAggregates = { + __typename?: 'ConfidentialAccountVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type ConfidentialAccountVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountVarianceSampleAggregates = { + __typename?: 'ConfidentialAccountVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +/** A connection to a list of `ConfidentialAccount` values. */ +export type ConfidentialAccountsConnection = { + __typename?: 'ConfidentialAccountsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ConfidentialAccount` values. */ +export type ConfidentialAccountsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ConfidentialAccount` edge in the connection. */ +export type ConfidentialAccountsEdge = { + __typename?: 'ConfidentialAccountsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ConfidentialAccount` for usage during aggregation. */ +export enum ConfidentialAccountsGroupBy { + Account = 'ACCOUNT', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorId = 'CREATOR_ID', + EventIdx = 'EVENT_IDX', + FrozenForAsset = 'FROZEN_FOR_ASSET', + Id = 'ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type ConfidentialAccountsHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountsHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Conditions for `ConfidentialAccount` aggregates. */ +export type ConfidentialAccountsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ConfidentialAccountsHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountsHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountsHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountsHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAccountsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Methods to use when ordering `ConfidentialAccount`. */ +export enum ConfidentialAccountsOrderBy { + AccountAsc = 'ACCOUNT_ASC', + AccountDesc = 'ACCOUNT_DESC', + ConfidentialAssetHistoriesByFromIdAverageAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_AMOUNT_ASC', + ConfidentialAssetHistoriesByFromIdAverageAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_AMOUNT_DESC', + ConfidentialAssetHistoriesByFromIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByFromIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByFromIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByFromIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByFromIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByFromIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByFromIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdAverageDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_DATETIME_ASC', + ConfidentialAssetHistoriesByFromIdAverageDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_DATETIME_DESC', + ConfidentialAssetHistoriesByFromIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByFromIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByFromIdAverageEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByFromIdAverageEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByFromIdAverageExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByFromIdAverageExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByFromIdAverageFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_FROM_ID_ASC', + ConfidentialAssetHistoriesByFromIdAverageFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_FROM_ID_DESC', + ConfidentialAssetHistoriesByFromIdAverageIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_ID_ASC', + ConfidentialAssetHistoriesByFromIdAverageIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_ID_DESC', + ConfidentialAssetHistoriesByFromIdAverageMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_MEMO_ASC', + ConfidentialAssetHistoriesByFromIdAverageMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_MEMO_DESC', + ConfidentialAssetHistoriesByFromIdAverageToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_TO_ID_ASC', + ConfidentialAssetHistoriesByFromIdAverageToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_TO_ID_DESC', + ConfidentialAssetHistoriesByFromIdAverageTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByFromIdAverageTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByFromIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdCountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_COUNT_ASC', + ConfidentialAssetHistoriesByFromIdCountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_COUNT_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_AMOUNT_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_AMOUNT_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_DATETIME_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_DATETIME_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_EVENT_ID_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_EVENT_ID_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_MEMO_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_MEMO_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_TO_ID_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_TO_ID_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByFromIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdMaxAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_AMOUNT_ASC', + ConfidentialAssetHistoriesByFromIdMaxAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_AMOUNT_DESC', + ConfidentialAssetHistoriesByFromIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetHistoriesByFromIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetHistoriesByFromIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByFromIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByFromIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetHistoriesByFromIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetHistoriesByFromIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdMaxDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_DATETIME_ASC', + ConfidentialAssetHistoriesByFromIdMaxDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_DATETIME_DESC', + ConfidentialAssetHistoriesByFromIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByFromIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByFromIdMaxEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_EVENT_ID_ASC', + ConfidentialAssetHistoriesByFromIdMaxEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_EVENT_ID_DESC', + ConfidentialAssetHistoriesByFromIdMaxExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByFromIdMaxExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByFromIdMaxFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_FROM_ID_ASC', + ConfidentialAssetHistoriesByFromIdMaxFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_FROM_ID_DESC', + ConfidentialAssetHistoriesByFromIdMaxIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_ID_ASC', + ConfidentialAssetHistoriesByFromIdMaxIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_ID_DESC', + ConfidentialAssetHistoriesByFromIdMaxMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_MEMO_ASC', + ConfidentialAssetHistoriesByFromIdMaxMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_MEMO_DESC', + ConfidentialAssetHistoriesByFromIdMaxToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_TO_ID_ASC', + ConfidentialAssetHistoriesByFromIdMaxToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_TO_ID_DESC', + ConfidentialAssetHistoriesByFromIdMaxTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByFromIdMaxTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByFromIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdMinAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_AMOUNT_ASC', + ConfidentialAssetHistoriesByFromIdMinAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_AMOUNT_DESC', + ConfidentialAssetHistoriesByFromIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetHistoriesByFromIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetHistoriesByFromIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByFromIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByFromIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetHistoriesByFromIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetHistoriesByFromIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdMinDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_DATETIME_ASC', + ConfidentialAssetHistoriesByFromIdMinDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_DATETIME_DESC', + ConfidentialAssetHistoriesByFromIdMinEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByFromIdMinEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByFromIdMinEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_EVENT_ID_ASC', + ConfidentialAssetHistoriesByFromIdMinEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_EVENT_ID_DESC', + ConfidentialAssetHistoriesByFromIdMinExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByFromIdMinExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByFromIdMinFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_FROM_ID_ASC', + ConfidentialAssetHistoriesByFromIdMinFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_FROM_ID_DESC', + ConfidentialAssetHistoriesByFromIdMinIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_ID_ASC', + ConfidentialAssetHistoriesByFromIdMinIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_ID_DESC', + ConfidentialAssetHistoriesByFromIdMinMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_MEMO_ASC', + ConfidentialAssetHistoriesByFromIdMinMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_MEMO_DESC', + ConfidentialAssetHistoriesByFromIdMinToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_TO_ID_ASC', + ConfidentialAssetHistoriesByFromIdMinToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_TO_ID_DESC', + ConfidentialAssetHistoriesByFromIdMinTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByFromIdMinTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByFromIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByFromIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdSumAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_AMOUNT_ASC', + ConfidentialAssetHistoriesByFromIdSumAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_AMOUNT_DESC', + ConfidentialAssetHistoriesByFromIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetHistoriesByFromIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetHistoriesByFromIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByFromIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByFromIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetHistoriesByFromIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetHistoriesByFromIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdSumDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_DATETIME_ASC', + ConfidentialAssetHistoriesByFromIdSumDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_DATETIME_DESC', + ConfidentialAssetHistoriesByFromIdSumEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByFromIdSumEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByFromIdSumEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_EVENT_ID_ASC', + ConfidentialAssetHistoriesByFromIdSumEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_EVENT_ID_DESC', + ConfidentialAssetHistoriesByFromIdSumExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByFromIdSumExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByFromIdSumFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_FROM_ID_ASC', + ConfidentialAssetHistoriesByFromIdSumFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_FROM_ID_DESC', + ConfidentialAssetHistoriesByFromIdSumIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_ID_ASC', + ConfidentialAssetHistoriesByFromIdSumIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_ID_DESC', + ConfidentialAssetHistoriesByFromIdSumMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_MEMO_ASC', + ConfidentialAssetHistoriesByFromIdSumMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_MEMO_DESC', + ConfidentialAssetHistoriesByFromIdSumToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_TO_ID_ASC', + ConfidentialAssetHistoriesByFromIdSumToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_TO_ID_DESC', + ConfidentialAssetHistoriesByFromIdSumTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByFromIdSumTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByFromIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByFromIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByFromIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByFromIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_FROM_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdAverageAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_AMOUNT_ASC', + ConfidentialAssetHistoriesByToIdAverageAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_AMOUNT_DESC', + ConfidentialAssetHistoriesByToIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByToIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByToIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByToIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByToIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByToIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByToIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdAverageDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_DATETIME_ASC', + ConfidentialAssetHistoriesByToIdAverageDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_DATETIME_DESC', + ConfidentialAssetHistoriesByToIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByToIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByToIdAverageEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByToIdAverageEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByToIdAverageExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByToIdAverageExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByToIdAverageFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_FROM_ID_ASC', + ConfidentialAssetHistoriesByToIdAverageFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_FROM_ID_DESC', + ConfidentialAssetHistoriesByToIdAverageIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_ID_ASC', + ConfidentialAssetHistoriesByToIdAverageIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_ID_DESC', + ConfidentialAssetHistoriesByToIdAverageMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_MEMO_ASC', + ConfidentialAssetHistoriesByToIdAverageMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_MEMO_DESC', + ConfidentialAssetHistoriesByToIdAverageToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_TO_ID_ASC', + ConfidentialAssetHistoriesByToIdAverageToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_TO_ID_DESC', + ConfidentialAssetHistoriesByToIdAverageTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByToIdAverageTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByToIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdCountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_COUNT_ASC', + ConfidentialAssetHistoriesByToIdCountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_COUNT_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_AMOUNT_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_AMOUNT_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_DATETIME_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_DATETIME_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_EVENT_ID_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_EVENT_ID_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_FROM_ID_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_FROM_ID_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_MEMO_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_MEMO_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_TO_ID_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_TO_ID_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByToIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdMaxAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_AMOUNT_ASC', + ConfidentialAssetHistoriesByToIdMaxAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_AMOUNT_DESC', + ConfidentialAssetHistoriesByToIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetHistoriesByToIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetHistoriesByToIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByToIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByToIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetHistoriesByToIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetHistoriesByToIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdMaxDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_DATETIME_ASC', + ConfidentialAssetHistoriesByToIdMaxDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_DATETIME_DESC', + ConfidentialAssetHistoriesByToIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByToIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByToIdMaxEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_EVENT_ID_ASC', + ConfidentialAssetHistoriesByToIdMaxEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_EVENT_ID_DESC', + ConfidentialAssetHistoriesByToIdMaxExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByToIdMaxExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByToIdMaxFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_FROM_ID_ASC', + ConfidentialAssetHistoriesByToIdMaxFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_FROM_ID_DESC', + ConfidentialAssetHistoriesByToIdMaxIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_ID_ASC', + ConfidentialAssetHistoriesByToIdMaxIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_ID_DESC', + ConfidentialAssetHistoriesByToIdMaxMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_MEMO_ASC', + ConfidentialAssetHistoriesByToIdMaxMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_MEMO_DESC', + ConfidentialAssetHistoriesByToIdMaxToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_TO_ID_ASC', + ConfidentialAssetHistoriesByToIdMaxToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_TO_ID_DESC', + ConfidentialAssetHistoriesByToIdMaxTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByToIdMaxTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByToIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdMinAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_AMOUNT_ASC', + ConfidentialAssetHistoriesByToIdMinAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_AMOUNT_DESC', + ConfidentialAssetHistoriesByToIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetHistoriesByToIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetHistoriesByToIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByToIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByToIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetHistoriesByToIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetHistoriesByToIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdMinDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_DATETIME_ASC', + ConfidentialAssetHistoriesByToIdMinDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_DATETIME_DESC', + ConfidentialAssetHistoriesByToIdMinEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByToIdMinEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByToIdMinEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_EVENT_ID_ASC', + ConfidentialAssetHistoriesByToIdMinEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_EVENT_ID_DESC', + ConfidentialAssetHistoriesByToIdMinExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByToIdMinExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByToIdMinFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_FROM_ID_ASC', + ConfidentialAssetHistoriesByToIdMinFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_FROM_ID_DESC', + ConfidentialAssetHistoriesByToIdMinIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_ID_ASC', + ConfidentialAssetHistoriesByToIdMinIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_ID_DESC', + ConfidentialAssetHistoriesByToIdMinMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_MEMO_ASC', + ConfidentialAssetHistoriesByToIdMinMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_MEMO_DESC', + ConfidentialAssetHistoriesByToIdMinToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_TO_ID_ASC', + ConfidentialAssetHistoriesByToIdMinToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_TO_ID_DESC', + ConfidentialAssetHistoriesByToIdMinTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByToIdMinTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByToIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByToIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdSumAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_AMOUNT_ASC', + ConfidentialAssetHistoriesByToIdSumAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_AMOUNT_DESC', + ConfidentialAssetHistoriesByToIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetHistoriesByToIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetHistoriesByToIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByToIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByToIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetHistoriesByToIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetHistoriesByToIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdSumDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_DATETIME_ASC', + ConfidentialAssetHistoriesByToIdSumDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_DATETIME_DESC', + ConfidentialAssetHistoriesByToIdSumEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByToIdSumEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByToIdSumEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_EVENT_ID_ASC', + ConfidentialAssetHistoriesByToIdSumEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_EVENT_ID_DESC', + ConfidentialAssetHistoriesByToIdSumExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByToIdSumExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByToIdSumFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_FROM_ID_ASC', + ConfidentialAssetHistoriesByToIdSumFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_FROM_ID_DESC', + ConfidentialAssetHistoriesByToIdSumIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_ID_ASC', + ConfidentialAssetHistoriesByToIdSumIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_ID_DESC', + ConfidentialAssetHistoriesByToIdSumMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_MEMO_ASC', + ConfidentialAssetHistoriesByToIdSumMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_MEMO_DESC', + ConfidentialAssetHistoriesByToIdSumToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_TO_ID_ASC', + ConfidentialAssetHistoriesByToIdSumToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_TO_ID_DESC', + ConfidentialAssetHistoriesByToIdSumTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByToIdSumTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByToIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByToIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByToIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByToIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdAverageAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAccountIdAverageAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAccountIdAverageAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_AMOUNT_ASC', + ConfidentialAssetHoldersByAccountIdAverageAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_AMOUNT_DESC', + ConfidentialAssetHoldersByAccountIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetHoldersByAccountIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetHoldersByAccountIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAccountIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAccountIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetHoldersByAccountIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetHoldersByAccountIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAccountIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAccountIdAverageIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_ID_ASC', + ConfidentialAssetHoldersByAccountIdAverageIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_ID_DESC', + ConfidentialAssetHoldersByAccountIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdCountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_COUNT_ASC', + ConfidentialAssetHoldersByAccountIdCountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_COUNT_DESC', + ConfidentialAssetHoldersByAccountIdDistinctCountAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAccountIdDistinctCountAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAccountIdDistinctCountAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_AMOUNT_ASC', + ConfidentialAssetHoldersByAccountIdDistinctCountAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_AMOUNT_DESC', + ConfidentialAssetHoldersByAccountIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetHoldersByAccountIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetHoldersByAccountIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAccountIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAccountIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetHoldersByAccountIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetHoldersByAccountIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAccountIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAccountIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetHoldersByAccountIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetHoldersByAccountIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdMaxAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAccountIdMaxAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAccountIdMaxAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_AMOUNT_ASC', + ConfidentialAssetHoldersByAccountIdMaxAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_AMOUNT_DESC', + ConfidentialAssetHoldersByAccountIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetHoldersByAccountIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetHoldersByAccountIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAccountIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAccountIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetHoldersByAccountIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetHoldersByAccountIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAccountIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAccountIdMaxIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_ID_ASC', + ConfidentialAssetHoldersByAccountIdMaxIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_ID_DESC', + ConfidentialAssetHoldersByAccountIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdMinAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAccountIdMinAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAccountIdMinAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_AMOUNT_ASC', + ConfidentialAssetHoldersByAccountIdMinAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_AMOUNT_DESC', + ConfidentialAssetHoldersByAccountIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetHoldersByAccountIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetHoldersByAccountIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAccountIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAccountIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetHoldersByAccountIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetHoldersByAccountIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdMinEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAccountIdMinEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAccountIdMinIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_ID_ASC', + ConfidentialAssetHoldersByAccountIdMinIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_ID_DESC', + ConfidentialAssetHoldersByAccountIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdStddevPopulationAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAccountIdStddevPopulationAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAccountIdStddevPopulationAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_AMOUNT_ASC', + ConfidentialAssetHoldersByAccountIdStddevPopulationAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_AMOUNT_DESC', + ConfidentialAssetHoldersByAccountIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHoldersByAccountIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHoldersByAccountIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAccountIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAccountIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHoldersByAccountIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHoldersByAccountIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAccountIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAccountIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetHoldersByAccountIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetHoldersByAccountIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdStddevSampleAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAccountIdStddevSampleAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAccountIdStddevSampleAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHoldersByAccountIdStddevSampleAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHoldersByAccountIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHoldersByAccountIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHoldersByAccountIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAccountIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAccountIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHoldersByAccountIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHoldersByAccountIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAccountIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAccountIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetHoldersByAccountIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetHoldersByAccountIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdSumAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAccountIdSumAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAccountIdSumAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_AMOUNT_ASC', + ConfidentialAssetHoldersByAccountIdSumAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_AMOUNT_DESC', + ConfidentialAssetHoldersByAccountIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetHoldersByAccountIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetHoldersByAccountIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAccountIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAccountIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetHoldersByAccountIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetHoldersByAccountIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdSumEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAccountIdSumEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAccountIdSumIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_ID_ASC', + ConfidentialAssetHoldersByAccountIdSumIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_ID_DESC', + ConfidentialAssetHoldersByAccountIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdVariancePopulationAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAccountIdVariancePopulationAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAccountIdVariancePopulationAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_AMOUNT_ASC', + ConfidentialAssetHoldersByAccountIdVariancePopulationAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_AMOUNT_DESC', + ConfidentialAssetHoldersByAccountIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHoldersByAccountIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHoldersByAccountIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAccountIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAccountIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHoldersByAccountIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHoldersByAccountIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAccountIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAccountIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetHoldersByAccountIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetHoldersByAccountIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdVarianceSampleAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAccountIdVarianceSampleAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAccountIdVarianceSampleAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHoldersByAccountIdVarianceSampleAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHoldersByAccountIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHoldersByAccountIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHoldersByAccountIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAccountIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAccountIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHoldersByAccountIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHoldersByAccountIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAccountIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAccountIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAccountIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetHoldersByAccountIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetHoldersByAccountIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAccountIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetMovementsByFromIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetMovementsByFromIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByFromIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByFromIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetMovementsByFromIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetMovementsByFromIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdAverageFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_FROM_ID_ASC', + ConfidentialAssetMovementsByFromIdAverageFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_FROM_ID_DESC', + ConfidentialAssetMovementsByFromIdAverageIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_ID_ASC', + ConfidentialAssetMovementsByFromIdAverageIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_ID_DESC', + ConfidentialAssetMovementsByFromIdAverageProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_PROOF_ASC', + ConfidentialAssetMovementsByFromIdAverageProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_PROOF_DESC', + ConfidentialAssetMovementsByFromIdAverageToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_TO_ID_ASC', + ConfidentialAssetMovementsByFromIdAverageToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_TO_ID_DESC', + ConfidentialAssetMovementsByFromIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdCountAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_COUNT_ASC', + ConfidentialAssetMovementsByFromIdCountDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_COUNT_DESC', + ConfidentialAssetMovementsByFromIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetMovementsByFromIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetMovementsByFromIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByFromIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByFromIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetMovementsByFromIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetMovementsByFromIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdDistinctCountFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_ASC', + ConfidentialAssetMovementsByFromIdDistinctCountFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_DESC', + ConfidentialAssetMovementsByFromIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetMovementsByFromIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetMovementsByFromIdDistinctCountProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_PROOF_ASC', + ConfidentialAssetMovementsByFromIdDistinctCountProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_PROOF_DESC', + ConfidentialAssetMovementsByFromIdDistinctCountToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_TO_ID_ASC', + ConfidentialAssetMovementsByFromIdDistinctCountToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_TO_ID_DESC', + ConfidentialAssetMovementsByFromIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetMovementsByFromIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetMovementsByFromIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByFromIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByFromIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetMovementsByFromIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetMovementsByFromIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdMaxFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_FROM_ID_ASC', + ConfidentialAssetMovementsByFromIdMaxFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_FROM_ID_DESC', + ConfidentialAssetMovementsByFromIdMaxIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_ID_ASC', + ConfidentialAssetMovementsByFromIdMaxIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_ID_DESC', + ConfidentialAssetMovementsByFromIdMaxProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_PROOF_ASC', + ConfidentialAssetMovementsByFromIdMaxProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_PROOF_DESC', + ConfidentialAssetMovementsByFromIdMaxToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_TO_ID_ASC', + ConfidentialAssetMovementsByFromIdMaxToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_TO_ID_DESC', + ConfidentialAssetMovementsByFromIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetMovementsByFromIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetMovementsByFromIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByFromIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByFromIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetMovementsByFromIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetMovementsByFromIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdMinFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_FROM_ID_ASC', + ConfidentialAssetMovementsByFromIdMinFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_FROM_ID_DESC', + ConfidentialAssetMovementsByFromIdMinIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_ID_ASC', + ConfidentialAssetMovementsByFromIdMinIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_ID_DESC', + ConfidentialAssetMovementsByFromIdMinProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_PROOF_ASC', + ConfidentialAssetMovementsByFromIdMinProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_PROOF_DESC', + ConfidentialAssetMovementsByFromIdMinToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_TO_ID_ASC', + ConfidentialAssetMovementsByFromIdMinToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_TO_ID_DESC', + ConfidentialAssetMovementsByFromIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByFromIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByFromIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetMovementsByFromIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetMovementsByFromIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevPopulationFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevPopulationFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevPopulationProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_PROOF_ASC', + ConfidentialAssetMovementsByFromIdStddevPopulationProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_PROOF_DESC', + ConfidentialAssetMovementsByFromIdStddevPopulationToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_TO_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevPopulationToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_TO_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByFromIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByFromIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetMovementsByFromIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetMovementsByFromIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevSampleFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevSampleFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevSampleProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_PROOF_ASC', + ConfidentialAssetMovementsByFromIdStddevSampleProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_PROOF_DESC', + ConfidentialAssetMovementsByFromIdStddevSampleToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevSampleToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_DESC', + ConfidentialAssetMovementsByFromIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetMovementsByFromIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetMovementsByFromIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByFromIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByFromIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetMovementsByFromIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetMovementsByFromIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdSumFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_FROM_ID_ASC', + ConfidentialAssetMovementsByFromIdSumFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_FROM_ID_DESC', + ConfidentialAssetMovementsByFromIdSumIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_ID_ASC', + ConfidentialAssetMovementsByFromIdSumIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_ID_DESC', + ConfidentialAssetMovementsByFromIdSumProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_PROOF_ASC', + ConfidentialAssetMovementsByFromIdSumProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_PROOF_DESC', + ConfidentialAssetMovementsByFromIdSumToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_TO_ID_ASC', + ConfidentialAssetMovementsByFromIdSumToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_TO_ID_DESC', + ConfidentialAssetMovementsByFromIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetMovementsByFromIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetMovementsByFromIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByFromIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByFromIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetMovementsByFromIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetMovementsByFromIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdVariancePopulationFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_ASC', + ConfidentialAssetMovementsByFromIdVariancePopulationFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_DESC', + ConfidentialAssetMovementsByFromIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetMovementsByFromIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetMovementsByFromIdVariancePopulationProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_PROOF_ASC', + ConfidentialAssetMovementsByFromIdVariancePopulationProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_PROOF_DESC', + ConfidentialAssetMovementsByFromIdVariancePopulationToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_ASC', + ConfidentialAssetMovementsByFromIdVariancePopulationToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_DESC', + ConfidentialAssetMovementsByFromIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetMovementsByFromIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetMovementsByFromIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByFromIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByFromIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetMovementsByFromIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetMovementsByFromIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByFromIdVarianceSampleFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + ConfidentialAssetMovementsByFromIdVarianceSampleFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + ConfidentialAssetMovementsByFromIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetMovementsByFromIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetMovementsByFromIdVarianceSampleProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_PROOF_ASC', + ConfidentialAssetMovementsByFromIdVarianceSampleProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_PROOF_DESC', + ConfidentialAssetMovementsByFromIdVarianceSampleToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_ASC', + ConfidentialAssetMovementsByFromIdVarianceSampleToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_DESC', + ConfidentialAssetMovementsByFromIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByFromIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetMovementsByToIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetMovementsByToIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByToIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByToIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetMovementsByToIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetMovementsByToIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdAverageFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_FROM_ID_ASC', + ConfidentialAssetMovementsByToIdAverageFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_FROM_ID_DESC', + ConfidentialAssetMovementsByToIdAverageIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_ID_ASC', + ConfidentialAssetMovementsByToIdAverageIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_ID_DESC', + ConfidentialAssetMovementsByToIdAverageProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_PROOF_ASC', + ConfidentialAssetMovementsByToIdAverageProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_PROOF_DESC', + ConfidentialAssetMovementsByToIdAverageToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_TO_ID_ASC', + ConfidentialAssetMovementsByToIdAverageToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_TO_ID_DESC', + ConfidentialAssetMovementsByToIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdCountAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_COUNT_ASC', + ConfidentialAssetMovementsByToIdCountDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_COUNT_DESC', + ConfidentialAssetMovementsByToIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetMovementsByToIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetMovementsByToIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByToIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByToIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetMovementsByToIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetMovementsByToIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdDistinctCountFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_FROM_ID_ASC', + ConfidentialAssetMovementsByToIdDistinctCountFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_FROM_ID_DESC', + ConfidentialAssetMovementsByToIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetMovementsByToIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetMovementsByToIdDistinctCountProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_PROOF_ASC', + ConfidentialAssetMovementsByToIdDistinctCountProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_PROOF_DESC', + ConfidentialAssetMovementsByToIdDistinctCountToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_TO_ID_ASC', + ConfidentialAssetMovementsByToIdDistinctCountToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_TO_ID_DESC', + ConfidentialAssetMovementsByToIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetMovementsByToIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetMovementsByToIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByToIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByToIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetMovementsByToIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetMovementsByToIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdMaxFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_FROM_ID_ASC', + ConfidentialAssetMovementsByToIdMaxFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_FROM_ID_DESC', + ConfidentialAssetMovementsByToIdMaxIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_ID_ASC', + ConfidentialAssetMovementsByToIdMaxIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_ID_DESC', + ConfidentialAssetMovementsByToIdMaxProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_PROOF_ASC', + ConfidentialAssetMovementsByToIdMaxProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_PROOF_DESC', + ConfidentialAssetMovementsByToIdMaxToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_TO_ID_ASC', + ConfidentialAssetMovementsByToIdMaxToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_TO_ID_DESC', + ConfidentialAssetMovementsByToIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetMovementsByToIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetMovementsByToIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByToIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByToIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetMovementsByToIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetMovementsByToIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdMinFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_FROM_ID_ASC', + ConfidentialAssetMovementsByToIdMinFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_FROM_ID_DESC', + ConfidentialAssetMovementsByToIdMinIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_ID_ASC', + ConfidentialAssetMovementsByToIdMinIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_ID_DESC', + ConfidentialAssetMovementsByToIdMinProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_PROOF_ASC', + ConfidentialAssetMovementsByToIdMinProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_PROOF_DESC', + ConfidentialAssetMovementsByToIdMinToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_TO_ID_ASC', + ConfidentialAssetMovementsByToIdMinToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_TO_ID_DESC', + ConfidentialAssetMovementsByToIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetMovementsByToIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetMovementsByToIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByToIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByToIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetMovementsByToIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetMovementsByToIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdStddevPopulationFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_FROM_ID_ASC', + ConfidentialAssetMovementsByToIdStddevPopulationFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_FROM_ID_DESC', + ConfidentialAssetMovementsByToIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetMovementsByToIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetMovementsByToIdStddevPopulationProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_PROOF_ASC', + ConfidentialAssetMovementsByToIdStddevPopulationProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_PROOF_DESC', + ConfidentialAssetMovementsByToIdStddevPopulationToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_TO_ID_ASC', + ConfidentialAssetMovementsByToIdStddevPopulationToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_TO_ID_DESC', + ConfidentialAssetMovementsByToIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetMovementsByToIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetMovementsByToIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByToIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByToIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetMovementsByToIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetMovementsByToIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdStddevSampleFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_FROM_ID_ASC', + ConfidentialAssetMovementsByToIdStddevSampleFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_FROM_ID_DESC', + ConfidentialAssetMovementsByToIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetMovementsByToIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetMovementsByToIdStddevSampleProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_PROOF_ASC', + ConfidentialAssetMovementsByToIdStddevSampleProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_PROOF_DESC', + ConfidentialAssetMovementsByToIdStddevSampleToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_TO_ID_ASC', + ConfidentialAssetMovementsByToIdStddevSampleToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_TO_ID_DESC', + ConfidentialAssetMovementsByToIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetMovementsByToIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetMovementsByToIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByToIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByToIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetMovementsByToIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetMovementsByToIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdSumFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_FROM_ID_ASC', + ConfidentialAssetMovementsByToIdSumFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_FROM_ID_DESC', + ConfidentialAssetMovementsByToIdSumIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_ID_ASC', + ConfidentialAssetMovementsByToIdSumIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_ID_DESC', + ConfidentialAssetMovementsByToIdSumProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_PROOF_ASC', + ConfidentialAssetMovementsByToIdSumProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_PROOF_DESC', + ConfidentialAssetMovementsByToIdSumToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_TO_ID_ASC', + ConfidentialAssetMovementsByToIdSumToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_TO_ID_DESC', + ConfidentialAssetMovementsByToIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetMovementsByToIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetMovementsByToIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByToIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByToIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetMovementsByToIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetMovementsByToIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdVariancePopulationFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_FROM_ID_ASC', + ConfidentialAssetMovementsByToIdVariancePopulationFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_FROM_ID_DESC', + ConfidentialAssetMovementsByToIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetMovementsByToIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetMovementsByToIdVariancePopulationProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_PROOF_ASC', + ConfidentialAssetMovementsByToIdVariancePopulationProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_PROOF_DESC', + ConfidentialAssetMovementsByToIdVariancePopulationToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_TO_ID_ASC', + ConfidentialAssetMovementsByToIdVariancePopulationToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_TO_ID_DESC', + ConfidentialAssetMovementsByToIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetMovementsByToIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetMovementsByToIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByToIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByToIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetMovementsByToIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetMovementsByToIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByToIdVarianceSampleFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + ConfidentialAssetMovementsByToIdVarianceSampleFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + ConfidentialAssetMovementsByToIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetMovementsByToIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetMovementsByToIdVarianceSampleProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_PROOF_ASC', + ConfidentialAssetMovementsByToIdVarianceSampleProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_PROOF_DESC', + ConfidentialAssetMovementsByToIdVarianceSampleToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_TO_ID_ASC', + ConfidentialAssetMovementsByToIdVarianceSampleToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_TO_ID_DESC', + ConfidentialAssetMovementsByToIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByToIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdAverageAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_ASSET_AUDITORS_ASC', + ConfidentialLegsByReceiverIdAverageAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_ASSET_AUDITORS_DESC', + ConfidentialLegsByReceiverIdAverageBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialLegsByReceiverIdAverageBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialLegsByReceiverIdAverageCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialLegsByReceiverIdAverageCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialLegsByReceiverIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdAverageIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_ID_ASC', + ConfidentialLegsByReceiverIdAverageIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_ID_DESC', + ConfidentialLegsByReceiverIdAverageMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_MEDIATORS_ASC', + ConfidentialLegsByReceiverIdAverageMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_MEDIATORS_DESC', + ConfidentialLegsByReceiverIdAverageReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_RECEIVER_ID_ASC', + ConfidentialLegsByReceiverIdAverageReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_RECEIVER_ID_DESC', + ConfidentialLegsByReceiverIdAverageSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_SENDER_ID_ASC', + ConfidentialLegsByReceiverIdAverageSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_SENDER_ID_DESC', + ConfidentialLegsByReceiverIdAverageTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialLegsByReceiverIdAverageTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialLegsByReceiverIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdCountAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_COUNT_ASC', + ConfidentialLegsByReceiverIdCountDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_COUNT_DESC', + ConfidentialLegsByReceiverIdDistinctCountAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_ASSET_AUDITORS_ASC', + ConfidentialLegsByReceiverIdDistinctCountAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_ASSET_AUDITORS_DESC', + ConfidentialLegsByReceiverIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialLegsByReceiverIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialLegsByReceiverIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialLegsByReceiverIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialLegsByReceiverIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdDistinctCountIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialLegsByReceiverIdDistinctCountIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialLegsByReceiverIdDistinctCountMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_MEDIATORS_ASC', + ConfidentialLegsByReceiverIdDistinctCountMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_MEDIATORS_DESC', + ConfidentialLegsByReceiverIdDistinctCountReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_RECEIVER_ID_ASC', + ConfidentialLegsByReceiverIdDistinctCountReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_RECEIVER_ID_DESC', + ConfidentialLegsByReceiverIdDistinctCountSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_SENDER_ID_ASC', + ConfidentialLegsByReceiverIdDistinctCountSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_SENDER_ID_DESC', + ConfidentialLegsByReceiverIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialLegsByReceiverIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialLegsByReceiverIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdMaxAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_ASSET_AUDITORS_ASC', + ConfidentialLegsByReceiverIdMaxAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_ASSET_AUDITORS_DESC', + ConfidentialLegsByReceiverIdMaxBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialLegsByReceiverIdMaxBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialLegsByReceiverIdMaxCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_CREATED_AT_ASC', + ConfidentialLegsByReceiverIdMaxCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_CREATED_AT_DESC', + ConfidentialLegsByReceiverIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdMaxIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_ID_ASC', + ConfidentialLegsByReceiverIdMaxIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_ID_DESC', + ConfidentialLegsByReceiverIdMaxMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_MEDIATORS_ASC', + ConfidentialLegsByReceiverIdMaxMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_MEDIATORS_DESC', + ConfidentialLegsByReceiverIdMaxReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_RECEIVER_ID_ASC', + ConfidentialLegsByReceiverIdMaxReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_RECEIVER_ID_DESC', + ConfidentialLegsByReceiverIdMaxSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_SENDER_ID_ASC', + ConfidentialLegsByReceiverIdMaxSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_SENDER_ID_DESC', + ConfidentialLegsByReceiverIdMaxTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialLegsByReceiverIdMaxTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialLegsByReceiverIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdMinAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_ASSET_AUDITORS_ASC', + ConfidentialLegsByReceiverIdMinAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_ASSET_AUDITORS_DESC', + ConfidentialLegsByReceiverIdMinBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialLegsByReceiverIdMinBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialLegsByReceiverIdMinCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_CREATED_AT_ASC', + ConfidentialLegsByReceiverIdMinCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_CREATED_AT_DESC', + ConfidentialLegsByReceiverIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdMinIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_ID_ASC', + ConfidentialLegsByReceiverIdMinIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_ID_DESC', + ConfidentialLegsByReceiverIdMinMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_MEDIATORS_ASC', + ConfidentialLegsByReceiverIdMinMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_MEDIATORS_DESC', + ConfidentialLegsByReceiverIdMinReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_RECEIVER_ID_ASC', + ConfidentialLegsByReceiverIdMinReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_RECEIVER_ID_DESC', + ConfidentialLegsByReceiverIdMinSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_SENDER_ID_ASC', + ConfidentialLegsByReceiverIdMinSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_SENDER_ID_DESC', + ConfidentialLegsByReceiverIdMinTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialLegsByReceiverIdMinTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialLegsByReceiverIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdStddevPopulationAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_ASSET_AUDITORS_ASC', + ConfidentialLegsByReceiverIdStddevPopulationAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_ASSET_AUDITORS_DESC', + ConfidentialLegsByReceiverIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialLegsByReceiverIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialLegsByReceiverIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialLegsByReceiverIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialLegsByReceiverIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdStddevPopulationIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialLegsByReceiverIdStddevPopulationIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialLegsByReceiverIdStddevPopulationMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_MEDIATORS_ASC', + ConfidentialLegsByReceiverIdStddevPopulationMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_MEDIATORS_DESC', + ConfidentialLegsByReceiverIdStddevPopulationReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_RECEIVER_ID_ASC', + ConfidentialLegsByReceiverIdStddevPopulationReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_RECEIVER_ID_DESC', + ConfidentialLegsByReceiverIdStddevPopulationSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_SENDER_ID_ASC', + ConfidentialLegsByReceiverIdStddevPopulationSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_SENDER_ID_DESC', + ConfidentialLegsByReceiverIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialLegsByReceiverIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialLegsByReceiverIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdStddevSampleAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_ASSET_AUDITORS_ASC', + ConfidentialLegsByReceiverIdStddevSampleAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_ASSET_AUDITORS_DESC', + ConfidentialLegsByReceiverIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialLegsByReceiverIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialLegsByReceiverIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialLegsByReceiverIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialLegsByReceiverIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdStddevSampleIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialLegsByReceiverIdStddevSampleIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialLegsByReceiverIdStddevSampleMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_MEDIATORS_ASC', + ConfidentialLegsByReceiverIdStddevSampleMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_MEDIATORS_DESC', + ConfidentialLegsByReceiverIdStddevSampleReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_RECEIVER_ID_ASC', + ConfidentialLegsByReceiverIdStddevSampleReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_RECEIVER_ID_DESC', + ConfidentialLegsByReceiverIdStddevSampleSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_SENDER_ID_ASC', + ConfidentialLegsByReceiverIdStddevSampleSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_SENDER_ID_DESC', + ConfidentialLegsByReceiverIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialLegsByReceiverIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialLegsByReceiverIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdSumAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_ASSET_AUDITORS_ASC', + ConfidentialLegsByReceiverIdSumAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_ASSET_AUDITORS_DESC', + ConfidentialLegsByReceiverIdSumBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialLegsByReceiverIdSumBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialLegsByReceiverIdSumCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_CREATED_AT_ASC', + ConfidentialLegsByReceiverIdSumCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_CREATED_AT_DESC', + ConfidentialLegsByReceiverIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdSumIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_ID_ASC', + ConfidentialLegsByReceiverIdSumIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_ID_DESC', + ConfidentialLegsByReceiverIdSumMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_MEDIATORS_ASC', + ConfidentialLegsByReceiverIdSumMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_MEDIATORS_DESC', + ConfidentialLegsByReceiverIdSumReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_RECEIVER_ID_ASC', + ConfidentialLegsByReceiverIdSumReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_RECEIVER_ID_DESC', + ConfidentialLegsByReceiverIdSumSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_SENDER_ID_ASC', + ConfidentialLegsByReceiverIdSumSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_SENDER_ID_DESC', + ConfidentialLegsByReceiverIdSumTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialLegsByReceiverIdSumTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialLegsByReceiverIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdVariancePopulationAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_ASSET_AUDITORS_ASC', + ConfidentialLegsByReceiverIdVariancePopulationAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_ASSET_AUDITORS_DESC', + ConfidentialLegsByReceiverIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialLegsByReceiverIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialLegsByReceiverIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialLegsByReceiverIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialLegsByReceiverIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdVariancePopulationIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialLegsByReceiverIdVariancePopulationIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialLegsByReceiverIdVariancePopulationMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_MEDIATORS_ASC', + ConfidentialLegsByReceiverIdVariancePopulationMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_MEDIATORS_DESC', + ConfidentialLegsByReceiverIdVariancePopulationReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_RECEIVER_ID_ASC', + ConfidentialLegsByReceiverIdVariancePopulationReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_RECEIVER_ID_DESC', + ConfidentialLegsByReceiverIdVariancePopulationSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_SENDER_ID_ASC', + ConfidentialLegsByReceiverIdVariancePopulationSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_SENDER_ID_DESC', + ConfidentialLegsByReceiverIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialLegsByReceiverIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialLegsByReceiverIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdVarianceSampleAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_ASSET_AUDITORS_ASC', + ConfidentialLegsByReceiverIdVarianceSampleAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_ASSET_AUDITORS_DESC', + ConfidentialLegsByReceiverIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialLegsByReceiverIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialLegsByReceiverIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialLegsByReceiverIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialLegsByReceiverIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsByReceiverIdVarianceSampleIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialLegsByReceiverIdVarianceSampleIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialLegsByReceiverIdVarianceSampleMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_MEDIATORS_ASC', + ConfidentialLegsByReceiverIdVarianceSampleMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_MEDIATORS_DESC', + ConfidentialLegsByReceiverIdVarianceSampleReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_RECEIVER_ID_ASC', + ConfidentialLegsByReceiverIdVarianceSampleReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_RECEIVER_ID_DESC', + ConfidentialLegsByReceiverIdVarianceSampleSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_SENDER_ID_ASC', + ConfidentialLegsByReceiverIdVarianceSampleSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_SENDER_ID_DESC', + ConfidentialLegsByReceiverIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialLegsByReceiverIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialLegsByReceiverIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsByReceiverIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_RECEIVER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdAverageAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_ASSET_AUDITORS_ASC', + ConfidentialLegsBySenderIdAverageAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_ASSET_AUDITORS_DESC', + ConfidentialLegsBySenderIdAverageBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialLegsBySenderIdAverageBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialLegsBySenderIdAverageCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialLegsBySenderIdAverageCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialLegsBySenderIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdAverageIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_ID_ASC', + ConfidentialLegsBySenderIdAverageIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_ID_DESC', + ConfidentialLegsBySenderIdAverageMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_MEDIATORS_ASC', + ConfidentialLegsBySenderIdAverageMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_MEDIATORS_DESC', + ConfidentialLegsBySenderIdAverageReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_RECEIVER_ID_ASC', + ConfidentialLegsBySenderIdAverageReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_RECEIVER_ID_DESC', + ConfidentialLegsBySenderIdAverageSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_SENDER_ID_ASC', + ConfidentialLegsBySenderIdAverageSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_SENDER_ID_DESC', + ConfidentialLegsBySenderIdAverageTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialLegsBySenderIdAverageTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialLegsBySenderIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdCountAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_COUNT_ASC', + ConfidentialLegsBySenderIdCountDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_COUNT_DESC', + ConfidentialLegsBySenderIdDistinctCountAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_ASSET_AUDITORS_ASC', + ConfidentialLegsBySenderIdDistinctCountAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_ASSET_AUDITORS_DESC', + ConfidentialLegsBySenderIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialLegsBySenderIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialLegsBySenderIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialLegsBySenderIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialLegsBySenderIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdDistinctCountIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialLegsBySenderIdDistinctCountIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialLegsBySenderIdDistinctCountMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_MEDIATORS_ASC', + ConfidentialLegsBySenderIdDistinctCountMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_MEDIATORS_DESC', + ConfidentialLegsBySenderIdDistinctCountReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_RECEIVER_ID_ASC', + ConfidentialLegsBySenderIdDistinctCountReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_RECEIVER_ID_DESC', + ConfidentialLegsBySenderIdDistinctCountSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_SENDER_ID_ASC', + ConfidentialLegsBySenderIdDistinctCountSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_SENDER_ID_DESC', + ConfidentialLegsBySenderIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialLegsBySenderIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialLegsBySenderIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdMaxAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_ASSET_AUDITORS_ASC', + ConfidentialLegsBySenderIdMaxAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_ASSET_AUDITORS_DESC', + ConfidentialLegsBySenderIdMaxBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialLegsBySenderIdMaxBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialLegsBySenderIdMaxCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_CREATED_AT_ASC', + ConfidentialLegsBySenderIdMaxCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_CREATED_AT_DESC', + ConfidentialLegsBySenderIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdMaxIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_ID_ASC', + ConfidentialLegsBySenderIdMaxIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_ID_DESC', + ConfidentialLegsBySenderIdMaxMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_MEDIATORS_ASC', + ConfidentialLegsBySenderIdMaxMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_MEDIATORS_DESC', + ConfidentialLegsBySenderIdMaxReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_RECEIVER_ID_ASC', + ConfidentialLegsBySenderIdMaxReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_RECEIVER_ID_DESC', + ConfidentialLegsBySenderIdMaxSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_SENDER_ID_ASC', + ConfidentialLegsBySenderIdMaxSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_SENDER_ID_DESC', + ConfidentialLegsBySenderIdMaxTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialLegsBySenderIdMaxTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialLegsBySenderIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdMinAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_ASSET_AUDITORS_ASC', + ConfidentialLegsBySenderIdMinAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_ASSET_AUDITORS_DESC', + ConfidentialLegsBySenderIdMinBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialLegsBySenderIdMinBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialLegsBySenderIdMinCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_CREATED_AT_ASC', + ConfidentialLegsBySenderIdMinCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_CREATED_AT_DESC', + ConfidentialLegsBySenderIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdMinIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_ID_ASC', + ConfidentialLegsBySenderIdMinIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_ID_DESC', + ConfidentialLegsBySenderIdMinMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_MEDIATORS_ASC', + ConfidentialLegsBySenderIdMinMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_MEDIATORS_DESC', + ConfidentialLegsBySenderIdMinReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_RECEIVER_ID_ASC', + ConfidentialLegsBySenderIdMinReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_RECEIVER_ID_DESC', + ConfidentialLegsBySenderIdMinSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_SENDER_ID_ASC', + ConfidentialLegsBySenderIdMinSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_SENDER_ID_DESC', + ConfidentialLegsBySenderIdMinTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialLegsBySenderIdMinTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialLegsBySenderIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdStddevPopulationAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_ASSET_AUDITORS_ASC', + ConfidentialLegsBySenderIdStddevPopulationAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_ASSET_AUDITORS_DESC', + ConfidentialLegsBySenderIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialLegsBySenderIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialLegsBySenderIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialLegsBySenderIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialLegsBySenderIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdStddevPopulationIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialLegsBySenderIdStddevPopulationIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialLegsBySenderIdStddevPopulationMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_MEDIATORS_ASC', + ConfidentialLegsBySenderIdStddevPopulationMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_MEDIATORS_DESC', + ConfidentialLegsBySenderIdStddevPopulationReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_RECEIVER_ID_ASC', + ConfidentialLegsBySenderIdStddevPopulationReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_RECEIVER_ID_DESC', + ConfidentialLegsBySenderIdStddevPopulationSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_SENDER_ID_ASC', + ConfidentialLegsBySenderIdStddevPopulationSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_SENDER_ID_DESC', + ConfidentialLegsBySenderIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialLegsBySenderIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialLegsBySenderIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdStddevSampleAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_ASSET_AUDITORS_ASC', + ConfidentialLegsBySenderIdStddevSampleAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_ASSET_AUDITORS_DESC', + ConfidentialLegsBySenderIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialLegsBySenderIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialLegsBySenderIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialLegsBySenderIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialLegsBySenderIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdStddevSampleIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialLegsBySenderIdStddevSampleIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialLegsBySenderIdStddevSampleMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_MEDIATORS_ASC', + ConfidentialLegsBySenderIdStddevSampleMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_MEDIATORS_DESC', + ConfidentialLegsBySenderIdStddevSampleReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_RECEIVER_ID_ASC', + ConfidentialLegsBySenderIdStddevSampleReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_RECEIVER_ID_DESC', + ConfidentialLegsBySenderIdStddevSampleSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_SENDER_ID_ASC', + ConfidentialLegsBySenderIdStddevSampleSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_SENDER_ID_DESC', + ConfidentialLegsBySenderIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialLegsBySenderIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialLegsBySenderIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdSumAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_ASSET_AUDITORS_ASC', + ConfidentialLegsBySenderIdSumAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_ASSET_AUDITORS_DESC', + ConfidentialLegsBySenderIdSumBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialLegsBySenderIdSumBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialLegsBySenderIdSumCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_CREATED_AT_ASC', + ConfidentialLegsBySenderIdSumCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_CREATED_AT_DESC', + ConfidentialLegsBySenderIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdSumIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_ID_ASC', + ConfidentialLegsBySenderIdSumIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_ID_DESC', + ConfidentialLegsBySenderIdSumMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_MEDIATORS_ASC', + ConfidentialLegsBySenderIdSumMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_MEDIATORS_DESC', + ConfidentialLegsBySenderIdSumReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_RECEIVER_ID_ASC', + ConfidentialLegsBySenderIdSumReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_RECEIVER_ID_DESC', + ConfidentialLegsBySenderIdSumSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_SENDER_ID_ASC', + ConfidentialLegsBySenderIdSumSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_SENDER_ID_DESC', + ConfidentialLegsBySenderIdSumTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialLegsBySenderIdSumTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialLegsBySenderIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdVariancePopulationAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_ASSET_AUDITORS_ASC', + ConfidentialLegsBySenderIdVariancePopulationAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_ASSET_AUDITORS_DESC', + ConfidentialLegsBySenderIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialLegsBySenderIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialLegsBySenderIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialLegsBySenderIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialLegsBySenderIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdVariancePopulationIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialLegsBySenderIdVariancePopulationIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialLegsBySenderIdVariancePopulationMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_MEDIATORS_ASC', + ConfidentialLegsBySenderIdVariancePopulationMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_MEDIATORS_DESC', + ConfidentialLegsBySenderIdVariancePopulationReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_RECEIVER_ID_ASC', + ConfidentialLegsBySenderIdVariancePopulationReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_RECEIVER_ID_DESC', + ConfidentialLegsBySenderIdVariancePopulationSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_SENDER_ID_ASC', + ConfidentialLegsBySenderIdVariancePopulationSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_SENDER_ID_DESC', + ConfidentialLegsBySenderIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialLegsBySenderIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialLegsBySenderIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdVarianceSampleAssetAuditorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_ASSET_AUDITORS_ASC', + ConfidentialLegsBySenderIdVarianceSampleAssetAuditorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_ASSET_AUDITORS_DESC', + ConfidentialLegsBySenderIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialLegsBySenderIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialLegsBySenderIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialLegsBySenderIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialLegsBySenderIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialLegsBySenderIdVarianceSampleIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialLegsBySenderIdVarianceSampleIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialLegsBySenderIdVarianceSampleMediatorsAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_MEDIATORS_ASC', + ConfidentialLegsBySenderIdVarianceSampleMediatorsDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_MEDIATORS_DESC', + ConfidentialLegsBySenderIdVarianceSampleReceiverIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_RECEIVER_ID_ASC', + ConfidentialLegsBySenderIdVarianceSampleReceiverIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_RECEIVER_ID_DESC', + ConfidentialLegsBySenderIdVarianceSampleSenderIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_SENDER_ID_ASC', + ConfidentialLegsBySenderIdVarianceSampleSenderIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_SENDER_ID_DESC', + ConfidentialLegsBySenderIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialLegsBySenderIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialLegsBySenderIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialLegsBySenderIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_LEGS_BY_SENDER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdAveragePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_PARTY_ASC', + ConfidentialTransactionAffirmationsByAccountIdAveragePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_PARTY_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_PROOFS_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_PROOFS_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_STATUS_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_STATUS_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdCountAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_COUNT_ASC', + ConfidentialTransactionAffirmationsByAccountIdCountDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_COUNT_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_PARTY_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_PARTY_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_PROOFS_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_PROOFS_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_STATUS_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_STATUS_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_PARTY_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_PARTY_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_PROOFS_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_PROOFS_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_STATUS_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_STATUS_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_PARTY_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_PARTY_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_PROOFS_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_PROOFS_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_STATUS_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_STATUS_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_PARTY_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_PARTY_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_PROOFS_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_PROOFS_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_STATUS_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_STATUS_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSamplePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_PARTY_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSamplePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_PARTY_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_PROOFS_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_PROOFS_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_STATUS_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_STATUS_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_PARTY_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_PARTY_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_PROOFS_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_PROOFS_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_STATUS_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_STATUS_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_PARTY_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_PARTY_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_PROOFS_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_PROOFS_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_STATUS_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_STATUS_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSamplePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_PARTY_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSamplePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_PARTY_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_PROOFS_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_PROOFS_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_STATUS_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_STATUS_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsByAccountIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_BY_ACCOUNT_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + CreatorIdAsc = 'CREATOR_ID_ASC', + CreatorIdDesc = 'CREATOR_ID_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + FrozenForAssetAsc = 'FROZEN_FOR_ASSET_ASC', + FrozenForAssetDesc = 'FROZEN_FOR_ASSET_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type ConfidentialAsset = Node & { + __typename?: 'ConfidentialAsset'; + allowedVenues?: Maybe; + assetId: Scalars['String']['output']; + auditors?: Maybe; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHistoryAssetIdAndCreatedBlockId: ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockId: ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHolderAssetIdAndCreatedBlockId: ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHolderAssetIdAndUpdatedBlockId: ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetMovementAssetIdAndCreatedBlockId: ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetMovementAssetIdAndUpdatedBlockId: ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHistoryAssetIdAndFromId: ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHistoryAssetIdAndToId: ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHolderAssetIdAndAccountId: ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetMovementAssetIdAndFromId: ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetMovementAssetIdAndToId: ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAssetId: ConfidentialAssetHoldersConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByAssetId: ConfidentialAssetMovementsConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionId: ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ConfidentialAsset`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `ConfidentialAsset`. */ + creator?: Maybe; + creatorId: Scalars['String']['output']; + data?: Maybe; + eventIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + isFrozen: Scalars['Boolean']['output']; + mediators?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + ticker?: Maybe; + totalSupply: Scalars['BigFloat']['output']; + /** Reads a single `Block` that is related to this `ConfidentialAsset`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + venueFiltering: Scalars['Boolean']['output']; +}; + +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetConfidentialAssetHistoriesByAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetConfidentialAssetHoldersByAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetConfidentialAssetMovementsByAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAssetAggregates = { + __typename?: 'ConfidentialAssetAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `ConfidentialAsset` object types. */ +export type ConfidentialAssetAggregatesFilter = { + /** Mean average aggregate over matching `ConfidentialAsset` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `ConfidentialAsset` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ConfidentialAsset` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `ConfidentialAsset` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `ConfidentialAsset` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `ConfidentialAsset` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `ConfidentialAsset` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `ConfidentialAsset` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `ConfidentialAsset` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `ConfidentialAsset` objects. */ + varianceSample?: InputMaybe; +}; + +export type ConfidentialAssetAverageAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetAverageAggregates = { + __typename?: 'ConfidentialAssetAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of totalSupply across the matching connection */ + totalSupply?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHistoryAssetIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByCreatedBlockId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByUpdatedBlockId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetBlocksByConfidentialAssetHolderAssetIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByCreatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByUpdatedBlockId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetBlocksByConfidentialAssetMovementAssetIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHistoryAssetIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHoldersByAccountId: ConfidentialAssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHolder`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetHolderAssetIdAndAccountIdManyToManyEdgeConfidentialAssetHoldersByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByFromId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndFromIdManyToManyEdgeConfidentialAssetMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovementsByToId: ConfidentialAssetMovementsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetMovement`. */ +export type ConfidentialAssetConfidentialAccountsByConfidentialAssetMovementAssetIdAndToIdManyToManyEdgeConfidentialAssetMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyConnection = + { + __typename?: 'ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyEdge = + { + __typename?: 'ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialAssetConfidentialTransactionsByConfidentialAssetHistoryAssetIdAndTransactionIdManyToManyEdgeConfidentialAssetHistoriesByTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialAssetDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + allowedVenues?: InputMaybe; + assetId?: InputMaybe; + auditors?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + creatorId?: InputMaybe; + data?: InputMaybe; + eventIdx?: InputMaybe; + id?: InputMaybe; + isFrozen?: InputMaybe; + mediators?: InputMaybe; + ticker?: InputMaybe; + totalSupply?: InputMaybe; + updatedBlockId?: InputMaybe; + venueFiltering?: InputMaybe; +}; + +export type ConfidentialAssetDistinctCountAggregates = { + __typename?: 'ConfidentialAssetDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of allowedVenues across the matching connection */ + allowedVenues?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of auditors across the matching connection */ + auditors?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of creatorId across the matching connection */ + creatorId?: Maybe; + /** Distinct count of data across the matching connection */ + data?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of isFrozen across the matching connection */ + isFrozen?: Maybe; + /** Distinct count of mediators across the matching connection */ + mediators?: Maybe; + /** Distinct count of ticker across the matching connection */ + ticker?: Maybe; + /** Distinct count of totalSupply across the matching connection */ + totalSupply?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; + /** Distinct count of venueFiltering across the matching connection */ + venueFiltering?: Maybe; +}; + +/** A filter to be used against `ConfidentialAsset` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAssetFilter = { + /** Filter by the object’s `allowedVenues` field. */ + allowedVenues?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `auditors` field. */ + auditors?: InputMaybe; + /** Filter by the object’s `confidentialAssetHistoriesByAssetId` relation. */ + confidentialAssetHistoriesByAssetId?: InputMaybe; + /** Some related `confidentialAssetHistoriesByAssetId` exist. */ + confidentialAssetHistoriesByAssetIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetHoldersByAssetId` relation. */ + confidentialAssetHoldersByAssetId?: InputMaybe; + /** Some related `confidentialAssetHoldersByAssetId` exist. */ + confidentialAssetHoldersByAssetIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetMovementsByAssetId` relation. */ + confidentialAssetMovementsByAssetId?: InputMaybe; + /** Some related `confidentialAssetMovementsByAssetId` exist. */ + confidentialAssetMovementsByAssetIdExist?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `creator` relation. */ + creator?: InputMaybe; + /** Filter by the object’s `creatorId` field. */ + creatorId?: InputMaybe; + /** Filter by the object’s `data` field. */ + data?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `isFrozen` field. */ + isFrozen?: InputMaybe; + /** Filter by the object’s `mediators` field. */ + mediators?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `ticker` field. */ + ticker?: InputMaybe; + /** Filter by the object’s `totalSupply` field. */ + totalSupply?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `venueFiltering` field. */ + venueFiltering?: InputMaybe; +}; + +/** A connection to a list of `ConfidentialAssetHistory` values. */ +export type ConfidentialAssetHistoriesConnection = { + __typename?: 'ConfidentialAssetHistoriesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAssetHistory` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAssetHistory` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAssetHistory` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ConfidentialAssetHistory` values. */ +export type ConfidentialAssetHistoriesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ConfidentialAssetHistory` edge in the connection. */ +export type ConfidentialAssetHistoriesEdge = { + __typename?: 'ConfidentialAssetHistoriesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAssetHistory` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ConfidentialAssetHistory` for usage during aggregation. */ +export enum ConfidentialAssetHistoriesGroupBy { + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + ExtrinsicIdx = 'EXTRINSIC_IDX', + FromId = 'FROM_ID', + Id = 'ID', + Memo = 'MEMO', + ToId = 'TO_ID', + TransactionId = 'TRANSACTION_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type ConfidentialAssetHistoriesHavingAverageInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoriesHavingDistinctCountInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +/** Conditions for `ConfidentialAssetHistory` aggregates. */ +export type ConfidentialAssetHistoriesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ConfidentialAssetHistoriesHavingMaxInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoriesHavingMinInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoriesHavingStddevPopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoriesHavingStddevSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoriesHavingSumInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoriesHavingVariancePopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoriesHavingVarianceSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +/** Methods to use when ordering `ConfidentialAssetHistory`. */ +export enum ConfidentialAssetHistoriesOrderBy { + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + EventIdAsc = 'EVENT_ID_ASC', + EventIdDesc = 'EVENT_ID_DESC', + ExtrinsicIdxAsc = 'EXTRINSIC_IDX_ASC', + ExtrinsicIdxDesc = 'EXTRINSIC_IDX_DESC', + FromIdAsc = 'FROM_ID_ASC', + FromIdDesc = 'FROM_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + MemoAsc = 'MEMO_ASC', + MemoDesc = 'MEMO_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ToIdAsc = 'TO_ID_ASC', + ToIdDesc = 'TO_ID_DESC', + TransactionIdAsc = 'TRANSACTION_ID_ASC', + TransactionIdDesc = 'TRANSACTION_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type ConfidentialAssetHistory = Node & { + __typename?: 'ConfidentialAssetHistory'; + amount: Scalars['String']['output']; + /** Reads a single `ConfidentialAsset` that is related to this `ConfidentialAssetHistory`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ConfidentialAssetHistory`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + eventId: EventIdEnum; + eventIdx: Scalars['Int']['output']; + extrinsicIdx?: Maybe; + /** Reads a single `ConfidentialAccount` that is related to this `ConfidentialAssetHistory`. */ + from?: Maybe; + fromId?: Maybe; + id: Scalars['String']['output']; + memo?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `ConfidentialAccount` that is related to this `ConfidentialAssetHistory`. */ + to?: Maybe; + toId?: Maybe; + /** Reads a single `ConfidentialTransaction` that is related to this `ConfidentialAssetHistory`. */ + transaction?: Maybe; + transactionId?: Maybe; + /** Reads a single `Block` that is related to this `ConfidentialAssetHistory`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type ConfidentialAssetHistoryAggregates = { + __typename?: 'ConfidentialAssetHistoryAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `ConfidentialAssetHistory` object types. */ +export type ConfidentialAssetHistoryAggregatesFilter = { + /** Mean average aggregate over matching `ConfidentialAssetHistory` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `ConfidentialAssetHistory` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ConfidentialAssetHistory` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `ConfidentialAssetHistory` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `ConfidentialAssetHistory` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `ConfidentialAssetHistory` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `ConfidentialAssetHistory` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `ConfidentialAssetHistory` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `ConfidentialAssetHistory` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `ConfidentialAssetHistory` objects. */ + varianceSample?: InputMaybe; +}; + +export type ConfidentialAssetHistoryAverageAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoryAverageAggregates = { + __typename?: 'ConfidentialAssetHistoryAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type ConfidentialAssetHistoryDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + amount?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + eventId?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + fromId?: InputMaybe; + id?: InputMaybe; + memo?: InputMaybe; + toId?: InputMaybe; + transactionId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type ConfidentialAssetHistoryDistinctCountAggregates = { + __typename?: 'ConfidentialAssetHistoryDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of eventId across the matching connection */ + eventId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Distinct count of fromId across the matching connection */ + fromId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of memo across the matching connection */ + memo?: Maybe; + /** Distinct count of toId across the matching connection */ + toId?: Maybe; + /** Distinct count of transactionId across the matching connection */ + transactionId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `ConfidentialAssetHistory` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAssetHistoryFilter = { + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `eventId` field. */ + eventId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `extrinsicIdx` field. */ + extrinsicIdx?: InputMaybe; + /** Filter by the object’s `from` relation. */ + from?: InputMaybe; + /** A related `from` exists. */ + fromExists?: InputMaybe; + /** Filter by the object’s `fromId` field. */ + fromId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `memo` field. */ + memo?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `to` relation. */ + to?: InputMaybe; + /** A related `to` exists. */ + toExists?: InputMaybe; + /** Filter by the object’s `toId` field. */ + toId?: InputMaybe; + /** Filter by the object’s `transaction` relation. */ + transaction?: InputMaybe; + /** A related `transaction` exists. */ + transactionExists?: InputMaybe; + /** Filter by the object’s `transactionId` field. */ + transactionId?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type ConfidentialAssetHistoryMaxAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoryMaxAggregates = { + __typename?: 'ConfidentialAssetHistoryMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type ConfidentialAssetHistoryMinAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoryMinAggregates = { + __typename?: 'ConfidentialAssetHistoryMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type ConfidentialAssetHistoryStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoryStddevPopulationAggregates = { + __typename?: 'ConfidentialAssetHistoryStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type ConfidentialAssetHistoryStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoryStddevSampleAggregates = { + __typename?: 'ConfidentialAssetHistoryStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type ConfidentialAssetHistorySumAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistorySumAggregates = { + __typename?: 'ConfidentialAssetHistorySumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of extrinsicIdx across the matching connection */ + extrinsicIdx: Scalars['BigInt']['output']; +}; + +export type ConfidentialAssetHistoryVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoryVariancePopulationAggregates = { + __typename?: 'ConfidentialAssetHistoryVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type ConfidentialAssetHistoryVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type ConfidentialAssetHistoryVarianceSampleAggregates = { + __typename?: 'ConfidentialAssetHistoryVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type ConfidentialAssetHolder = Node & { + __typename?: 'ConfidentialAssetHolder'; + /** Reads a single `ConfidentialAccount` that is related to this `ConfidentialAssetHolder`. */ + account?: Maybe; + accountId: Scalars['String']['output']; + /** the encrypted amount */ + amount?: Maybe; + /** Reads a single `ConfidentialAsset` that is related to this `ConfidentialAssetHolder`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ConfidentialAssetHolder`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + eventIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Block` that is related to this `ConfidentialAssetHolder`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type ConfidentialAssetHolderAggregates = { + __typename?: 'ConfidentialAssetHolderAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `ConfidentialAssetHolder` object types. */ +export type ConfidentialAssetHolderAggregatesFilter = { + /** Mean average aggregate over matching `ConfidentialAssetHolder` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `ConfidentialAssetHolder` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ConfidentialAssetHolder` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `ConfidentialAssetHolder` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `ConfidentialAssetHolder` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `ConfidentialAssetHolder` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `ConfidentialAssetHolder` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `ConfidentialAssetHolder` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `ConfidentialAssetHolder` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `ConfidentialAssetHolder` objects. */ + varianceSample?: InputMaybe; +}; + +export type ConfidentialAssetHolderAverageAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHolderAverageAggregates = { + __typename?: 'ConfidentialAssetHolderAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type ConfidentialAssetHolderDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + accountId?: InputMaybe; + amount?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + eventIdx?: InputMaybe; + id?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type ConfidentialAssetHolderDistinctCountAggregates = { + __typename?: 'ConfidentialAssetHolderDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of accountId across the matching connection */ + accountId?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `ConfidentialAssetHolder` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAssetHolderFilter = { + /** Filter by the object’s `account` relation. */ + account?: InputMaybe; + /** Filter by the object’s `accountId` field. */ + accountId?: InputMaybe; + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type ConfidentialAssetHolderMaxAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHolderMaxAggregates = { + __typename?: 'ConfidentialAssetHolderMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type ConfidentialAssetHolderMinAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHolderMinAggregates = { + __typename?: 'ConfidentialAssetHolderMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type ConfidentialAssetHolderStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHolderStddevPopulationAggregates = { + __typename?: 'ConfidentialAssetHolderStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type ConfidentialAssetHolderStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHolderStddevSampleAggregates = { + __typename?: 'ConfidentialAssetHolderStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type ConfidentialAssetHolderSumAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHolderSumAggregates = { + __typename?: 'ConfidentialAssetHolderSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; +}; + +export type ConfidentialAssetHolderVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHolderVariancePopulationAggregates = { + __typename?: 'ConfidentialAssetHolderVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type ConfidentialAssetHolderVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHolderVarianceSampleAggregates = { + __typename?: 'ConfidentialAssetHolderVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +/** A connection to a list of `ConfidentialAssetHolder` values. */ +export type ConfidentialAssetHoldersConnection = { + __typename?: 'ConfidentialAssetHoldersConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAssetHolder` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAssetHolder` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAssetHolder` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ConfidentialAssetHolder` values. */ +export type ConfidentialAssetHoldersConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ConfidentialAssetHolder` edge in the connection. */ +export type ConfidentialAssetHoldersEdge = { + __typename?: 'ConfidentialAssetHoldersEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAssetHolder` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ConfidentialAssetHolder` for usage during aggregation. */ +export enum ConfidentialAssetHoldersGroupBy { + AccountId = 'ACCOUNT_ID', + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type ConfidentialAssetHoldersHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHoldersHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Conditions for `ConfidentialAssetHolder` aggregates. */ +export type ConfidentialAssetHoldersHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ConfidentialAssetHoldersHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHoldersHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHoldersHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHoldersHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHoldersHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHoldersHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type ConfidentialAssetHoldersHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Methods to use when ordering `ConfidentialAssetHolder`. */ +export enum ConfidentialAssetHoldersOrderBy { + AccountIdAsc = 'ACCOUNT_ID_ASC', + AccountIdDesc = 'ACCOUNT_ID_DESC', + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type ConfidentialAssetMaxAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetMaxAggregates = { + __typename?: 'ConfidentialAssetMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of totalSupply across the matching connection */ + totalSupply?: Maybe; +}; + +export type ConfidentialAssetMinAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetMinAggregates = { + __typename?: 'ConfidentialAssetMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of totalSupply across the matching connection */ + totalSupply?: Maybe; +}; + +export type ConfidentialAssetMovement = Node & { + __typename?: 'ConfidentialAssetMovement'; + /** Reads a single `ConfidentialAsset` that is related to this `ConfidentialAssetMovement`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ConfidentialAssetMovement`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `ConfidentialAccount` that is related to this `ConfidentialAssetMovement`. */ + from?: Maybe; + fromId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + proof: Scalars['String']['output']; + /** Reads a single `ConfidentialAccount` that is related to this `ConfidentialAssetMovement`. */ + to?: Maybe; + toId: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `ConfidentialAssetMovement`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type ConfidentialAssetMovementAggregates = { + __typename?: 'ConfidentialAssetMovementAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `ConfidentialAssetMovement` object types. */ +export type ConfidentialAssetMovementAggregatesFilter = { + /** Distinct count aggregate over matching `ConfidentialAssetMovement` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ConfidentialAssetMovement` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type ConfidentialAssetMovementDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + fromId?: InputMaybe; + id?: InputMaybe; + proof?: InputMaybe; + toId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type ConfidentialAssetMovementDistinctCountAggregates = { + __typename?: 'ConfidentialAssetMovementDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of fromId across the matching connection */ + fromId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of proof across the matching connection */ + proof?: Maybe; + /** Distinct count of toId across the matching connection */ + toId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `ConfidentialAssetMovement` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAssetMovementFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `from` relation. */ + from?: InputMaybe; + /** Filter by the object’s `fromId` field. */ + fromId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `proof` field. */ + proof?: InputMaybe; + /** Filter by the object’s `to` relation. */ + to?: InputMaybe; + /** Filter by the object’s `toId` field. */ + toId?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `ConfidentialAssetMovement` values. */ +export type ConfidentialAssetMovementsConnection = { + __typename?: 'ConfidentialAssetMovementsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAssetMovement` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAssetMovement` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAssetMovement` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ConfidentialAssetMovement` values. */ +export type ConfidentialAssetMovementsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ConfidentialAssetMovement` edge in the connection. */ +export type ConfidentialAssetMovementsEdge = { + __typename?: 'ConfidentialAssetMovementsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAssetMovement` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ConfidentialAssetMovement` for usage during aggregation. */ +export enum ConfidentialAssetMovementsGroupBy { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + FromId = 'FROM_ID', + Id = 'ID', + Proof = 'PROOF', + ToId = 'TO_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type ConfidentialAssetMovementsHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialAssetMovementsHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `ConfidentialAssetMovement` aggregates. */ +export type ConfidentialAssetMovementsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ConfidentialAssetMovementsHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialAssetMovementsHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialAssetMovementsHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialAssetMovementsHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialAssetMovementsHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialAssetMovementsHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialAssetMovementsHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `ConfidentialAssetMovement`. */ +export enum ConfidentialAssetMovementsOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + FromIdAsc = 'FROM_ID_ASC', + FromIdDesc = 'FROM_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ProofAsc = 'PROOF_ASC', + ProofDesc = 'PROOF_DESC', + ToIdAsc = 'TO_ID_ASC', + ToIdDesc = 'TO_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type ConfidentialAssetStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetStddevPopulationAggregates = { + __typename?: 'ConfidentialAssetStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of totalSupply across the matching connection */ + totalSupply?: Maybe; +}; + +export type ConfidentialAssetStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetStddevSampleAggregates = { + __typename?: 'ConfidentialAssetStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of totalSupply across the matching connection */ + totalSupply?: Maybe; +}; + +export type ConfidentialAssetSumAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetSumAggregates = { + __typename?: 'ConfidentialAssetSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of totalSupply across the matching connection */ + totalSupply: Scalars['BigFloat']['output']; +}; + +/** A filter to be used against many `ConfidentialAssetHistory` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAssetToManyConfidentialAssetHistoryFilter = { + /** Aggregates across related `ConfidentialAssetHistory` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialAssetHolder` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAssetToManyConfidentialAssetHolderFilter = { + /** Aggregates across related `ConfidentialAssetHolder` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialAssetMovement` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialAssetToManyConfidentialAssetMovementFilter = { + /** Aggregates across related `ConfidentialAssetMovement` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAssetMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAssetMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAssetMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type ConfidentialAssetVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetVariancePopulationAggregates = { + __typename?: 'ConfidentialAssetVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of totalSupply across the matching connection */ + totalSupply?: Maybe; +}; + +export type ConfidentialAssetVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetVarianceSampleAggregates = { + __typename?: 'ConfidentialAssetVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of totalSupply across the matching connection */ + totalSupply?: Maybe; +}; + +/** A connection to a list of `ConfidentialAsset` values. */ +export type ConfidentialAssetsConnection = { + __typename?: 'ConfidentialAssetsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ConfidentialAsset` values. */ +export type ConfidentialAssetsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ConfidentialAsset` edge in the connection. */ +export type ConfidentialAssetsEdge = { + __typename?: 'ConfidentialAssetsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ConfidentialAsset` for usage during aggregation. */ +export enum ConfidentialAssetsGroupBy { + AllowedVenues = 'ALLOWED_VENUES', + AssetId = 'ASSET_ID', + Auditors = 'AUDITORS', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorId = 'CREATOR_ID', + Data = 'DATA', + EventIdx = 'EVENT_IDX', + Id = 'ID', + IsFrozen = 'IS_FROZEN', + Mediators = 'MEDIATORS', + Ticker = 'TICKER', + TotalSupply = 'TOTAL_SUPPLY', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + VenueFiltering = 'VENUE_FILTERING', +} + +export type ConfidentialAssetsHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetsHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +/** Conditions for `ConfidentialAsset` aggregates. */ +export type ConfidentialAssetsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ConfidentialAssetsHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetsHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetsHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetsHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +export type ConfidentialAssetsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + totalSupply?: InputMaybe; +}; + +/** Methods to use when ordering `ConfidentialAsset`. */ +export enum ConfidentialAssetsOrderBy { + AllowedVenuesAsc = 'ALLOWED_VENUES_ASC', + AllowedVenuesDesc = 'ALLOWED_VENUES_DESC', + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + AuditorsAsc = 'AUDITORS_ASC', + AuditorsDesc = 'AUDITORS_DESC', + ConfidentialAssetHistoriesByAssetIdAverageAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_AMOUNT_ASC', + ConfidentialAssetHistoriesByAssetIdAverageAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_AMOUNT_DESC', + ConfidentialAssetHistoriesByAssetIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByAssetIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByAssetIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByAssetIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByAssetIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByAssetIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByAssetIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdAverageDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_DATETIME_ASC', + ConfidentialAssetHistoriesByAssetIdAverageDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_DATETIME_DESC', + ConfidentialAssetHistoriesByAssetIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdAverageEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByAssetIdAverageEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByAssetIdAverageExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdAverageExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdAverageFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_FROM_ID_ASC', + ConfidentialAssetHistoriesByAssetIdAverageFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_FROM_ID_DESC', + ConfidentialAssetHistoriesByAssetIdAverageIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_ID_ASC', + ConfidentialAssetHistoriesByAssetIdAverageIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_ID_DESC', + ConfidentialAssetHistoriesByAssetIdAverageMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_MEMO_ASC', + ConfidentialAssetHistoriesByAssetIdAverageMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_MEMO_DESC', + ConfidentialAssetHistoriesByAssetIdAverageToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_TO_ID_ASC', + ConfidentialAssetHistoriesByAssetIdAverageToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_TO_ID_DESC', + ConfidentialAssetHistoriesByAssetIdAverageTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByAssetIdAverageTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByAssetIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdCountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_COUNT_ASC', + ConfidentialAssetHistoriesByAssetIdCountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_COUNT_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_AMOUNT_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_AMOUNT_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_DATETIME_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_DATETIME_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_EVENT_ID_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_EVENT_ID_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_FROM_ID_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_FROM_ID_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_MEMO_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_MEMO_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_TO_ID_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_TO_ID_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByAssetIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMaxAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_AMOUNT_ASC', + ConfidentialAssetHistoriesByAssetIdMaxAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_AMOUNT_DESC', + ConfidentialAssetHistoriesByAssetIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByAssetIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByAssetIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetHistoriesByAssetIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetHistoriesByAssetIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMaxDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_DATETIME_ASC', + ConfidentialAssetHistoriesByAssetIdMaxDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_DATETIME_DESC', + ConfidentialAssetHistoriesByAssetIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdMaxEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_EVENT_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMaxEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_EVENT_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMaxExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdMaxExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdMaxFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_FROM_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMaxFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_FROM_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMaxIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMaxIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMaxMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_MEMO_ASC', + ConfidentialAssetHistoriesByAssetIdMaxMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_MEMO_DESC', + ConfidentialAssetHistoriesByAssetIdMaxToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_TO_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMaxToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_TO_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMaxTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMaxTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMinAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_AMOUNT_ASC', + ConfidentialAssetHistoriesByAssetIdMinAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_AMOUNT_DESC', + ConfidentialAssetHistoriesByAssetIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByAssetIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByAssetIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetHistoriesByAssetIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetHistoriesByAssetIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMinDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_DATETIME_ASC', + ConfidentialAssetHistoriesByAssetIdMinDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_DATETIME_DESC', + ConfidentialAssetHistoriesByAssetIdMinEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdMinEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdMinEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_EVENT_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMinEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_EVENT_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMinExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdMinExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdMinFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_FROM_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMinFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_FROM_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMinIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMinIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMinMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_MEMO_ASC', + ConfidentialAssetHistoriesByAssetIdMinMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_MEMO_DESC', + ConfidentialAssetHistoriesByAssetIdMinToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_TO_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMinToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_TO_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMinTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMinTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByAssetIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByAssetIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdSumAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_AMOUNT_ASC', + ConfidentialAssetHistoriesByAssetIdSumAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_AMOUNT_DESC', + ConfidentialAssetHistoriesByAssetIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetHistoriesByAssetIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetHistoriesByAssetIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByAssetIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByAssetIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetHistoriesByAssetIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetHistoriesByAssetIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdSumDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_DATETIME_ASC', + ConfidentialAssetHistoriesByAssetIdSumDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_DATETIME_DESC', + ConfidentialAssetHistoriesByAssetIdSumEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdSumEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdSumEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_EVENT_ID_ASC', + ConfidentialAssetHistoriesByAssetIdSumEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_EVENT_ID_DESC', + ConfidentialAssetHistoriesByAssetIdSumExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdSumExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdSumFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_FROM_ID_ASC', + ConfidentialAssetHistoriesByAssetIdSumFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_FROM_ID_DESC', + ConfidentialAssetHistoriesByAssetIdSumIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_ID_ASC', + ConfidentialAssetHistoriesByAssetIdSumIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_ID_DESC', + ConfidentialAssetHistoriesByAssetIdSumMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_MEMO_ASC', + ConfidentialAssetHistoriesByAssetIdSumMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_MEMO_DESC', + ConfidentialAssetHistoriesByAssetIdSumToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_TO_ID_ASC', + ConfidentialAssetHistoriesByAssetIdSumToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_TO_ID_DESC', + ConfidentialAssetHistoriesByAssetIdSumTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByAssetIdSumTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByAssetIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByAssetIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_ASSET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdAverageAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAssetIdAverageAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAssetIdAverageAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_AMOUNT_ASC', + ConfidentialAssetHoldersByAssetIdAverageAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_AMOUNT_DESC', + ConfidentialAssetHoldersByAssetIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetHoldersByAssetIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetHoldersByAssetIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAssetIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAssetIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetHoldersByAssetIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetHoldersByAssetIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAssetIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAssetIdAverageIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_ID_ASC', + ConfidentialAssetHoldersByAssetIdAverageIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_ID_DESC', + ConfidentialAssetHoldersByAssetIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdCountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_COUNT_ASC', + ConfidentialAssetHoldersByAssetIdCountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_COUNT_DESC', + ConfidentialAssetHoldersByAssetIdDistinctCountAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAssetIdDistinctCountAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAssetIdDistinctCountAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_AMOUNT_ASC', + ConfidentialAssetHoldersByAssetIdDistinctCountAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_AMOUNT_DESC', + ConfidentialAssetHoldersByAssetIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetHoldersByAssetIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetHoldersByAssetIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAssetIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAssetIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetHoldersByAssetIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetHoldersByAssetIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAssetIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAssetIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetHoldersByAssetIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetHoldersByAssetIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdMaxAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAssetIdMaxAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAssetIdMaxAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_AMOUNT_ASC', + ConfidentialAssetHoldersByAssetIdMaxAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_AMOUNT_DESC', + ConfidentialAssetHoldersByAssetIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetHoldersByAssetIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetHoldersByAssetIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAssetIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAssetIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetHoldersByAssetIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetHoldersByAssetIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAssetIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAssetIdMaxIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_ID_ASC', + ConfidentialAssetHoldersByAssetIdMaxIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_ID_DESC', + ConfidentialAssetHoldersByAssetIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdMinAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAssetIdMinAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAssetIdMinAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_AMOUNT_ASC', + ConfidentialAssetHoldersByAssetIdMinAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_AMOUNT_DESC', + ConfidentialAssetHoldersByAssetIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetHoldersByAssetIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetHoldersByAssetIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAssetIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAssetIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetHoldersByAssetIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetHoldersByAssetIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdMinEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAssetIdMinEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAssetIdMinIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_ID_ASC', + ConfidentialAssetHoldersByAssetIdMinIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_ID_DESC', + ConfidentialAssetHoldersByAssetIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdStddevPopulationAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAssetIdStddevPopulationAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAssetIdStddevPopulationAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_AMOUNT_ASC', + ConfidentialAssetHoldersByAssetIdStddevPopulationAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_AMOUNT_DESC', + ConfidentialAssetHoldersByAssetIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHoldersByAssetIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHoldersByAssetIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAssetIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAssetIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHoldersByAssetIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHoldersByAssetIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAssetIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAssetIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetHoldersByAssetIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetHoldersByAssetIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdStddevSampleAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAssetIdStddevSampleAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAssetIdStddevSampleAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHoldersByAssetIdStddevSampleAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHoldersByAssetIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHoldersByAssetIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHoldersByAssetIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAssetIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAssetIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHoldersByAssetIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHoldersByAssetIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAssetIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAssetIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetHoldersByAssetIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetHoldersByAssetIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdSumAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAssetIdSumAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAssetIdSumAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_AMOUNT_ASC', + ConfidentialAssetHoldersByAssetIdSumAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_AMOUNT_DESC', + ConfidentialAssetHoldersByAssetIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetHoldersByAssetIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetHoldersByAssetIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAssetIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAssetIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetHoldersByAssetIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetHoldersByAssetIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdSumEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAssetIdSumEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAssetIdSumIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_ID_ASC', + ConfidentialAssetHoldersByAssetIdSumIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_ID_DESC', + ConfidentialAssetHoldersByAssetIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdVariancePopulationAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAssetIdVariancePopulationAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAssetIdVariancePopulationAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_AMOUNT_ASC', + ConfidentialAssetHoldersByAssetIdVariancePopulationAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_AMOUNT_DESC', + ConfidentialAssetHoldersByAssetIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHoldersByAssetIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHoldersByAssetIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAssetIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAssetIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHoldersByAssetIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHoldersByAssetIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAssetIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAssetIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetHoldersByAssetIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetHoldersByAssetIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdVarianceSampleAccountIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialAssetHoldersByAssetIdVarianceSampleAccountIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialAssetHoldersByAssetIdVarianceSampleAmountAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHoldersByAssetIdVarianceSampleAmountDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHoldersByAssetIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHoldersByAssetIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHoldersByAssetIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHoldersByAssetIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHoldersByAssetIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHoldersByAssetIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHoldersByAssetIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHoldersByAssetIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHoldersByAssetIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHoldersByAssetIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetHoldersByAssetIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetHoldersByAssetIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHoldersByAssetIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HOLDERS_BY_ASSET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetMovementsByAssetIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetMovementsByAssetIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByAssetIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByAssetIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetMovementsByAssetIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetMovementsByAssetIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdAverageFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_FROM_ID_ASC', + ConfidentialAssetMovementsByAssetIdAverageFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_FROM_ID_DESC', + ConfidentialAssetMovementsByAssetIdAverageIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_ID_ASC', + ConfidentialAssetMovementsByAssetIdAverageIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_ID_DESC', + ConfidentialAssetMovementsByAssetIdAverageProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_PROOF_ASC', + ConfidentialAssetMovementsByAssetIdAverageProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_PROOF_DESC', + ConfidentialAssetMovementsByAssetIdAverageToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_TO_ID_ASC', + ConfidentialAssetMovementsByAssetIdAverageToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_TO_ID_DESC', + ConfidentialAssetMovementsByAssetIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdCountAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_COUNT_ASC', + ConfidentialAssetMovementsByAssetIdCountDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_COUNT_DESC', + ConfidentialAssetMovementsByAssetIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetMovementsByAssetIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetMovementsByAssetIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByAssetIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByAssetIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetMovementsByAssetIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetMovementsByAssetIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdDistinctCountFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_FROM_ID_ASC', + ConfidentialAssetMovementsByAssetIdDistinctCountFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_FROM_ID_DESC', + ConfidentialAssetMovementsByAssetIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetMovementsByAssetIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetMovementsByAssetIdDistinctCountProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_PROOF_ASC', + ConfidentialAssetMovementsByAssetIdDistinctCountProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_PROOF_DESC', + ConfidentialAssetMovementsByAssetIdDistinctCountToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_TO_ID_ASC', + ConfidentialAssetMovementsByAssetIdDistinctCountToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_TO_ID_DESC', + ConfidentialAssetMovementsByAssetIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetMovementsByAssetIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetMovementsByAssetIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByAssetIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByAssetIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetMovementsByAssetIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetMovementsByAssetIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdMaxFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_FROM_ID_ASC', + ConfidentialAssetMovementsByAssetIdMaxFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_FROM_ID_DESC', + ConfidentialAssetMovementsByAssetIdMaxIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_ID_ASC', + ConfidentialAssetMovementsByAssetIdMaxIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_ID_DESC', + ConfidentialAssetMovementsByAssetIdMaxProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_PROOF_ASC', + ConfidentialAssetMovementsByAssetIdMaxProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_PROOF_DESC', + ConfidentialAssetMovementsByAssetIdMaxToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_TO_ID_ASC', + ConfidentialAssetMovementsByAssetIdMaxToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_TO_ID_DESC', + ConfidentialAssetMovementsByAssetIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetMovementsByAssetIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetMovementsByAssetIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByAssetIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByAssetIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetMovementsByAssetIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetMovementsByAssetIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdMinFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_FROM_ID_ASC', + ConfidentialAssetMovementsByAssetIdMinFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_FROM_ID_DESC', + ConfidentialAssetMovementsByAssetIdMinIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_ID_ASC', + ConfidentialAssetMovementsByAssetIdMinIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_ID_DESC', + ConfidentialAssetMovementsByAssetIdMinProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_PROOF_ASC', + ConfidentialAssetMovementsByAssetIdMinProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_PROOF_DESC', + ConfidentialAssetMovementsByAssetIdMinToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_TO_ID_ASC', + ConfidentialAssetMovementsByAssetIdMinToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_TO_ID_DESC', + ConfidentialAssetMovementsByAssetIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByAssetIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByAssetIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetMovementsByAssetIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetMovementsByAssetIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevPopulationFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_FROM_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevPopulationFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_FROM_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevPopulationProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_PROOF_ASC', + ConfidentialAssetMovementsByAssetIdStddevPopulationProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_PROOF_DESC', + ConfidentialAssetMovementsByAssetIdStddevPopulationToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_TO_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevPopulationToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_TO_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByAssetIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByAssetIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetMovementsByAssetIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetMovementsByAssetIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevSampleFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_FROM_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevSampleFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_FROM_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevSampleProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_PROOF_ASC', + ConfidentialAssetMovementsByAssetIdStddevSampleProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_PROOF_DESC', + ConfidentialAssetMovementsByAssetIdStddevSampleToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_TO_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevSampleToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_TO_ID_DESC', + ConfidentialAssetMovementsByAssetIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetMovementsByAssetIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetMovementsByAssetIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByAssetIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByAssetIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetMovementsByAssetIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetMovementsByAssetIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdSumFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_FROM_ID_ASC', + ConfidentialAssetMovementsByAssetIdSumFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_FROM_ID_DESC', + ConfidentialAssetMovementsByAssetIdSumIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_ID_ASC', + ConfidentialAssetMovementsByAssetIdSumIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_ID_DESC', + ConfidentialAssetMovementsByAssetIdSumProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_PROOF_ASC', + ConfidentialAssetMovementsByAssetIdSumProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_PROOF_DESC', + ConfidentialAssetMovementsByAssetIdSumToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_TO_ID_ASC', + ConfidentialAssetMovementsByAssetIdSumToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_TO_ID_DESC', + ConfidentialAssetMovementsByAssetIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetMovementsByAssetIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetMovementsByAssetIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByAssetIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByAssetIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetMovementsByAssetIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetMovementsByAssetIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdVariancePopulationFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_FROM_ID_ASC', + ConfidentialAssetMovementsByAssetIdVariancePopulationFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_FROM_ID_DESC', + ConfidentialAssetMovementsByAssetIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetMovementsByAssetIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetMovementsByAssetIdVariancePopulationProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_PROOF_ASC', + ConfidentialAssetMovementsByAssetIdVariancePopulationProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_PROOF_DESC', + ConfidentialAssetMovementsByAssetIdVariancePopulationToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_TO_ID_ASC', + ConfidentialAssetMovementsByAssetIdVariancePopulationToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_TO_ID_DESC', + ConfidentialAssetMovementsByAssetIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetMovementsByAssetIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetMovementsByAssetIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetMovementsByAssetIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetMovementsByAssetIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetMovementsByAssetIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetMovementsByAssetIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetMovementsByAssetIdVarianceSampleFromIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + ConfidentialAssetMovementsByAssetIdVarianceSampleFromIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + ConfidentialAssetMovementsByAssetIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetMovementsByAssetIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetMovementsByAssetIdVarianceSampleProofAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_PROOF_ASC', + ConfidentialAssetMovementsByAssetIdVarianceSampleProofDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_PROOF_DESC', + ConfidentialAssetMovementsByAssetIdVarianceSampleToIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_TO_ID_ASC', + ConfidentialAssetMovementsByAssetIdVarianceSampleToIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_TO_ID_DESC', + ConfidentialAssetMovementsByAssetIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetMovementsByAssetIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_MOVEMENTS_BY_ASSET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + CreatorIdAsc = 'CREATOR_ID_ASC', + CreatorIdDesc = 'CREATOR_ID_DESC', + DataAsc = 'DATA_ASC', + DataDesc = 'DATA_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + IsFrozenAsc = 'IS_FROZEN_ASC', + IsFrozenDesc = 'IS_FROZEN_DESC', + MediatorsAsc = 'MEDIATORS_ASC', + MediatorsDesc = 'MEDIATORS_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + TickerAsc = 'TICKER_ASC', + TickerDesc = 'TICKER_DESC', + TotalSupplyAsc = 'TOTAL_SUPPLY_ASC', + TotalSupplyDesc = 'TOTAL_SUPPLY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + VenueFilteringAsc = 'VENUE_FILTERING_ASC', + VenueFilteringDesc = 'VENUE_FILTERING_DESC', +} + +export type ConfidentialLeg = Node & { + __typename?: 'ConfidentialLeg'; + assetAuditors: Scalars['JSON']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ConfidentialLeg`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + mediators: Scalars['JSON']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `ConfidentialAccount` that is related to this `ConfidentialLeg`. */ + receiver?: Maybe; + receiverId: Scalars['String']['output']; + /** Reads a single `ConfidentialAccount` that is related to this `ConfidentialLeg`. */ + sender?: Maybe; + senderId: Scalars['String']['output']; + /** Reads a single `ConfidentialTransaction` that is related to this `ConfidentialLeg`. */ + transaction?: Maybe; + transactionId: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `ConfidentialLeg`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type ConfidentialLegAggregates = { + __typename?: 'ConfidentialLegAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `ConfidentialLeg` object types. */ +export type ConfidentialLegAggregatesFilter = { + /** Distinct count aggregate over matching `ConfidentialLeg` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ConfidentialLeg` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type ConfidentialLegDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetAuditors?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + mediators?: InputMaybe; + receiverId?: InputMaybe; + senderId?: InputMaybe; + transactionId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type ConfidentialLegDistinctCountAggregates = { + __typename?: 'ConfidentialLegDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetAuditors across the matching connection */ + assetAuditors?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of mediators across the matching connection */ + mediators?: Maybe; + /** Distinct count of receiverId across the matching connection */ + receiverId?: Maybe; + /** Distinct count of senderId across the matching connection */ + senderId?: Maybe; + /** Distinct count of transactionId across the matching connection */ + transactionId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `ConfidentialLeg` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialLegFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `assetAuditors` field. */ + assetAuditors?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `mediators` field. */ + mediators?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `receiver` relation. */ + receiver?: InputMaybe; + /** Filter by the object’s `receiverId` field. */ + receiverId?: InputMaybe; + /** Filter by the object’s `sender` relation. */ + sender?: InputMaybe; + /** Filter by the object’s `senderId` field. */ + senderId?: InputMaybe; + /** Filter by the object’s `transaction` relation. */ + transaction?: InputMaybe; + /** Filter by the object’s `transactionId` field. */ + transactionId?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `ConfidentialLeg` values. */ +export type ConfidentialLegsConnection = { + __typename?: 'ConfidentialLegsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialLeg` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialLeg` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialLeg` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ConfidentialLeg` values. */ +export type ConfidentialLegsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ConfidentialLeg` edge in the connection. */ +export type ConfidentialLegsEdge = { + __typename?: 'ConfidentialLegsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialLeg` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ConfidentialLeg` for usage during aggregation. */ +export enum ConfidentialLegsGroupBy { + AssetAuditors = 'ASSET_AUDITORS', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + Mediators = 'MEDIATORS', + ReceiverId = 'RECEIVER_ID', + SenderId = 'SENDER_ID', + TransactionId = 'TRANSACTION_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type ConfidentialLegsHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialLegsHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `ConfidentialLeg` aggregates. */ +export type ConfidentialLegsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ConfidentialLegsHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialLegsHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialLegsHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialLegsHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialLegsHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialLegsHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type ConfidentialLegsHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `ConfidentialLeg`. */ +export enum ConfidentialLegsOrderBy { + AssetAuditorsAsc = 'ASSET_AUDITORS_ASC', + AssetAuditorsDesc = 'ASSET_AUDITORS_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + MediatorsAsc = 'MEDIATORS_ASC', + MediatorsDesc = 'MEDIATORS_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ReceiverIdAsc = 'RECEIVER_ID_ASC', + ReceiverIdDesc = 'RECEIVER_ID_DESC', + SenderIdAsc = 'SENDER_ID_ASC', + SenderIdDesc = 'SENDER_ID_DESC', + TransactionIdAsc = 'TRANSACTION_ID_ASC', + TransactionIdDesc = 'TRANSACTION_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type ConfidentialTransaction = Node & { + __typename?: 'ConfidentialTransaction'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + affirmations: ConfidentialTransactionAffirmationsConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockId: ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockId: ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialLegTransactionIdAndCreatedBlockId: ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialLegTransactionIdAndUpdatedBlockId: ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockId: ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockId: ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromId: ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialAssetHistoryTransactionIdAndToId: ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialLegTransactionIdAndReceiverId: ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialLegTransactionIdAndSenderId: ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountId: ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByTransactionId: ConfidentialAssetHistoriesConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetId: ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ConfidentialTransaction`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + eventId: EventIdEnum; + eventIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityId: ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + legs: ConfidentialLegsConnection; + memo?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + pendingAffirmations: Scalars['Int']['output']; + status: ConfidentialTransactionStatusEnum; + /** Reads a single `Block` that is related to this `ConfidentialTransaction`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + /** Reads a single `ConfidentialVenue` that is related to this `ConfidentialTransaction`. */ + venue?: Maybe; + venueId: Scalars['String']['output']; +}; + +export type ConfidentialTransactionAffirmationsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionConfidentialAssetHistoriesByTransactionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionLegsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialTransactionAffirmation = Node & { + __typename?: 'ConfidentialTransactionAffirmation'; + /** Reads a single `ConfidentialAccount` that is related to this `ConfidentialTransactionAffirmation`. */ + account?: Maybe; + accountId?: Maybe; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ConfidentialTransactionAffirmation`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + eventIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `ConfidentialTransactionAffirmation`. */ + identity?: Maybe; + identityId: Scalars['String']['output']; + legId: Scalars['Int']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + party: AffirmingPartyEnum; + proofs?: Maybe; + status: AffirmStatusEnum; + /** Reads a single `ConfidentialTransaction` that is related to this `ConfidentialTransactionAffirmation`. */ + transaction?: Maybe; + transactionId: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `ConfidentialTransactionAffirmation`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type ConfidentialTransactionAffirmationAggregates = { + __typename?: 'ConfidentialTransactionAffirmationAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `ConfidentialTransactionAffirmation` object types. */ +export type ConfidentialTransactionAffirmationAggregatesFilter = { + /** Mean average aggregate over matching `ConfidentialTransactionAffirmation` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `ConfidentialTransactionAffirmation` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ConfidentialTransactionAffirmation` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `ConfidentialTransactionAffirmation` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `ConfidentialTransactionAffirmation` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `ConfidentialTransactionAffirmation` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `ConfidentialTransactionAffirmation` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `ConfidentialTransactionAffirmation` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `ConfidentialTransactionAffirmation` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `ConfidentialTransactionAffirmation` objects. */ + varianceSample?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationAverageAggregateFilter = { + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationAverageAggregates = { + __typename?: 'ConfidentialTransactionAffirmationAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of legId across the matching connection */ + legId?: Maybe; +}; + +export type ConfidentialTransactionAffirmationDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + accountId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + eventIdx?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + legId?: InputMaybe; + party?: InputMaybe; + proofs?: InputMaybe; + status?: InputMaybe; + transactionId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationDistinctCountAggregates = { + __typename?: 'ConfidentialTransactionAffirmationDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of accountId across the matching connection */ + accountId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of legId across the matching connection */ + legId?: Maybe; + /** Distinct count of party across the matching connection */ + party?: Maybe; + /** Distinct count of proofs across the matching connection */ + proofs?: Maybe; + /** Distinct count of status across the matching connection */ + status?: Maybe; + /** Distinct count of transactionId across the matching connection */ + transactionId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `ConfidentialTransactionAffirmation` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialTransactionAffirmationFilter = { + /** Filter by the object’s `account` relation. */ + account?: InputMaybe; + /** A related `account` exists. */ + accountExists?: InputMaybe; + /** Filter by the object’s `accountId` field. */ + accountId?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` relation. */ + identity?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Filter by the object’s `legId` field. */ + legId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `party` field. */ + party?: InputMaybe; + /** Filter by the object’s `proofs` field. */ + proofs?: InputMaybe; + /** Filter by the object’s `status` field. */ + status?: InputMaybe; + /** Filter by the object’s `transaction` relation. */ + transaction?: InputMaybe; + /** Filter by the object’s `transactionId` field. */ + transactionId?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationMaxAggregateFilter = { + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationMaxAggregates = { + __typename?: 'ConfidentialTransactionAffirmationMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of legId across the matching connection */ + legId?: Maybe; +}; + +export type ConfidentialTransactionAffirmationMinAggregateFilter = { + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationMinAggregates = { + __typename?: 'ConfidentialTransactionAffirmationMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of legId across the matching connection */ + legId?: Maybe; +}; + +export type ConfidentialTransactionAffirmationStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationStddevPopulationAggregates = { + __typename?: 'ConfidentialTransactionAffirmationStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of legId across the matching connection */ + legId?: Maybe; +}; + +export type ConfidentialTransactionAffirmationStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationStddevSampleAggregates = { + __typename?: 'ConfidentialTransactionAffirmationStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of legId across the matching connection */ + legId?: Maybe; +}; + +export type ConfidentialTransactionAffirmationSumAggregateFilter = { + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationSumAggregates = { + __typename?: 'ConfidentialTransactionAffirmationSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of legId across the matching connection */ + legId: Scalars['BigInt']['output']; +}; + +export type ConfidentialTransactionAffirmationVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationVariancePopulationAggregates = { + __typename?: 'ConfidentialTransactionAffirmationVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of legId across the matching connection */ + legId?: Maybe; +}; + +export type ConfidentialTransactionAffirmationVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationVarianceSampleAggregates = { + __typename?: 'ConfidentialTransactionAffirmationVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of legId across the matching connection */ + legId?: Maybe; +}; + +/** A connection to a list of `ConfidentialTransactionAffirmation` values. */ +export type ConfidentialTransactionAffirmationsConnection = { + __typename?: 'ConfidentialTransactionAffirmationsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransactionAffirmation` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransactionAffirmation` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransactionAffirmation` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ConfidentialTransactionAffirmation` values. */ +export type ConfidentialTransactionAffirmationsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ConfidentialTransactionAffirmation` edge in the connection. */ +export type ConfidentialTransactionAffirmationsEdge = { + __typename?: 'ConfidentialTransactionAffirmationsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransactionAffirmation` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ConfidentialTransactionAffirmation` for usage during aggregation. */ +export enum ConfidentialTransactionAffirmationsGroupBy { + AccountId = 'ACCOUNT_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + LegId = 'LEG_ID', + Party = 'PARTY', + Proofs = 'PROOFS', + Status = 'STATUS', + TransactionId = 'TRANSACTION_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type ConfidentialTransactionAffirmationsHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationsHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +/** Conditions for `ConfidentialTransactionAffirmation` aggregates. */ +export type ConfidentialTransactionAffirmationsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationsHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationsHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationsHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationsHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +export type ConfidentialTransactionAffirmationsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + legId?: InputMaybe; +}; + +/** Methods to use when ordering `ConfidentialTransactionAffirmation`. */ +export enum ConfidentialTransactionAffirmationsOrderBy { + AccountIdAsc = 'ACCOUNT_ID_ASC', + AccountIdDesc = 'ACCOUNT_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + LegIdAsc = 'LEG_ID_ASC', + LegIdDesc = 'LEG_ID_DESC', + Natural = 'NATURAL', + PartyAsc = 'PARTY_ASC', + PartyDesc = 'PARTY_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ProofsAsc = 'PROOFS_ASC', + ProofsDesc = 'PROOFS_DESC', + StatusAsc = 'STATUS_ASC', + StatusDesc = 'STATUS_DESC', + TransactionIdAsc = 'TRANSACTION_ID_ASC', + TransactionIdDesc = 'TRANSACTION_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type ConfidentialTransactionAggregates = { + __typename?: 'ConfidentialTransactionAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `ConfidentialTransaction` object types. */ +export type ConfidentialTransactionAggregatesFilter = { + /** Mean average aggregate over matching `ConfidentialTransaction` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `ConfidentialTransaction` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ConfidentialTransaction` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `ConfidentialTransaction` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `ConfidentialTransaction` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `ConfidentialTransaction` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `ConfidentialTransaction` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `ConfidentialTransaction` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `ConfidentialTransaction` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `ConfidentialTransaction` objects. */ + varianceSample?: InputMaybe; +}; + +export type ConfidentialTransactionAverageAggregateFilter = { + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionAverageAggregates = { + __typename?: 'ConfidentialTransactionAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of pendingAffirmations across the matching connection */ + pendingAffirmations?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByCreatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByUpdatedBlockId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionBlocksByConfidentialAssetHistoryTransactionIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByCreatedBlockId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndCreatedBlockIdManyToManyEdgeConfidentialLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByUpdatedBlockId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionBlocksByConfidentialLegTransactionIdAndUpdatedBlockIdManyToManyEdgeConfidentialLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionBlocksByConfidentialTransactionAffirmationTransactionIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByFromId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndFromIdManyToManyEdgeConfidentialAssetHistoriesByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByToId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialAssetHistoryTransactionIdAndToIdManyToManyEdgeConfidentialAssetHistoriesByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsByReceiverId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndReceiverIdManyToManyEdgeConfidentialLegsByReceiverIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialLeg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegsBySenderId: ConfidentialLegsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialLeg`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialLegTransactionIdAndSenderIdManyToManyEdgeConfidentialLegsBySenderIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionConfidentialAccountsByConfidentialTransactionAffirmationTransactionIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAsset`, info from the `ConfidentialAssetHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAsset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAsset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAsset` values, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistoriesByAssetId: ConfidentialAssetHistoriesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAsset` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAsset` edge in the connection, with data from `ConfidentialAssetHistory`. */ +export type ConfidentialTransactionConfidentialAssetsByConfidentialAssetHistoryTransactionIdAndAssetIdManyToManyEdgeConfidentialAssetHistoriesByAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + eventId?: InputMaybe; + eventIdx?: InputMaybe; + id?: InputMaybe; + memo?: InputMaybe; + pendingAffirmations?: InputMaybe; + status?: InputMaybe; + updatedBlockId?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialTransactionDistinctCountAggregates = { + __typename?: 'ConfidentialTransactionDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of eventId across the matching connection */ + eventId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of memo across the matching connection */ + memo?: Maybe; + /** Distinct count of pendingAffirmations across the matching connection */ + pendingAffirmations?: Maybe; + /** Distinct count of status across the matching connection */ + status?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; + /** Distinct count of venueId across the matching connection */ + venueId?: Maybe; +}; + +/** A filter to be used against `ConfidentialTransaction` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialTransactionFilter = { + /** Filter by the object’s `affirmations` relation. */ + affirmations?: InputMaybe; + /** Some related `affirmations` exist. */ + affirmationsExist?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `confidentialAssetHistoriesByTransactionId` relation. */ + confidentialAssetHistoriesByTransactionId?: InputMaybe; + /** Some related `confidentialAssetHistoriesByTransactionId` exist. */ + confidentialAssetHistoriesByTransactionIdExist?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `eventId` field. */ + eventId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `legs` relation. */ + legs?: InputMaybe; + /** Some related `legs` exist. */ + legsExist?: InputMaybe; + /** Filter by the object’s `memo` field. */ + memo?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `pendingAffirmations` field. */ + pendingAffirmations?: InputMaybe; + /** Filter by the object’s `status` field. */ + status?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `venue` relation. */ + venue?: InputMaybe; + /** Filter by the object’s `venueId` field. */ + venueId?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyConnection = + { + __typename?: 'ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyEdge = + { + __typename?: 'ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Identity` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type ConfidentialTransactionIdentitiesByConfidentialTransactionAffirmationTransactionIdAndIdentityIdManyToManyEdgeConfidentialTransactionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialTransactionMaxAggregateFilter = { + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionMaxAggregates = { + __typename?: 'ConfidentialTransactionMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of pendingAffirmations across the matching connection */ + pendingAffirmations?: Maybe; +}; + +export type ConfidentialTransactionMinAggregateFilter = { + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionMinAggregates = { + __typename?: 'ConfidentialTransactionMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of pendingAffirmations across the matching connection */ + pendingAffirmations?: Maybe; +}; + +export enum ConfidentialTransactionStatusEnum { + Created = 'Created', + Executed = 'Executed', + Rejected = 'Rejected', +} + +/** A filter to be used against ConfidentialTransactionStatusEnum fields. All fields are combined with a logical ‘and.’ */ +export type ConfidentialTransactionStatusEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type ConfidentialTransactionStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionStddevPopulationAggregates = { + __typename?: 'ConfidentialTransactionStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of pendingAffirmations across the matching connection */ + pendingAffirmations?: Maybe; +}; + +export type ConfidentialTransactionStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionStddevSampleAggregates = { + __typename?: 'ConfidentialTransactionStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of pendingAffirmations across the matching connection */ + pendingAffirmations?: Maybe; +}; + +export type ConfidentialTransactionSumAggregateFilter = { + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionSumAggregates = { + __typename?: 'ConfidentialTransactionSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of pendingAffirmations across the matching connection */ + pendingAffirmations: Scalars['BigInt']['output']; +}; + +/** A filter to be used against many `ConfidentialAssetHistory` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialTransactionToManyConfidentialAssetHistoryFilter = { + /** Aggregates across related `ConfidentialAssetHistory` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAssetHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialLeg` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialTransactionToManyConfidentialLegFilter = { + /** Aggregates across related `ConfidentialLeg` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialLeg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialLeg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialLeg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialTransactionAffirmation` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialTransactionToManyConfidentialTransactionAffirmationFilter = { + /** Aggregates across related `ConfidentialTransactionAffirmation` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type ConfidentialTransactionVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionVariancePopulationAggregates = { + __typename?: 'ConfidentialTransactionVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of pendingAffirmations across the matching connection */ + pendingAffirmations?: Maybe; +}; + +export type ConfidentialTransactionVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionVarianceSampleAggregates = { + __typename?: 'ConfidentialTransactionVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of pendingAffirmations across the matching connection */ + pendingAffirmations?: Maybe; +}; + +/** A connection to a list of `ConfidentialTransaction` values. */ +export type ConfidentialTransactionsConnection = { + __typename?: 'ConfidentialTransactionsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ConfidentialTransaction` values. */ +export type ConfidentialTransactionsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ConfidentialTransaction` edge in the connection. */ +export type ConfidentialTransactionsEdge = { + __typename?: 'ConfidentialTransactionsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ConfidentialTransaction` for usage during aggregation. */ +export enum ConfidentialTransactionsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + Memo = 'MEMO', + PendingAffirmations = 'PENDING_AFFIRMATIONS', + Status = 'STATUS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + VenueId = 'VENUE_ID', +} + +export type ConfidentialTransactionsHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionsHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +/** Conditions for `ConfidentialTransaction` aggregates. */ +export type ConfidentialTransactionsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ConfidentialTransactionsHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionsHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionsHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionsHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +export type ConfidentialTransactionsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + pendingAffirmations?: InputMaybe; +}; + +/** Methods to use when ordering `ConfidentialTransaction`. */ +export enum ConfidentialTransactionsOrderBy { + AffirmationsAverageAccountIdAsc = 'AFFIRMATIONS_AVERAGE_ACCOUNT_ID_ASC', + AffirmationsAverageAccountIdDesc = 'AFFIRMATIONS_AVERAGE_ACCOUNT_ID_DESC', + AffirmationsAverageBlockRangeAsc = 'AFFIRMATIONS_AVERAGE_BLOCK_RANGE_ASC', + AffirmationsAverageBlockRangeDesc = 'AFFIRMATIONS_AVERAGE_BLOCK_RANGE_DESC', + AffirmationsAverageCreatedAtAsc = 'AFFIRMATIONS_AVERAGE_CREATED_AT_ASC', + AffirmationsAverageCreatedAtDesc = 'AFFIRMATIONS_AVERAGE_CREATED_AT_DESC', + AffirmationsAverageCreatedBlockIdAsc = 'AFFIRMATIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + AffirmationsAverageCreatedBlockIdDesc = 'AFFIRMATIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + AffirmationsAverageEventIdxAsc = 'AFFIRMATIONS_AVERAGE_EVENT_IDX_ASC', + AffirmationsAverageEventIdxDesc = 'AFFIRMATIONS_AVERAGE_EVENT_IDX_DESC', + AffirmationsAverageIdentityIdAsc = 'AFFIRMATIONS_AVERAGE_IDENTITY_ID_ASC', + AffirmationsAverageIdentityIdDesc = 'AFFIRMATIONS_AVERAGE_IDENTITY_ID_DESC', + AffirmationsAverageIdAsc = 'AFFIRMATIONS_AVERAGE_ID_ASC', + AffirmationsAverageIdDesc = 'AFFIRMATIONS_AVERAGE_ID_DESC', + AffirmationsAverageLegIdAsc = 'AFFIRMATIONS_AVERAGE_LEG_ID_ASC', + AffirmationsAverageLegIdDesc = 'AFFIRMATIONS_AVERAGE_LEG_ID_DESC', + AffirmationsAveragePartyAsc = 'AFFIRMATIONS_AVERAGE_PARTY_ASC', + AffirmationsAveragePartyDesc = 'AFFIRMATIONS_AVERAGE_PARTY_DESC', + AffirmationsAverageProofsAsc = 'AFFIRMATIONS_AVERAGE_PROOFS_ASC', + AffirmationsAverageProofsDesc = 'AFFIRMATIONS_AVERAGE_PROOFS_DESC', + AffirmationsAverageStatusAsc = 'AFFIRMATIONS_AVERAGE_STATUS_ASC', + AffirmationsAverageStatusDesc = 'AFFIRMATIONS_AVERAGE_STATUS_DESC', + AffirmationsAverageTransactionIdAsc = 'AFFIRMATIONS_AVERAGE_TRANSACTION_ID_ASC', + AffirmationsAverageTransactionIdDesc = 'AFFIRMATIONS_AVERAGE_TRANSACTION_ID_DESC', + AffirmationsAverageUpdatedBlockIdAsc = 'AFFIRMATIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + AffirmationsAverageUpdatedBlockIdDesc = 'AFFIRMATIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + AffirmationsCountAsc = 'AFFIRMATIONS_COUNT_ASC', + AffirmationsCountDesc = 'AFFIRMATIONS_COUNT_DESC', + AffirmationsDistinctCountAccountIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_ACCOUNT_ID_ASC', + AffirmationsDistinctCountAccountIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_ACCOUNT_ID_DESC', + AffirmationsDistinctCountBlockRangeAsc = 'AFFIRMATIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AffirmationsDistinctCountBlockRangeDesc = 'AFFIRMATIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AffirmationsDistinctCountCreatedAtAsc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_AT_ASC', + AffirmationsDistinctCountCreatedAtDesc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_AT_DESC', + AffirmationsDistinctCountCreatedBlockIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AffirmationsDistinctCountCreatedBlockIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AffirmationsDistinctCountEventIdxAsc = 'AFFIRMATIONS_DISTINCT_COUNT_EVENT_IDX_ASC', + AffirmationsDistinctCountEventIdxDesc = 'AFFIRMATIONS_DISTINCT_COUNT_EVENT_IDX_DESC', + AffirmationsDistinctCountIdentityIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_IDENTITY_ID_ASC', + AffirmationsDistinctCountIdentityIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_IDENTITY_ID_DESC', + AffirmationsDistinctCountIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_ID_ASC', + AffirmationsDistinctCountIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_ID_DESC', + AffirmationsDistinctCountLegIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_LEG_ID_ASC', + AffirmationsDistinctCountLegIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_LEG_ID_DESC', + AffirmationsDistinctCountPartyAsc = 'AFFIRMATIONS_DISTINCT_COUNT_PARTY_ASC', + AffirmationsDistinctCountPartyDesc = 'AFFIRMATIONS_DISTINCT_COUNT_PARTY_DESC', + AffirmationsDistinctCountProofsAsc = 'AFFIRMATIONS_DISTINCT_COUNT_PROOFS_ASC', + AffirmationsDistinctCountProofsDesc = 'AFFIRMATIONS_DISTINCT_COUNT_PROOFS_DESC', + AffirmationsDistinctCountStatusAsc = 'AFFIRMATIONS_DISTINCT_COUNT_STATUS_ASC', + AffirmationsDistinctCountStatusDesc = 'AFFIRMATIONS_DISTINCT_COUNT_STATUS_DESC', + AffirmationsDistinctCountTransactionIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_TRANSACTION_ID_ASC', + AffirmationsDistinctCountTransactionIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_TRANSACTION_ID_DESC', + AffirmationsDistinctCountUpdatedBlockIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AffirmationsDistinctCountUpdatedBlockIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AffirmationsMaxAccountIdAsc = 'AFFIRMATIONS_MAX_ACCOUNT_ID_ASC', + AffirmationsMaxAccountIdDesc = 'AFFIRMATIONS_MAX_ACCOUNT_ID_DESC', + AffirmationsMaxBlockRangeAsc = 'AFFIRMATIONS_MAX_BLOCK_RANGE_ASC', + AffirmationsMaxBlockRangeDesc = 'AFFIRMATIONS_MAX_BLOCK_RANGE_DESC', + AffirmationsMaxCreatedAtAsc = 'AFFIRMATIONS_MAX_CREATED_AT_ASC', + AffirmationsMaxCreatedAtDesc = 'AFFIRMATIONS_MAX_CREATED_AT_DESC', + AffirmationsMaxCreatedBlockIdAsc = 'AFFIRMATIONS_MAX_CREATED_BLOCK_ID_ASC', + AffirmationsMaxCreatedBlockIdDesc = 'AFFIRMATIONS_MAX_CREATED_BLOCK_ID_DESC', + AffirmationsMaxEventIdxAsc = 'AFFIRMATIONS_MAX_EVENT_IDX_ASC', + AffirmationsMaxEventIdxDesc = 'AFFIRMATIONS_MAX_EVENT_IDX_DESC', + AffirmationsMaxIdentityIdAsc = 'AFFIRMATIONS_MAX_IDENTITY_ID_ASC', + AffirmationsMaxIdentityIdDesc = 'AFFIRMATIONS_MAX_IDENTITY_ID_DESC', + AffirmationsMaxIdAsc = 'AFFIRMATIONS_MAX_ID_ASC', + AffirmationsMaxIdDesc = 'AFFIRMATIONS_MAX_ID_DESC', + AffirmationsMaxLegIdAsc = 'AFFIRMATIONS_MAX_LEG_ID_ASC', + AffirmationsMaxLegIdDesc = 'AFFIRMATIONS_MAX_LEG_ID_DESC', + AffirmationsMaxPartyAsc = 'AFFIRMATIONS_MAX_PARTY_ASC', + AffirmationsMaxPartyDesc = 'AFFIRMATIONS_MAX_PARTY_DESC', + AffirmationsMaxProofsAsc = 'AFFIRMATIONS_MAX_PROOFS_ASC', + AffirmationsMaxProofsDesc = 'AFFIRMATIONS_MAX_PROOFS_DESC', + AffirmationsMaxStatusAsc = 'AFFIRMATIONS_MAX_STATUS_ASC', + AffirmationsMaxStatusDesc = 'AFFIRMATIONS_MAX_STATUS_DESC', + AffirmationsMaxTransactionIdAsc = 'AFFIRMATIONS_MAX_TRANSACTION_ID_ASC', + AffirmationsMaxTransactionIdDesc = 'AFFIRMATIONS_MAX_TRANSACTION_ID_DESC', + AffirmationsMaxUpdatedBlockIdAsc = 'AFFIRMATIONS_MAX_UPDATED_BLOCK_ID_ASC', + AffirmationsMaxUpdatedBlockIdDesc = 'AFFIRMATIONS_MAX_UPDATED_BLOCK_ID_DESC', + AffirmationsMinAccountIdAsc = 'AFFIRMATIONS_MIN_ACCOUNT_ID_ASC', + AffirmationsMinAccountIdDesc = 'AFFIRMATIONS_MIN_ACCOUNT_ID_DESC', + AffirmationsMinBlockRangeAsc = 'AFFIRMATIONS_MIN_BLOCK_RANGE_ASC', + AffirmationsMinBlockRangeDesc = 'AFFIRMATIONS_MIN_BLOCK_RANGE_DESC', + AffirmationsMinCreatedAtAsc = 'AFFIRMATIONS_MIN_CREATED_AT_ASC', + AffirmationsMinCreatedAtDesc = 'AFFIRMATIONS_MIN_CREATED_AT_DESC', + AffirmationsMinCreatedBlockIdAsc = 'AFFIRMATIONS_MIN_CREATED_BLOCK_ID_ASC', + AffirmationsMinCreatedBlockIdDesc = 'AFFIRMATIONS_MIN_CREATED_BLOCK_ID_DESC', + AffirmationsMinEventIdxAsc = 'AFFIRMATIONS_MIN_EVENT_IDX_ASC', + AffirmationsMinEventIdxDesc = 'AFFIRMATIONS_MIN_EVENT_IDX_DESC', + AffirmationsMinIdentityIdAsc = 'AFFIRMATIONS_MIN_IDENTITY_ID_ASC', + AffirmationsMinIdentityIdDesc = 'AFFIRMATIONS_MIN_IDENTITY_ID_DESC', + AffirmationsMinIdAsc = 'AFFIRMATIONS_MIN_ID_ASC', + AffirmationsMinIdDesc = 'AFFIRMATIONS_MIN_ID_DESC', + AffirmationsMinLegIdAsc = 'AFFIRMATIONS_MIN_LEG_ID_ASC', + AffirmationsMinLegIdDesc = 'AFFIRMATIONS_MIN_LEG_ID_DESC', + AffirmationsMinPartyAsc = 'AFFIRMATIONS_MIN_PARTY_ASC', + AffirmationsMinPartyDesc = 'AFFIRMATIONS_MIN_PARTY_DESC', + AffirmationsMinProofsAsc = 'AFFIRMATIONS_MIN_PROOFS_ASC', + AffirmationsMinProofsDesc = 'AFFIRMATIONS_MIN_PROOFS_DESC', + AffirmationsMinStatusAsc = 'AFFIRMATIONS_MIN_STATUS_ASC', + AffirmationsMinStatusDesc = 'AFFIRMATIONS_MIN_STATUS_DESC', + AffirmationsMinTransactionIdAsc = 'AFFIRMATIONS_MIN_TRANSACTION_ID_ASC', + AffirmationsMinTransactionIdDesc = 'AFFIRMATIONS_MIN_TRANSACTION_ID_DESC', + AffirmationsMinUpdatedBlockIdAsc = 'AFFIRMATIONS_MIN_UPDATED_BLOCK_ID_ASC', + AffirmationsMinUpdatedBlockIdDesc = 'AFFIRMATIONS_MIN_UPDATED_BLOCK_ID_DESC', + AffirmationsStddevPopulationAccountIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_ACCOUNT_ID_ASC', + AffirmationsStddevPopulationAccountIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_ACCOUNT_ID_DESC', + AffirmationsStddevPopulationBlockRangeAsc = 'AFFIRMATIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AffirmationsStddevPopulationBlockRangeDesc = 'AFFIRMATIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AffirmationsStddevPopulationCreatedAtAsc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_AT_ASC', + AffirmationsStddevPopulationCreatedAtDesc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_AT_DESC', + AffirmationsStddevPopulationCreatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AffirmationsStddevPopulationCreatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AffirmationsStddevPopulationEventIdxAsc = 'AFFIRMATIONS_STDDEV_POPULATION_EVENT_IDX_ASC', + AffirmationsStddevPopulationEventIdxDesc = 'AFFIRMATIONS_STDDEV_POPULATION_EVENT_IDX_DESC', + AffirmationsStddevPopulationIdentityIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_IDENTITY_ID_ASC', + AffirmationsStddevPopulationIdentityIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_IDENTITY_ID_DESC', + AffirmationsStddevPopulationIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_ID_ASC', + AffirmationsStddevPopulationIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_ID_DESC', + AffirmationsStddevPopulationLegIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_LEG_ID_ASC', + AffirmationsStddevPopulationLegIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_LEG_ID_DESC', + AffirmationsStddevPopulationPartyAsc = 'AFFIRMATIONS_STDDEV_POPULATION_PARTY_ASC', + AffirmationsStddevPopulationPartyDesc = 'AFFIRMATIONS_STDDEV_POPULATION_PARTY_DESC', + AffirmationsStddevPopulationProofsAsc = 'AFFIRMATIONS_STDDEV_POPULATION_PROOFS_ASC', + AffirmationsStddevPopulationProofsDesc = 'AFFIRMATIONS_STDDEV_POPULATION_PROOFS_DESC', + AffirmationsStddevPopulationStatusAsc = 'AFFIRMATIONS_STDDEV_POPULATION_STATUS_ASC', + AffirmationsStddevPopulationStatusDesc = 'AFFIRMATIONS_STDDEV_POPULATION_STATUS_DESC', + AffirmationsStddevPopulationTransactionIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_TRANSACTION_ID_ASC', + AffirmationsStddevPopulationTransactionIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_TRANSACTION_ID_DESC', + AffirmationsStddevPopulationUpdatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AffirmationsStddevPopulationUpdatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AffirmationsStddevSampleAccountIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_ACCOUNT_ID_ASC', + AffirmationsStddevSampleAccountIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_ACCOUNT_ID_DESC', + AffirmationsStddevSampleBlockRangeAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AffirmationsStddevSampleBlockRangeDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AffirmationsStddevSampleCreatedAtAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + AffirmationsStddevSampleCreatedAtDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + AffirmationsStddevSampleCreatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AffirmationsStddevSampleCreatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AffirmationsStddevSampleEventIdxAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_EVENT_IDX_ASC', + AffirmationsStddevSampleEventIdxDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_EVENT_IDX_DESC', + AffirmationsStddevSampleIdentityIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AffirmationsStddevSampleIdentityIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AffirmationsStddevSampleIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_ID_ASC', + AffirmationsStddevSampleIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_ID_DESC', + AffirmationsStddevSampleLegIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_LEG_ID_ASC', + AffirmationsStddevSampleLegIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_LEG_ID_DESC', + AffirmationsStddevSamplePartyAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_PARTY_ASC', + AffirmationsStddevSamplePartyDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_PARTY_DESC', + AffirmationsStddevSampleProofsAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_PROOFS_ASC', + AffirmationsStddevSampleProofsDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_PROOFS_DESC', + AffirmationsStddevSampleStatusAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_STATUS_ASC', + AffirmationsStddevSampleStatusDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_STATUS_DESC', + AffirmationsStddevSampleTransactionIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + AffirmationsStddevSampleTransactionIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + AffirmationsStddevSampleUpdatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AffirmationsStddevSampleUpdatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AffirmationsSumAccountIdAsc = 'AFFIRMATIONS_SUM_ACCOUNT_ID_ASC', + AffirmationsSumAccountIdDesc = 'AFFIRMATIONS_SUM_ACCOUNT_ID_DESC', + AffirmationsSumBlockRangeAsc = 'AFFIRMATIONS_SUM_BLOCK_RANGE_ASC', + AffirmationsSumBlockRangeDesc = 'AFFIRMATIONS_SUM_BLOCK_RANGE_DESC', + AffirmationsSumCreatedAtAsc = 'AFFIRMATIONS_SUM_CREATED_AT_ASC', + AffirmationsSumCreatedAtDesc = 'AFFIRMATIONS_SUM_CREATED_AT_DESC', + AffirmationsSumCreatedBlockIdAsc = 'AFFIRMATIONS_SUM_CREATED_BLOCK_ID_ASC', + AffirmationsSumCreatedBlockIdDesc = 'AFFIRMATIONS_SUM_CREATED_BLOCK_ID_DESC', + AffirmationsSumEventIdxAsc = 'AFFIRMATIONS_SUM_EVENT_IDX_ASC', + AffirmationsSumEventIdxDesc = 'AFFIRMATIONS_SUM_EVENT_IDX_DESC', + AffirmationsSumIdentityIdAsc = 'AFFIRMATIONS_SUM_IDENTITY_ID_ASC', + AffirmationsSumIdentityIdDesc = 'AFFIRMATIONS_SUM_IDENTITY_ID_DESC', + AffirmationsSumIdAsc = 'AFFIRMATIONS_SUM_ID_ASC', + AffirmationsSumIdDesc = 'AFFIRMATIONS_SUM_ID_DESC', + AffirmationsSumLegIdAsc = 'AFFIRMATIONS_SUM_LEG_ID_ASC', + AffirmationsSumLegIdDesc = 'AFFIRMATIONS_SUM_LEG_ID_DESC', + AffirmationsSumPartyAsc = 'AFFIRMATIONS_SUM_PARTY_ASC', + AffirmationsSumPartyDesc = 'AFFIRMATIONS_SUM_PARTY_DESC', + AffirmationsSumProofsAsc = 'AFFIRMATIONS_SUM_PROOFS_ASC', + AffirmationsSumProofsDesc = 'AFFIRMATIONS_SUM_PROOFS_DESC', + AffirmationsSumStatusAsc = 'AFFIRMATIONS_SUM_STATUS_ASC', + AffirmationsSumStatusDesc = 'AFFIRMATIONS_SUM_STATUS_DESC', + AffirmationsSumTransactionIdAsc = 'AFFIRMATIONS_SUM_TRANSACTION_ID_ASC', + AffirmationsSumTransactionIdDesc = 'AFFIRMATIONS_SUM_TRANSACTION_ID_DESC', + AffirmationsSumUpdatedBlockIdAsc = 'AFFIRMATIONS_SUM_UPDATED_BLOCK_ID_ASC', + AffirmationsSumUpdatedBlockIdDesc = 'AFFIRMATIONS_SUM_UPDATED_BLOCK_ID_DESC', + AffirmationsVariancePopulationAccountIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_ACCOUNT_ID_ASC', + AffirmationsVariancePopulationAccountIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_ACCOUNT_ID_DESC', + AffirmationsVariancePopulationBlockRangeAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AffirmationsVariancePopulationBlockRangeDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AffirmationsVariancePopulationCreatedAtAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + AffirmationsVariancePopulationCreatedAtDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + AffirmationsVariancePopulationCreatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AffirmationsVariancePopulationCreatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AffirmationsVariancePopulationEventIdxAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_EVENT_IDX_ASC', + AffirmationsVariancePopulationEventIdxDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_EVENT_IDX_DESC', + AffirmationsVariancePopulationIdentityIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AffirmationsVariancePopulationIdentityIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AffirmationsVariancePopulationIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_ID_ASC', + AffirmationsVariancePopulationIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_ID_DESC', + AffirmationsVariancePopulationLegIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_LEG_ID_ASC', + AffirmationsVariancePopulationLegIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_LEG_ID_DESC', + AffirmationsVariancePopulationPartyAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_PARTY_ASC', + AffirmationsVariancePopulationPartyDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_PARTY_DESC', + AffirmationsVariancePopulationProofsAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_PROOFS_ASC', + AffirmationsVariancePopulationProofsDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_PROOFS_DESC', + AffirmationsVariancePopulationStatusAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_STATUS_ASC', + AffirmationsVariancePopulationStatusDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_STATUS_DESC', + AffirmationsVariancePopulationTransactionIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + AffirmationsVariancePopulationTransactionIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + AffirmationsVariancePopulationUpdatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AffirmationsVariancePopulationUpdatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AffirmationsVarianceSampleAccountIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', + AffirmationsVarianceSampleAccountIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', + AffirmationsVarianceSampleBlockRangeAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AffirmationsVarianceSampleBlockRangeDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AffirmationsVarianceSampleCreatedAtAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + AffirmationsVarianceSampleCreatedAtDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + AffirmationsVarianceSampleCreatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AffirmationsVarianceSampleCreatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AffirmationsVarianceSampleEventIdxAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + AffirmationsVarianceSampleEventIdxDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + AffirmationsVarianceSampleIdentityIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AffirmationsVarianceSampleIdentityIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AffirmationsVarianceSampleIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_ID_ASC', + AffirmationsVarianceSampleIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_ID_DESC', + AffirmationsVarianceSampleLegIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_LEG_ID_ASC', + AffirmationsVarianceSampleLegIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_LEG_ID_DESC', + AffirmationsVarianceSamplePartyAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PARTY_ASC', + AffirmationsVarianceSamplePartyDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PARTY_DESC', + AffirmationsVarianceSampleProofsAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PROOFS_ASC', + AffirmationsVarianceSampleProofsDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PROOFS_DESC', + AffirmationsVarianceSampleStatusAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_STATUS_ASC', + AffirmationsVarianceSampleStatusDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_STATUS_DESC', + AffirmationsVarianceSampleTransactionIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + AffirmationsVarianceSampleTransactionIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + AffirmationsVarianceSampleUpdatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AffirmationsVarianceSampleUpdatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_AMOUNT_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_AMOUNT_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_DATETIME_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_DATETIME_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_FROM_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_FROM_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_MEMO_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_MEMO_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_TO_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_TO_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdCountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_COUNT_ASC', + ConfidentialAssetHistoriesByTransactionIdCountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_COUNT_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_AMOUNT_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_AMOUNT_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_DATETIME_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_DATETIME_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_EVENT_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_EVENT_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_FROM_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_FROM_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_MEMO_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_MEMO_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_TO_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_TO_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_AMOUNT_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_AMOUNT_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_DATETIME_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_DATETIME_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_EVENT_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_EVENT_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_FROM_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_FROM_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_MEMO_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_MEMO_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_TO_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_TO_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMinAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_AMOUNT_ASC', + ConfidentialAssetHistoriesByTransactionIdMinAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_AMOUNT_DESC', + ConfidentialAssetHistoriesByTransactionIdMinAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMinAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByTransactionIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByTransactionIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetHistoriesByTransactionIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetHistoriesByTransactionIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMinDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_DATETIME_ASC', + ConfidentialAssetHistoriesByTransactionIdMinDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_DATETIME_DESC', + ConfidentialAssetHistoriesByTransactionIdMinEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdMinEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdMinEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_EVENT_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMinEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_EVENT_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMinExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdMinExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdMinFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_FROM_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMinFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_FROM_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMinIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMinIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMinMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_MEMO_ASC', + ConfidentialAssetHistoriesByTransactionIdMinMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_MEMO_DESC', + ConfidentialAssetHistoriesByTransactionIdMinToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_TO_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMinToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_TO_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMinTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMinTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdSumAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_AMOUNT_ASC', + ConfidentialAssetHistoriesByTransactionIdSumAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_AMOUNT_DESC', + ConfidentialAssetHistoriesByTransactionIdSumAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdSumAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByTransactionIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByTransactionIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetHistoriesByTransactionIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetHistoriesByTransactionIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdSumDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_DATETIME_ASC', + ConfidentialAssetHistoriesByTransactionIdSumDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_DATETIME_DESC', + ConfidentialAssetHistoriesByTransactionIdSumEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdSumEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdSumEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_EVENT_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdSumEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_EVENT_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdSumExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdSumExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdSumFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_FROM_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdSumFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_FROM_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdSumIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdSumIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdSumMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_MEMO_ASC', + ConfidentialAssetHistoriesByTransactionIdSumMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_MEMO_DESC', + ConfidentialAssetHistoriesByTransactionIdSumToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_TO_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdSumToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_TO_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdSumTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdSumTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_AMOUNT_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_AMOUNT_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_DATETIME_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_DATETIME_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_FROM_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_FROM_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_MEMO_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_MEMO_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_TO_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_TO_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleAmountAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleAmountDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleDatetimeAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_DATETIME_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleDatetimeDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_DATETIME_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleEventIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleEventIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleExtrinsicIdxAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleExtrinsicIdxDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleFromIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleFromIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleMemoAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_MEMO_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleMemoDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_MEMO_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleToIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_TO_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleToIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_TO_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetHistoriesByTransactionIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSET_HISTORIES_BY_TRANSACTION_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + EventIdAsc = 'EVENT_ID_ASC', + EventIdDesc = 'EVENT_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + LegsAverageAssetAuditorsAsc = 'LEGS_AVERAGE_ASSET_AUDITORS_ASC', + LegsAverageAssetAuditorsDesc = 'LEGS_AVERAGE_ASSET_AUDITORS_DESC', + LegsAverageBlockRangeAsc = 'LEGS_AVERAGE_BLOCK_RANGE_ASC', + LegsAverageBlockRangeDesc = 'LEGS_AVERAGE_BLOCK_RANGE_DESC', + LegsAverageCreatedAtAsc = 'LEGS_AVERAGE_CREATED_AT_ASC', + LegsAverageCreatedAtDesc = 'LEGS_AVERAGE_CREATED_AT_DESC', + LegsAverageCreatedBlockIdAsc = 'LEGS_AVERAGE_CREATED_BLOCK_ID_ASC', + LegsAverageCreatedBlockIdDesc = 'LEGS_AVERAGE_CREATED_BLOCK_ID_DESC', + LegsAverageIdAsc = 'LEGS_AVERAGE_ID_ASC', + LegsAverageIdDesc = 'LEGS_AVERAGE_ID_DESC', + LegsAverageMediatorsAsc = 'LEGS_AVERAGE_MEDIATORS_ASC', + LegsAverageMediatorsDesc = 'LEGS_AVERAGE_MEDIATORS_DESC', + LegsAverageReceiverIdAsc = 'LEGS_AVERAGE_RECEIVER_ID_ASC', + LegsAverageReceiverIdDesc = 'LEGS_AVERAGE_RECEIVER_ID_DESC', + LegsAverageSenderIdAsc = 'LEGS_AVERAGE_SENDER_ID_ASC', + LegsAverageSenderIdDesc = 'LEGS_AVERAGE_SENDER_ID_DESC', + LegsAverageTransactionIdAsc = 'LEGS_AVERAGE_TRANSACTION_ID_ASC', + LegsAverageTransactionIdDesc = 'LEGS_AVERAGE_TRANSACTION_ID_DESC', + LegsAverageUpdatedBlockIdAsc = 'LEGS_AVERAGE_UPDATED_BLOCK_ID_ASC', + LegsAverageUpdatedBlockIdDesc = 'LEGS_AVERAGE_UPDATED_BLOCK_ID_DESC', + LegsCountAsc = 'LEGS_COUNT_ASC', + LegsCountDesc = 'LEGS_COUNT_DESC', + LegsDistinctCountAssetAuditorsAsc = 'LEGS_DISTINCT_COUNT_ASSET_AUDITORS_ASC', + LegsDistinctCountAssetAuditorsDesc = 'LEGS_DISTINCT_COUNT_ASSET_AUDITORS_DESC', + LegsDistinctCountBlockRangeAsc = 'LEGS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + LegsDistinctCountBlockRangeDesc = 'LEGS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + LegsDistinctCountCreatedAtAsc = 'LEGS_DISTINCT_COUNT_CREATED_AT_ASC', + LegsDistinctCountCreatedAtDesc = 'LEGS_DISTINCT_COUNT_CREATED_AT_DESC', + LegsDistinctCountCreatedBlockIdAsc = 'LEGS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + LegsDistinctCountCreatedBlockIdDesc = 'LEGS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + LegsDistinctCountIdAsc = 'LEGS_DISTINCT_COUNT_ID_ASC', + LegsDistinctCountIdDesc = 'LEGS_DISTINCT_COUNT_ID_DESC', + LegsDistinctCountMediatorsAsc = 'LEGS_DISTINCT_COUNT_MEDIATORS_ASC', + LegsDistinctCountMediatorsDesc = 'LEGS_DISTINCT_COUNT_MEDIATORS_DESC', + LegsDistinctCountReceiverIdAsc = 'LEGS_DISTINCT_COUNT_RECEIVER_ID_ASC', + LegsDistinctCountReceiverIdDesc = 'LEGS_DISTINCT_COUNT_RECEIVER_ID_DESC', + LegsDistinctCountSenderIdAsc = 'LEGS_DISTINCT_COUNT_SENDER_ID_ASC', + LegsDistinctCountSenderIdDesc = 'LEGS_DISTINCT_COUNT_SENDER_ID_DESC', + LegsDistinctCountTransactionIdAsc = 'LEGS_DISTINCT_COUNT_TRANSACTION_ID_ASC', + LegsDistinctCountTransactionIdDesc = 'LEGS_DISTINCT_COUNT_TRANSACTION_ID_DESC', + LegsDistinctCountUpdatedBlockIdAsc = 'LEGS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + LegsDistinctCountUpdatedBlockIdDesc = 'LEGS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + LegsMaxAssetAuditorsAsc = 'LEGS_MAX_ASSET_AUDITORS_ASC', + LegsMaxAssetAuditorsDesc = 'LEGS_MAX_ASSET_AUDITORS_DESC', + LegsMaxBlockRangeAsc = 'LEGS_MAX_BLOCK_RANGE_ASC', + LegsMaxBlockRangeDesc = 'LEGS_MAX_BLOCK_RANGE_DESC', + LegsMaxCreatedAtAsc = 'LEGS_MAX_CREATED_AT_ASC', + LegsMaxCreatedAtDesc = 'LEGS_MAX_CREATED_AT_DESC', + LegsMaxCreatedBlockIdAsc = 'LEGS_MAX_CREATED_BLOCK_ID_ASC', + LegsMaxCreatedBlockIdDesc = 'LEGS_MAX_CREATED_BLOCK_ID_DESC', + LegsMaxIdAsc = 'LEGS_MAX_ID_ASC', + LegsMaxIdDesc = 'LEGS_MAX_ID_DESC', + LegsMaxMediatorsAsc = 'LEGS_MAX_MEDIATORS_ASC', + LegsMaxMediatorsDesc = 'LEGS_MAX_MEDIATORS_DESC', + LegsMaxReceiverIdAsc = 'LEGS_MAX_RECEIVER_ID_ASC', + LegsMaxReceiverIdDesc = 'LEGS_MAX_RECEIVER_ID_DESC', + LegsMaxSenderIdAsc = 'LEGS_MAX_SENDER_ID_ASC', + LegsMaxSenderIdDesc = 'LEGS_MAX_SENDER_ID_DESC', + LegsMaxTransactionIdAsc = 'LEGS_MAX_TRANSACTION_ID_ASC', + LegsMaxTransactionIdDesc = 'LEGS_MAX_TRANSACTION_ID_DESC', + LegsMaxUpdatedBlockIdAsc = 'LEGS_MAX_UPDATED_BLOCK_ID_ASC', + LegsMaxUpdatedBlockIdDesc = 'LEGS_MAX_UPDATED_BLOCK_ID_DESC', + LegsMinAssetAuditorsAsc = 'LEGS_MIN_ASSET_AUDITORS_ASC', + LegsMinAssetAuditorsDesc = 'LEGS_MIN_ASSET_AUDITORS_DESC', + LegsMinBlockRangeAsc = 'LEGS_MIN_BLOCK_RANGE_ASC', + LegsMinBlockRangeDesc = 'LEGS_MIN_BLOCK_RANGE_DESC', + LegsMinCreatedAtAsc = 'LEGS_MIN_CREATED_AT_ASC', + LegsMinCreatedAtDesc = 'LEGS_MIN_CREATED_AT_DESC', + LegsMinCreatedBlockIdAsc = 'LEGS_MIN_CREATED_BLOCK_ID_ASC', + LegsMinCreatedBlockIdDesc = 'LEGS_MIN_CREATED_BLOCK_ID_DESC', + LegsMinIdAsc = 'LEGS_MIN_ID_ASC', + LegsMinIdDesc = 'LEGS_MIN_ID_DESC', + LegsMinMediatorsAsc = 'LEGS_MIN_MEDIATORS_ASC', + LegsMinMediatorsDesc = 'LEGS_MIN_MEDIATORS_DESC', + LegsMinReceiverIdAsc = 'LEGS_MIN_RECEIVER_ID_ASC', + LegsMinReceiverIdDesc = 'LEGS_MIN_RECEIVER_ID_DESC', + LegsMinSenderIdAsc = 'LEGS_MIN_SENDER_ID_ASC', + LegsMinSenderIdDesc = 'LEGS_MIN_SENDER_ID_DESC', + LegsMinTransactionIdAsc = 'LEGS_MIN_TRANSACTION_ID_ASC', + LegsMinTransactionIdDesc = 'LEGS_MIN_TRANSACTION_ID_DESC', + LegsMinUpdatedBlockIdAsc = 'LEGS_MIN_UPDATED_BLOCK_ID_ASC', + LegsMinUpdatedBlockIdDesc = 'LEGS_MIN_UPDATED_BLOCK_ID_DESC', + LegsStddevPopulationAssetAuditorsAsc = 'LEGS_STDDEV_POPULATION_ASSET_AUDITORS_ASC', + LegsStddevPopulationAssetAuditorsDesc = 'LEGS_STDDEV_POPULATION_ASSET_AUDITORS_DESC', + LegsStddevPopulationBlockRangeAsc = 'LEGS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + LegsStddevPopulationBlockRangeDesc = 'LEGS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + LegsStddevPopulationCreatedAtAsc = 'LEGS_STDDEV_POPULATION_CREATED_AT_ASC', + LegsStddevPopulationCreatedAtDesc = 'LEGS_STDDEV_POPULATION_CREATED_AT_DESC', + LegsStddevPopulationCreatedBlockIdAsc = 'LEGS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + LegsStddevPopulationCreatedBlockIdDesc = 'LEGS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + LegsStddevPopulationIdAsc = 'LEGS_STDDEV_POPULATION_ID_ASC', + LegsStddevPopulationIdDesc = 'LEGS_STDDEV_POPULATION_ID_DESC', + LegsStddevPopulationMediatorsAsc = 'LEGS_STDDEV_POPULATION_MEDIATORS_ASC', + LegsStddevPopulationMediatorsDesc = 'LEGS_STDDEV_POPULATION_MEDIATORS_DESC', + LegsStddevPopulationReceiverIdAsc = 'LEGS_STDDEV_POPULATION_RECEIVER_ID_ASC', + LegsStddevPopulationReceiverIdDesc = 'LEGS_STDDEV_POPULATION_RECEIVER_ID_DESC', + LegsStddevPopulationSenderIdAsc = 'LEGS_STDDEV_POPULATION_SENDER_ID_ASC', + LegsStddevPopulationSenderIdDesc = 'LEGS_STDDEV_POPULATION_SENDER_ID_DESC', + LegsStddevPopulationTransactionIdAsc = 'LEGS_STDDEV_POPULATION_TRANSACTION_ID_ASC', + LegsStddevPopulationTransactionIdDesc = 'LEGS_STDDEV_POPULATION_TRANSACTION_ID_DESC', + LegsStddevPopulationUpdatedBlockIdAsc = 'LEGS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + LegsStddevPopulationUpdatedBlockIdDesc = 'LEGS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + LegsStddevSampleAssetAuditorsAsc = 'LEGS_STDDEV_SAMPLE_ASSET_AUDITORS_ASC', + LegsStddevSampleAssetAuditorsDesc = 'LEGS_STDDEV_SAMPLE_ASSET_AUDITORS_DESC', + LegsStddevSampleBlockRangeAsc = 'LEGS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + LegsStddevSampleBlockRangeDesc = 'LEGS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + LegsStddevSampleCreatedAtAsc = 'LEGS_STDDEV_SAMPLE_CREATED_AT_ASC', + LegsStddevSampleCreatedAtDesc = 'LEGS_STDDEV_SAMPLE_CREATED_AT_DESC', + LegsStddevSampleCreatedBlockIdAsc = 'LEGS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + LegsStddevSampleCreatedBlockIdDesc = 'LEGS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + LegsStddevSampleIdAsc = 'LEGS_STDDEV_SAMPLE_ID_ASC', + LegsStddevSampleIdDesc = 'LEGS_STDDEV_SAMPLE_ID_DESC', + LegsStddevSampleMediatorsAsc = 'LEGS_STDDEV_SAMPLE_MEDIATORS_ASC', + LegsStddevSampleMediatorsDesc = 'LEGS_STDDEV_SAMPLE_MEDIATORS_DESC', + LegsStddevSampleReceiverIdAsc = 'LEGS_STDDEV_SAMPLE_RECEIVER_ID_ASC', + LegsStddevSampleReceiverIdDesc = 'LEGS_STDDEV_SAMPLE_RECEIVER_ID_DESC', + LegsStddevSampleSenderIdAsc = 'LEGS_STDDEV_SAMPLE_SENDER_ID_ASC', + LegsStddevSampleSenderIdDesc = 'LEGS_STDDEV_SAMPLE_SENDER_ID_DESC', + LegsStddevSampleTransactionIdAsc = 'LEGS_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + LegsStddevSampleTransactionIdDesc = 'LEGS_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + LegsStddevSampleUpdatedBlockIdAsc = 'LEGS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + LegsStddevSampleUpdatedBlockIdDesc = 'LEGS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + LegsSumAssetAuditorsAsc = 'LEGS_SUM_ASSET_AUDITORS_ASC', + LegsSumAssetAuditorsDesc = 'LEGS_SUM_ASSET_AUDITORS_DESC', + LegsSumBlockRangeAsc = 'LEGS_SUM_BLOCK_RANGE_ASC', + LegsSumBlockRangeDesc = 'LEGS_SUM_BLOCK_RANGE_DESC', + LegsSumCreatedAtAsc = 'LEGS_SUM_CREATED_AT_ASC', + LegsSumCreatedAtDesc = 'LEGS_SUM_CREATED_AT_DESC', + LegsSumCreatedBlockIdAsc = 'LEGS_SUM_CREATED_BLOCK_ID_ASC', + LegsSumCreatedBlockIdDesc = 'LEGS_SUM_CREATED_BLOCK_ID_DESC', + LegsSumIdAsc = 'LEGS_SUM_ID_ASC', + LegsSumIdDesc = 'LEGS_SUM_ID_DESC', + LegsSumMediatorsAsc = 'LEGS_SUM_MEDIATORS_ASC', + LegsSumMediatorsDesc = 'LEGS_SUM_MEDIATORS_DESC', + LegsSumReceiverIdAsc = 'LEGS_SUM_RECEIVER_ID_ASC', + LegsSumReceiverIdDesc = 'LEGS_SUM_RECEIVER_ID_DESC', + LegsSumSenderIdAsc = 'LEGS_SUM_SENDER_ID_ASC', + LegsSumSenderIdDesc = 'LEGS_SUM_SENDER_ID_DESC', + LegsSumTransactionIdAsc = 'LEGS_SUM_TRANSACTION_ID_ASC', + LegsSumTransactionIdDesc = 'LEGS_SUM_TRANSACTION_ID_DESC', + LegsSumUpdatedBlockIdAsc = 'LEGS_SUM_UPDATED_BLOCK_ID_ASC', + LegsSumUpdatedBlockIdDesc = 'LEGS_SUM_UPDATED_BLOCK_ID_DESC', + LegsVariancePopulationAssetAuditorsAsc = 'LEGS_VARIANCE_POPULATION_ASSET_AUDITORS_ASC', + LegsVariancePopulationAssetAuditorsDesc = 'LEGS_VARIANCE_POPULATION_ASSET_AUDITORS_DESC', + LegsVariancePopulationBlockRangeAsc = 'LEGS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + LegsVariancePopulationBlockRangeDesc = 'LEGS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + LegsVariancePopulationCreatedAtAsc = 'LEGS_VARIANCE_POPULATION_CREATED_AT_ASC', + LegsVariancePopulationCreatedAtDesc = 'LEGS_VARIANCE_POPULATION_CREATED_AT_DESC', + LegsVariancePopulationCreatedBlockIdAsc = 'LEGS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + LegsVariancePopulationCreatedBlockIdDesc = 'LEGS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + LegsVariancePopulationIdAsc = 'LEGS_VARIANCE_POPULATION_ID_ASC', + LegsVariancePopulationIdDesc = 'LEGS_VARIANCE_POPULATION_ID_DESC', + LegsVariancePopulationMediatorsAsc = 'LEGS_VARIANCE_POPULATION_MEDIATORS_ASC', + LegsVariancePopulationMediatorsDesc = 'LEGS_VARIANCE_POPULATION_MEDIATORS_DESC', + LegsVariancePopulationReceiverIdAsc = 'LEGS_VARIANCE_POPULATION_RECEIVER_ID_ASC', + LegsVariancePopulationReceiverIdDesc = 'LEGS_VARIANCE_POPULATION_RECEIVER_ID_DESC', + LegsVariancePopulationSenderIdAsc = 'LEGS_VARIANCE_POPULATION_SENDER_ID_ASC', + LegsVariancePopulationSenderIdDesc = 'LEGS_VARIANCE_POPULATION_SENDER_ID_DESC', + LegsVariancePopulationTransactionIdAsc = 'LEGS_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + LegsVariancePopulationTransactionIdDesc = 'LEGS_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + LegsVariancePopulationUpdatedBlockIdAsc = 'LEGS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + LegsVariancePopulationUpdatedBlockIdDesc = 'LEGS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + LegsVarianceSampleAssetAuditorsAsc = 'LEGS_VARIANCE_SAMPLE_ASSET_AUDITORS_ASC', + LegsVarianceSampleAssetAuditorsDesc = 'LEGS_VARIANCE_SAMPLE_ASSET_AUDITORS_DESC', + LegsVarianceSampleBlockRangeAsc = 'LEGS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + LegsVarianceSampleBlockRangeDesc = 'LEGS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + LegsVarianceSampleCreatedAtAsc = 'LEGS_VARIANCE_SAMPLE_CREATED_AT_ASC', + LegsVarianceSampleCreatedAtDesc = 'LEGS_VARIANCE_SAMPLE_CREATED_AT_DESC', + LegsVarianceSampleCreatedBlockIdAsc = 'LEGS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + LegsVarianceSampleCreatedBlockIdDesc = 'LEGS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + LegsVarianceSampleIdAsc = 'LEGS_VARIANCE_SAMPLE_ID_ASC', + LegsVarianceSampleIdDesc = 'LEGS_VARIANCE_SAMPLE_ID_DESC', + LegsVarianceSampleMediatorsAsc = 'LEGS_VARIANCE_SAMPLE_MEDIATORS_ASC', + LegsVarianceSampleMediatorsDesc = 'LEGS_VARIANCE_SAMPLE_MEDIATORS_DESC', + LegsVarianceSampleReceiverIdAsc = 'LEGS_VARIANCE_SAMPLE_RECEIVER_ID_ASC', + LegsVarianceSampleReceiverIdDesc = 'LEGS_VARIANCE_SAMPLE_RECEIVER_ID_DESC', + LegsVarianceSampleSenderIdAsc = 'LEGS_VARIANCE_SAMPLE_SENDER_ID_ASC', + LegsVarianceSampleSenderIdDesc = 'LEGS_VARIANCE_SAMPLE_SENDER_ID_DESC', + LegsVarianceSampleTransactionIdAsc = 'LEGS_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + LegsVarianceSampleTransactionIdDesc = 'LEGS_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + LegsVarianceSampleUpdatedBlockIdAsc = 'LEGS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + LegsVarianceSampleUpdatedBlockIdDesc = 'LEGS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MemoAsc = 'MEMO_ASC', + MemoDesc = 'MEMO_DESC', + Natural = 'NATURAL', + PendingAffirmationsAsc = 'PENDING_AFFIRMATIONS_ASC', + PendingAffirmationsDesc = 'PENDING_AFFIRMATIONS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + StatusAsc = 'STATUS_ASC', + StatusDesc = 'STATUS_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + VenueIdAsc = 'VENUE_ID_ASC', + VenueIdDesc = 'VENUE_ID_DESC', +} + +export type ConfidentialVenue = Node & { + __typename?: 'ConfidentialVenue'; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionVenueIdAndCreatedBlockId: ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionVenueIdAndUpdatedBlockId: ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByVenueId: ConfidentialTransactionsConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ConfidentialVenue`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `ConfidentialVenue`. */ + creator?: Maybe; + creatorId: Scalars['String']['output']; + eventIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Block` that is related to this `ConfidentialVenue`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + venueId: Scalars['Int']['output']; +}; + +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialVenueConfidentialTransactionsByVenueIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ConfidentialVenueAggregates = { + __typename?: 'ConfidentialVenueAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `ConfidentialVenue` object types. */ +export type ConfidentialVenueAggregatesFilter = { + /** Mean average aggregate over matching `ConfidentialVenue` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `ConfidentialVenue` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ConfidentialVenue` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `ConfidentialVenue` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `ConfidentialVenue` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `ConfidentialVenue` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `ConfidentialVenue` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `ConfidentialVenue` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `ConfidentialVenue` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `ConfidentialVenue` objects. */ + varianceSample?: InputMaybe; +}; + +export type ConfidentialVenueAverageAggregateFilter = { + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenueAverageAggregates = { + __typename?: 'ConfidentialVenueAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of venueId across the matching connection */ + venueId?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByCreatedBlockId: ConfidentialTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransaction`. */ +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByUpdatedBlockId: ConfidentialTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransaction`. */ +export type ConfidentialVenueBlocksByConfidentialTransactionVenueIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ConfidentialVenueDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + creatorId?: InputMaybe; + eventIdx?: InputMaybe; + id?: InputMaybe; + updatedBlockId?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenueDistinctCountAggregates = { + __typename?: 'ConfidentialVenueDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of creatorId across the matching connection */ + creatorId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; + /** Distinct count of venueId across the matching connection */ + venueId?: Maybe; +}; + +/** A filter to be used against `ConfidentialVenue` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialVenueFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `confidentialTransactionsByVenueId` relation. */ + confidentialTransactionsByVenueId?: InputMaybe; + /** Some related `confidentialTransactionsByVenueId` exist. */ + confidentialTransactionsByVenueIdExist?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `creator` relation. */ + creator?: InputMaybe; + /** Filter by the object’s `creatorId` field. */ + creatorId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `venueId` field. */ + venueId?: InputMaybe; +}; + +export type ConfidentialVenueMaxAggregateFilter = { + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenueMaxAggregates = { + __typename?: 'ConfidentialVenueMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of venueId across the matching connection */ + venueId?: Maybe; +}; + +export type ConfidentialVenueMinAggregateFilter = { + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenueMinAggregates = { + __typename?: 'ConfidentialVenueMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of venueId across the matching connection */ + venueId?: Maybe; +}; + +export type ConfidentialVenueStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenueStddevPopulationAggregates = { + __typename?: 'ConfidentialVenueStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of venueId across the matching connection */ + venueId?: Maybe; +}; + +export type ConfidentialVenueStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenueStddevSampleAggregates = { + __typename?: 'ConfidentialVenueStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of venueId across the matching connection */ + venueId?: Maybe; +}; + +export type ConfidentialVenueSumAggregateFilter = { + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenueSumAggregates = { + __typename?: 'ConfidentialVenueSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of venueId across the matching connection */ + venueId: Scalars['BigInt']['output']; +}; + +/** A filter to be used against many `ConfidentialTransaction` object types. All fields are combined with a logical ‘and.’ */ +export type ConfidentialVenueToManyConfidentialTransactionFilter = { + /** Aggregates across related `ConfidentialTransaction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type ConfidentialVenueVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenueVariancePopulationAggregates = { + __typename?: 'ConfidentialVenueVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of venueId across the matching connection */ + venueId?: Maybe; +}; + +export type ConfidentialVenueVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenueVarianceSampleAggregates = { + __typename?: 'ConfidentialVenueVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of venueId across the matching connection */ + venueId?: Maybe; +}; + +/** A connection to a list of `ConfidentialVenue` values. */ +export type ConfidentialVenuesConnection = { + __typename?: 'ConfidentialVenuesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialVenue` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialVenue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialVenue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ConfidentialVenue` values. */ +export type ConfidentialVenuesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ConfidentialVenue` edge in the connection. */ +export type ConfidentialVenuesEdge = { + __typename?: 'ConfidentialVenuesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialVenue` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ConfidentialVenue` for usage during aggregation. */ +export enum ConfidentialVenuesGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorId = 'CREATOR_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + VenueId = 'VENUE_ID', +} + +export type ConfidentialVenuesHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenuesHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +/** Conditions for `ConfidentialVenue` aggregates. */ +export type ConfidentialVenuesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ConfidentialVenuesHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenuesHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenuesHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenuesHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenuesHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenuesHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +export type ConfidentialVenuesHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + venueId?: InputMaybe; +}; + +/** Methods to use when ordering `ConfidentialVenue`. */ +export enum ConfidentialVenuesOrderBy { + ConfidentialTransactionsByVenueIdAverageBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialTransactionsByVenueIdAverageBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialTransactionsByVenueIdAverageCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialTransactionsByVenueIdAverageCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialTransactionsByVenueIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdAverageEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialTransactionsByVenueIdAverageEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialTransactionsByVenueIdAverageEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_EVENT_ID_ASC', + ConfidentialTransactionsByVenueIdAverageEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_EVENT_ID_DESC', + ConfidentialTransactionsByVenueIdAverageIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_ID_ASC', + ConfidentialTransactionsByVenueIdAverageIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_ID_DESC', + ConfidentialTransactionsByVenueIdAverageMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_MEMO_ASC', + ConfidentialTransactionsByVenueIdAverageMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_MEMO_DESC', + ConfidentialTransactionsByVenueIdAveragePendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByVenueIdAveragePendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByVenueIdAverageStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_STATUS_ASC', + ConfidentialTransactionsByVenueIdAverageStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_STATUS_DESC', + ConfidentialTransactionsByVenueIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdAverageVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_VENUE_ID_ASC', + ConfidentialTransactionsByVenueIdAverageVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_AVERAGE_VENUE_ID_DESC', + ConfidentialTransactionsByVenueIdCountAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_COUNT_ASC', + ConfidentialTransactionsByVenueIdCountDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_COUNT_DESC', + ConfidentialTransactionsByVenueIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialTransactionsByVenueIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialTransactionsByVenueIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialTransactionsByVenueIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialTransactionsByVenueIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialTransactionsByVenueIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialTransactionsByVenueIdDistinctCountEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_EVENT_ID_ASC', + ConfidentialTransactionsByVenueIdDistinctCountEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_EVENT_ID_DESC', + ConfidentialTransactionsByVenueIdDistinctCountIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialTransactionsByVenueIdDistinctCountIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialTransactionsByVenueIdDistinctCountMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_MEMO_ASC', + ConfidentialTransactionsByVenueIdDistinctCountMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_MEMO_DESC', + ConfidentialTransactionsByVenueIdDistinctCountPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByVenueIdDistinctCountPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByVenueIdDistinctCountStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_STATUS_ASC', + ConfidentialTransactionsByVenueIdDistinctCountStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_STATUS_DESC', + ConfidentialTransactionsByVenueIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdDistinctCountVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_VENUE_ID_ASC', + ConfidentialTransactionsByVenueIdDistinctCountVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_DISTINCT_COUNT_VENUE_ID_DESC', + ConfidentialTransactionsByVenueIdMaxBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialTransactionsByVenueIdMaxBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialTransactionsByVenueIdMaxCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_CREATED_AT_ASC', + ConfidentialTransactionsByVenueIdMaxCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_CREATED_AT_DESC', + ConfidentialTransactionsByVenueIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdMaxEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_EVENT_IDX_ASC', + ConfidentialTransactionsByVenueIdMaxEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_EVENT_IDX_DESC', + ConfidentialTransactionsByVenueIdMaxEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_EVENT_ID_ASC', + ConfidentialTransactionsByVenueIdMaxEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_EVENT_ID_DESC', + ConfidentialTransactionsByVenueIdMaxIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_ID_ASC', + ConfidentialTransactionsByVenueIdMaxIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_ID_DESC', + ConfidentialTransactionsByVenueIdMaxMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_MEMO_ASC', + ConfidentialTransactionsByVenueIdMaxMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_MEMO_DESC', + ConfidentialTransactionsByVenueIdMaxPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByVenueIdMaxPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByVenueIdMaxStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_STATUS_ASC', + ConfidentialTransactionsByVenueIdMaxStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_STATUS_DESC', + ConfidentialTransactionsByVenueIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdMaxVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_VENUE_ID_ASC', + ConfidentialTransactionsByVenueIdMaxVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MAX_VENUE_ID_DESC', + ConfidentialTransactionsByVenueIdMinBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialTransactionsByVenueIdMinBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialTransactionsByVenueIdMinCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_CREATED_AT_ASC', + ConfidentialTransactionsByVenueIdMinCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_CREATED_AT_DESC', + ConfidentialTransactionsByVenueIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdMinEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_EVENT_IDX_ASC', + ConfidentialTransactionsByVenueIdMinEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_EVENT_IDX_DESC', + ConfidentialTransactionsByVenueIdMinEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_EVENT_ID_ASC', + ConfidentialTransactionsByVenueIdMinEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_EVENT_ID_DESC', + ConfidentialTransactionsByVenueIdMinIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_ID_ASC', + ConfidentialTransactionsByVenueIdMinIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_ID_DESC', + ConfidentialTransactionsByVenueIdMinMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_MEMO_ASC', + ConfidentialTransactionsByVenueIdMinMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_MEMO_DESC', + ConfidentialTransactionsByVenueIdMinPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByVenueIdMinPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByVenueIdMinStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_STATUS_ASC', + ConfidentialTransactionsByVenueIdMinStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_STATUS_DESC', + ConfidentialTransactionsByVenueIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdMinVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_VENUE_ID_ASC', + ConfidentialTransactionsByVenueIdMinVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_MIN_VENUE_ID_DESC', + ConfidentialTransactionsByVenueIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionsByVenueIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionsByVenueIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionsByVenueIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionsByVenueIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionsByVenueIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionsByVenueIdStddevPopulationEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_EVENT_ID_ASC', + ConfidentialTransactionsByVenueIdStddevPopulationEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_EVENT_ID_DESC', + ConfidentialTransactionsByVenueIdStddevPopulationIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialTransactionsByVenueIdStddevPopulationIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialTransactionsByVenueIdStddevPopulationMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_MEMO_ASC', + ConfidentialTransactionsByVenueIdStddevPopulationMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_MEMO_DESC', + ConfidentialTransactionsByVenueIdStddevPopulationPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByVenueIdStddevPopulationPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByVenueIdStddevPopulationStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_STATUS_ASC', + ConfidentialTransactionsByVenueIdStddevPopulationStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_STATUS_DESC', + ConfidentialTransactionsByVenueIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdStddevPopulationVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_VENUE_ID_ASC', + ConfidentialTransactionsByVenueIdStddevPopulationVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_POPULATION_VENUE_ID_DESC', + ConfidentialTransactionsByVenueIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionsByVenueIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionsByVenueIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionsByVenueIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionsByVenueIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionsByVenueIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionsByVenueIdStddevSampleEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + ConfidentialTransactionsByVenueIdStddevSampleEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + ConfidentialTransactionsByVenueIdStddevSampleIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialTransactionsByVenueIdStddevSampleIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialTransactionsByVenueIdStddevSampleMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_MEMO_ASC', + ConfidentialTransactionsByVenueIdStddevSampleMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_MEMO_DESC', + ConfidentialTransactionsByVenueIdStddevSamplePendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByVenueIdStddevSamplePendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByVenueIdStddevSampleStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_STATUS_ASC', + ConfidentialTransactionsByVenueIdStddevSampleStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_STATUS_DESC', + ConfidentialTransactionsByVenueIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdStddevSampleVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + ConfidentialTransactionsByVenueIdStddevSampleVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + ConfidentialTransactionsByVenueIdSumBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialTransactionsByVenueIdSumBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialTransactionsByVenueIdSumCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_CREATED_AT_ASC', + ConfidentialTransactionsByVenueIdSumCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_CREATED_AT_DESC', + ConfidentialTransactionsByVenueIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdSumEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_EVENT_IDX_ASC', + ConfidentialTransactionsByVenueIdSumEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_EVENT_IDX_DESC', + ConfidentialTransactionsByVenueIdSumEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_EVENT_ID_ASC', + ConfidentialTransactionsByVenueIdSumEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_EVENT_ID_DESC', + ConfidentialTransactionsByVenueIdSumIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_ID_ASC', + ConfidentialTransactionsByVenueIdSumIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_ID_DESC', + ConfidentialTransactionsByVenueIdSumMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_MEMO_ASC', + ConfidentialTransactionsByVenueIdSumMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_MEMO_DESC', + ConfidentialTransactionsByVenueIdSumPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByVenueIdSumPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByVenueIdSumStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_STATUS_ASC', + ConfidentialTransactionsByVenueIdSumStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_STATUS_DESC', + ConfidentialTransactionsByVenueIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdSumVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_VENUE_ID_ASC', + ConfidentialTransactionsByVenueIdSumVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_SUM_VENUE_ID_DESC', + ConfidentialTransactionsByVenueIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionsByVenueIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionsByVenueIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionsByVenueIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionsByVenueIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionsByVenueIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionsByVenueIdVariancePopulationEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + ConfidentialTransactionsByVenueIdVariancePopulationEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + ConfidentialTransactionsByVenueIdVariancePopulationIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialTransactionsByVenueIdVariancePopulationIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialTransactionsByVenueIdVariancePopulationMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_MEMO_ASC', + ConfidentialTransactionsByVenueIdVariancePopulationMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_MEMO_DESC', + ConfidentialTransactionsByVenueIdVariancePopulationPendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByVenueIdVariancePopulationPendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByVenueIdVariancePopulationStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_STATUS_ASC', + ConfidentialTransactionsByVenueIdVariancePopulationStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_STATUS_DESC', + ConfidentialTransactionsByVenueIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdVariancePopulationVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + ConfidentialTransactionsByVenueIdVariancePopulationVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + ConfidentialTransactionsByVenueIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionsByVenueIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionsByVenueIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionsByVenueIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionsByVenueIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionsByVenueIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionsByVenueIdVarianceSampleEventIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + ConfidentialTransactionsByVenueIdVarianceSampleEventIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + ConfidentialTransactionsByVenueIdVarianceSampleIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialTransactionsByVenueIdVarianceSampleIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialTransactionsByVenueIdVarianceSampleMemoAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_MEMO_ASC', + ConfidentialTransactionsByVenueIdVarianceSampleMemoDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_MEMO_DESC', + ConfidentialTransactionsByVenueIdVarianceSamplePendingAffirmationsAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_PENDING_AFFIRMATIONS_ASC', + ConfidentialTransactionsByVenueIdVarianceSamplePendingAffirmationsDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_PENDING_AFFIRMATIONS_DESC', + ConfidentialTransactionsByVenueIdVarianceSampleStatusAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_STATUS_ASC', + ConfidentialTransactionsByVenueIdVarianceSampleStatusDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_STATUS_DESC', + ConfidentialTransactionsByVenueIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionsByVenueIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionsByVenueIdVarianceSampleVenueIdAsc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + ConfidentialTransactionsByVenueIdVarianceSampleVenueIdDesc = 'CONFIDENTIAL_TRANSACTIONS_BY_VENUE_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + CreatorIdAsc = 'CREATOR_ID_ASC', + CreatorIdDesc = 'CREATOR_ID_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + VenueIdAsc = 'VENUE_ID_ASC', + VenueIdDesc = 'VENUE_ID_DESC', +} + +export type CustomClaimType = Node & { + __typename?: 'CustomClaimType'; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByStatTypeCustomClaimTypeIdAndAssetId: CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimCustomClaimTypeIdAndCreatedBlockId: CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimCustomClaimTypeIdAndUpdatedBlockId: CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStatTypeCustomClaimTypeIdAndCreatedBlockId: CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStatTypeCustomClaimTypeIdAndUpdatedBlockId: CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Claim`. */ + claims: ClaimsConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `CustomClaimType`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByClaimCustomClaimTypeIdAndIssuerId: CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByClaimCustomClaimTypeIdAndTargetId: CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStatTypeCustomClaimTypeIdAndClaimIssuerId: CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyConnection; + /** Reads a single `Identity` that is related to this `CustomClaimType`. */ + identity?: Maybe; + identityId?: Maybe; + name: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads and enables pagination through a set of `StatType`. */ + statTypes: StatTypesConnection; + /** Reads a single `Block` that is related to this `CustomClaimType`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type CustomClaimTypeClaimsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type CustomClaimTypeStatTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type CustomClaimTypeAggregates = { + __typename?: 'CustomClaimTypeAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `CustomClaimType` object types. */ +export type CustomClaimTypeAggregatesFilter = { + /** Distinct count aggregate over matching `CustomClaimType` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `CustomClaimType` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +/** A connection to a list of `Asset` values, with data from `StatType`. */ +export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyConnection = { + __typename?: 'CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `StatType`. */ +export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `StatType`. */ +export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyEdge = { + __typename?: 'CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypes: StatTypesConnection; +}; + +/** A `Asset` edge in the connection, with data from `StatType`. */ +export type CustomClaimTypeAssetsByStatTypeCustomClaimTypeIdAndAssetIdManyToManyEdgeStatTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByCreatedBlockId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByUpdatedBlockId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type CustomClaimTypeBlocksByClaimCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByCreatedBlockId: StatTypesConnection; +}; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByUpdatedBlockId: StatTypesConnection; +}; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type CustomClaimTypeBlocksByStatTypeCustomClaimTypeIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type CustomClaimTypeDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + name?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type CustomClaimTypeDistinctCountAggregates = { + __typename?: 'CustomClaimTypeDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of name across the matching connection */ + name?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `CustomClaimType` object types. All fields are combined with a logical ‘and.’ */ +export type CustomClaimTypeFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `claims` relation. */ + claims?: InputMaybe; + /** Some related `claims` exist. */ + claimsExist?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` relation. */ + identity?: InputMaybe; + /** A related `identity` exists. */ + identityExists?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Filter by the object’s `name` field. */ + name?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `statTypes` relation. */ + statTypes?: InputMaybe; + /** Some related `statTypes` exist. */ + statTypesExist?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyConnection = { + __typename?: 'CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyEdge = { + __typename?: 'CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByIssuerId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndIssuerIdManyToManyEdgeClaimsByIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyConnection = { + __typename?: 'CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyEdge = { + __typename?: 'CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByTargetId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type CustomClaimTypeIdentitiesByClaimCustomClaimTypeIdAndTargetIdManyToManyEdgeClaimsByTargetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `StatType`. */ +export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyConnection = + { + __typename?: 'CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `StatType`. */ +export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `StatType`. */ +export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyEdge = { + __typename?: 'CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByClaimIssuerId: StatTypesConnection; +}; + +/** A `Identity` edge in the connection, with data from `StatType`. */ +export type CustomClaimTypeIdentitiesByStatTypeCustomClaimTypeIdAndClaimIssuerIdManyToManyEdgeStatTypesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A filter to be used against many `Claim` object types. All fields are combined with a logical ‘and.’ */ +export type CustomClaimTypeToManyClaimFilter = { + /** Aggregates across related `Claim` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `StatType` object types. All fields are combined with a logical ‘and.’ */ +export type CustomClaimTypeToManyStatTypeFilter = { + /** Aggregates across related `StatType` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A connection to a list of `CustomClaimType` values. */ +export type CustomClaimTypesConnection = { + __typename?: 'CustomClaimTypesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `CustomClaimType` values. */ +export type CustomClaimTypesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `CustomClaimType` edge in the connection. */ +export type CustomClaimTypesEdge = { + __typename?: 'CustomClaimTypesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `CustomClaimType` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `CustomClaimType` for usage during aggregation. */ +export enum CustomClaimTypesGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + Name = 'NAME', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type CustomClaimTypesHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type CustomClaimTypesHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `CustomClaimType` aggregates. */ +export type CustomClaimTypesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type CustomClaimTypesHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type CustomClaimTypesHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type CustomClaimTypesHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type CustomClaimTypesHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type CustomClaimTypesHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type CustomClaimTypesHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type CustomClaimTypesHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `CustomClaimType`. */ +export enum CustomClaimTypesOrderBy { + ClaimsAverageBlockRangeAsc = 'CLAIMS_AVERAGE_BLOCK_RANGE_ASC', + ClaimsAverageBlockRangeDesc = 'CLAIMS_AVERAGE_BLOCK_RANGE_DESC', + ClaimsAverageCddIdAsc = 'CLAIMS_AVERAGE_CDD_ID_ASC', + ClaimsAverageCddIdDesc = 'CLAIMS_AVERAGE_CDD_ID_DESC', + ClaimsAverageCreatedAtAsc = 'CLAIMS_AVERAGE_CREATED_AT_ASC', + ClaimsAverageCreatedAtDesc = 'CLAIMS_AVERAGE_CREATED_AT_DESC', + ClaimsAverageCreatedBlockIdAsc = 'CLAIMS_AVERAGE_CREATED_BLOCK_ID_ASC', + ClaimsAverageCreatedBlockIdDesc = 'CLAIMS_AVERAGE_CREATED_BLOCK_ID_DESC', + ClaimsAverageCustomClaimTypeIdAsc = 'CLAIMS_AVERAGE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsAverageCustomClaimTypeIdDesc = 'CLAIMS_AVERAGE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsAverageEventIdxAsc = 'CLAIMS_AVERAGE_EVENT_IDX_ASC', + ClaimsAverageEventIdxDesc = 'CLAIMS_AVERAGE_EVENT_IDX_DESC', + ClaimsAverageExpiryAsc = 'CLAIMS_AVERAGE_EXPIRY_ASC', + ClaimsAverageExpiryDesc = 'CLAIMS_AVERAGE_EXPIRY_DESC', + ClaimsAverageFilterExpiryAsc = 'CLAIMS_AVERAGE_FILTER_EXPIRY_ASC', + ClaimsAverageFilterExpiryDesc = 'CLAIMS_AVERAGE_FILTER_EXPIRY_DESC', + ClaimsAverageIdAsc = 'CLAIMS_AVERAGE_ID_ASC', + ClaimsAverageIdDesc = 'CLAIMS_AVERAGE_ID_DESC', + ClaimsAverageIssuanceDateAsc = 'CLAIMS_AVERAGE_ISSUANCE_DATE_ASC', + ClaimsAverageIssuanceDateDesc = 'CLAIMS_AVERAGE_ISSUANCE_DATE_DESC', + ClaimsAverageIssuerIdAsc = 'CLAIMS_AVERAGE_ISSUER_ID_ASC', + ClaimsAverageIssuerIdDesc = 'CLAIMS_AVERAGE_ISSUER_ID_DESC', + ClaimsAverageJurisdictionAsc = 'CLAIMS_AVERAGE_JURISDICTION_ASC', + ClaimsAverageJurisdictionDesc = 'CLAIMS_AVERAGE_JURISDICTION_DESC', + ClaimsAverageLastUpdateDateAsc = 'CLAIMS_AVERAGE_LAST_UPDATE_DATE_ASC', + ClaimsAverageLastUpdateDateDesc = 'CLAIMS_AVERAGE_LAST_UPDATE_DATE_DESC', + ClaimsAverageRevokeDateAsc = 'CLAIMS_AVERAGE_REVOKE_DATE_ASC', + ClaimsAverageRevokeDateDesc = 'CLAIMS_AVERAGE_REVOKE_DATE_DESC', + ClaimsAverageScopeAsc = 'CLAIMS_AVERAGE_SCOPE_ASC', + ClaimsAverageScopeDesc = 'CLAIMS_AVERAGE_SCOPE_DESC', + ClaimsAverageTargetIdAsc = 'CLAIMS_AVERAGE_TARGET_ID_ASC', + ClaimsAverageTargetIdDesc = 'CLAIMS_AVERAGE_TARGET_ID_DESC', + ClaimsAverageTypeAsc = 'CLAIMS_AVERAGE_TYPE_ASC', + ClaimsAverageTypeDesc = 'CLAIMS_AVERAGE_TYPE_DESC', + ClaimsAverageUpdatedBlockIdAsc = 'CLAIMS_AVERAGE_UPDATED_BLOCK_ID_ASC', + ClaimsAverageUpdatedBlockIdDesc = 'CLAIMS_AVERAGE_UPDATED_BLOCK_ID_DESC', + ClaimsCountAsc = 'CLAIMS_COUNT_ASC', + ClaimsCountDesc = 'CLAIMS_COUNT_DESC', + ClaimsDistinctCountBlockRangeAsc = 'CLAIMS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ClaimsDistinctCountBlockRangeDesc = 'CLAIMS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ClaimsDistinctCountCddIdAsc = 'CLAIMS_DISTINCT_COUNT_CDD_ID_ASC', + ClaimsDistinctCountCddIdDesc = 'CLAIMS_DISTINCT_COUNT_CDD_ID_DESC', + ClaimsDistinctCountCreatedAtAsc = 'CLAIMS_DISTINCT_COUNT_CREATED_AT_ASC', + ClaimsDistinctCountCreatedAtDesc = 'CLAIMS_DISTINCT_COUNT_CREATED_AT_DESC', + ClaimsDistinctCountCreatedBlockIdAsc = 'CLAIMS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ClaimsDistinctCountCreatedBlockIdDesc = 'CLAIMS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ClaimsDistinctCountCustomClaimTypeIdAsc = 'CLAIMS_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsDistinctCountCustomClaimTypeIdDesc = 'CLAIMS_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsDistinctCountEventIdxAsc = 'CLAIMS_DISTINCT_COUNT_EVENT_IDX_ASC', + ClaimsDistinctCountEventIdxDesc = 'CLAIMS_DISTINCT_COUNT_EVENT_IDX_DESC', + ClaimsDistinctCountExpiryAsc = 'CLAIMS_DISTINCT_COUNT_EXPIRY_ASC', + ClaimsDistinctCountExpiryDesc = 'CLAIMS_DISTINCT_COUNT_EXPIRY_DESC', + ClaimsDistinctCountFilterExpiryAsc = 'CLAIMS_DISTINCT_COUNT_FILTER_EXPIRY_ASC', + ClaimsDistinctCountFilterExpiryDesc = 'CLAIMS_DISTINCT_COUNT_FILTER_EXPIRY_DESC', + ClaimsDistinctCountIdAsc = 'CLAIMS_DISTINCT_COUNT_ID_ASC', + ClaimsDistinctCountIdDesc = 'CLAIMS_DISTINCT_COUNT_ID_DESC', + ClaimsDistinctCountIssuanceDateAsc = 'CLAIMS_DISTINCT_COUNT_ISSUANCE_DATE_ASC', + ClaimsDistinctCountIssuanceDateDesc = 'CLAIMS_DISTINCT_COUNT_ISSUANCE_DATE_DESC', + ClaimsDistinctCountIssuerIdAsc = 'CLAIMS_DISTINCT_COUNT_ISSUER_ID_ASC', + ClaimsDistinctCountIssuerIdDesc = 'CLAIMS_DISTINCT_COUNT_ISSUER_ID_DESC', + ClaimsDistinctCountJurisdictionAsc = 'CLAIMS_DISTINCT_COUNT_JURISDICTION_ASC', + ClaimsDistinctCountJurisdictionDesc = 'CLAIMS_DISTINCT_COUNT_JURISDICTION_DESC', + ClaimsDistinctCountLastUpdateDateAsc = 'CLAIMS_DISTINCT_COUNT_LAST_UPDATE_DATE_ASC', + ClaimsDistinctCountLastUpdateDateDesc = 'CLAIMS_DISTINCT_COUNT_LAST_UPDATE_DATE_DESC', + ClaimsDistinctCountRevokeDateAsc = 'CLAIMS_DISTINCT_COUNT_REVOKE_DATE_ASC', + ClaimsDistinctCountRevokeDateDesc = 'CLAIMS_DISTINCT_COUNT_REVOKE_DATE_DESC', + ClaimsDistinctCountScopeAsc = 'CLAIMS_DISTINCT_COUNT_SCOPE_ASC', + ClaimsDistinctCountScopeDesc = 'CLAIMS_DISTINCT_COUNT_SCOPE_DESC', + ClaimsDistinctCountTargetIdAsc = 'CLAIMS_DISTINCT_COUNT_TARGET_ID_ASC', + ClaimsDistinctCountTargetIdDesc = 'CLAIMS_DISTINCT_COUNT_TARGET_ID_DESC', + ClaimsDistinctCountTypeAsc = 'CLAIMS_DISTINCT_COUNT_TYPE_ASC', + ClaimsDistinctCountTypeDesc = 'CLAIMS_DISTINCT_COUNT_TYPE_DESC', + ClaimsDistinctCountUpdatedBlockIdAsc = 'CLAIMS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ClaimsDistinctCountUpdatedBlockIdDesc = 'CLAIMS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ClaimsMaxBlockRangeAsc = 'CLAIMS_MAX_BLOCK_RANGE_ASC', + ClaimsMaxBlockRangeDesc = 'CLAIMS_MAX_BLOCK_RANGE_DESC', + ClaimsMaxCddIdAsc = 'CLAIMS_MAX_CDD_ID_ASC', + ClaimsMaxCddIdDesc = 'CLAIMS_MAX_CDD_ID_DESC', + ClaimsMaxCreatedAtAsc = 'CLAIMS_MAX_CREATED_AT_ASC', + ClaimsMaxCreatedAtDesc = 'CLAIMS_MAX_CREATED_AT_DESC', + ClaimsMaxCreatedBlockIdAsc = 'CLAIMS_MAX_CREATED_BLOCK_ID_ASC', + ClaimsMaxCreatedBlockIdDesc = 'CLAIMS_MAX_CREATED_BLOCK_ID_DESC', + ClaimsMaxCustomClaimTypeIdAsc = 'CLAIMS_MAX_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsMaxCustomClaimTypeIdDesc = 'CLAIMS_MAX_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsMaxEventIdxAsc = 'CLAIMS_MAX_EVENT_IDX_ASC', + ClaimsMaxEventIdxDesc = 'CLAIMS_MAX_EVENT_IDX_DESC', + ClaimsMaxExpiryAsc = 'CLAIMS_MAX_EXPIRY_ASC', + ClaimsMaxExpiryDesc = 'CLAIMS_MAX_EXPIRY_DESC', + ClaimsMaxFilterExpiryAsc = 'CLAIMS_MAX_FILTER_EXPIRY_ASC', + ClaimsMaxFilterExpiryDesc = 'CLAIMS_MAX_FILTER_EXPIRY_DESC', + ClaimsMaxIdAsc = 'CLAIMS_MAX_ID_ASC', + ClaimsMaxIdDesc = 'CLAIMS_MAX_ID_DESC', + ClaimsMaxIssuanceDateAsc = 'CLAIMS_MAX_ISSUANCE_DATE_ASC', + ClaimsMaxIssuanceDateDesc = 'CLAIMS_MAX_ISSUANCE_DATE_DESC', + ClaimsMaxIssuerIdAsc = 'CLAIMS_MAX_ISSUER_ID_ASC', + ClaimsMaxIssuerIdDesc = 'CLAIMS_MAX_ISSUER_ID_DESC', + ClaimsMaxJurisdictionAsc = 'CLAIMS_MAX_JURISDICTION_ASC', + ClaimsMaxJurisdictionDesc = 'CLAIMS_MAX_JURISDICTION_DESC', + ClaimsMaxLastUpdateDateAsc = 'CLAIMS_MAX_LAST_UPDATE_DATE_ASC', + ClaimsMaxLastUpdateDateDesc = 'CLAIMS_MAX_LAST_UPDATE_DATE_DESC', + ClaimsMaxRevokeDateAsc = 'CLAIMS_MAX_REVOKE_DATE_ASC', + ClaimsMaxRevokeDateDesc = 'CLAIMS_MAX_REVOKE_DATE_DESC', + ClaimsMaxScopeAsc = 'CLAIMS_MAX_SCOPE_ASC', + ClaimsMaxScopeDesc = 'CLAIMS_MAX_SCOPE_DESC', + ClaimsMaxTargetIdAsc = 'CLAIMS_MAX_TARGET_ID_ASC', + ClaimsMaxTargetIdDesc = 'CLAIMS_MAX_TARGET_ID_DESC', + ClaimsMaxTypeAsc = 'CLAIMS_MAX_TYPE_ASC', + ClaimsMaxTypeDesc = 'CLAIMS_MAX_TYPE_DESC', + ClaimsMaxUpdatedBlockIdAsc = 'CLAIMS_MAX_UPDATED_BLOCK_ID_ASC', + ClaimsMaxUpdatedBlockIdDesc = 'CLAIMS_MAX_UPDATED_BLOCK_ID_DESC', + ClaimsMinBlockRangeAsc = 'CLAIMS_MIN_BLOCK_RANGE_ASC', + ClaimsMinBlockRangeDesc = 'CLAIMS_MIN_BLOCK_RANGE_DESC', + ClaimsMinCddIdAsc = 'CLAIMS_MIN_CDD_ID_ASC', + ClaimsMinCddIdDesc = 'CLAIMS_MIN_CDD_ID_DESC', + ClaimsMinCreatedAtAsc = 'CLAIMS_MIN_CREATED_AT_ASC', + ClaimsMinCreatedAtDesc = 'CLAIMS_MIN_CREATED_AT_DESC', + ClaimsMinCreatedBlockIdAsc = 'CLAIMS_MIN_CREATED_BLOCK_ID_ASC', + ClaimsMinCreatedBlockIdDesc = 'CLAIMS_MIN_CREATED_BLOCK_ID_DESC', + ClaimsMinCustomClaimTypeIdAsc = 'CLAIMS_MIN_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsMinCustomClaimTypeIdDesc = 'CLAIMS_MIN_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsMinEventIdxAsc = 'CLAIMS_MIN_EVENT_IDX_ASC', + ClaimsMinEventIdxDesc = 'CLAIMS_MIN_EVENT_IDX_DESC', + ClaimsMinExpiryAsc = 'CLAIMS_MIN_EXPIRY_ASC', + ClaimsMinExpiryDesc = 'CLAIMS_MIN_EXPIRY_DESC', + ClaimsMinFilterExpiryAsc = 'CLAIMS_MIN_FILTER_EXPIRY_ASC', + ClaimsMinFilterExpiryDesc = 'CLAIMS_MIN_FILTER_EXPIRY_DESC', + ClaimsMinIdAsc = 'CLAIMS_MIN_ID_ASC', + ClaimsMinIdDesc = 'CLAIMS_MIN_ID_DESC', + ClaimsMinIssuanceDateAsc = 'CLAIMS_MIN_ISSUANCE_DATE_ASC', + ClaimsMinIssuanceDateDesc = 'CLAIMS_MIN_ISSUANCE_DATE_DESC', + ClaimsMinIssuerIdAsc = 'CLAIMS_MIN_ISSUER_ID_ASC', + ClaimsMinIssuerIdDesc = 'CLAIMS_MIN_ISSUER_ID_DESC', + ClaimsMinJurisdictionAsc = 'CLAIMS_MIN_JURISDICTION_ASC', + ClaimsMinJurisdictionDesc = 'CLAIMS_MIN_JURISDICTION_DESC', + ClaimsMinLastUpdateDateAsc = 'CLAIMS_MIN_LAST_UPDATE_DATE_ASC', + ClaimsMinLastUpdateDateDesc = 'CLAIMS_MIN_LAST_UPDATE_DATE_DESC', + ClaimsMinRevokeDateAsc = 'CLAIMS_MIN_REVOKE_DATE_ASC', + ClaimsMinRevokeDateDesc = 'CLAIMS_MIN_REVOKE_DATE_DESC', + ClaimsMinScopeAsc = 'CLAIMS_MIN_SCOPE_ASC', + ClaimsMinScopeDesc = 'CLAIMS_MIN_SCOPE_DESC', + ClaimsMinTargetIdAsc = 'CLAIMS_MIN_TARGET_ID_ASC', + ClaimsMinTargetIdDesc = 'CLAIMS_MIN_TARGET_ID_DESC', + ClaimsMinTypeAsc = 'CLAIMS_MIN_TYPE_ASC', + ClaimsMinTypeDesc = 'CLAIMS_MIN_TYPE_DESC', + ClaimsMinUpdatedBlockIdAsc = 'CLAIMS_MIN_UPDATED_BLOCK_ID_ASC', + ClaimsMinUpdatedBlockIdDesc = 'CLAIMS_MIN_UPDATED_BLOCK_ID_DESC', + ClaimsStddevPopulationBlockRangeAsc = 'CLAIMS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ClaimsStddevPopulationBlockRangeDesc = 'CLAIMS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ClaimsStddevPopulationCddIdAsc = 'CLAIMS_STDDEV_POPULATION_CDD_ID_ASC', + ClaimsStddevPopulationCddIdDesc = 'CLAIMS_STDDEV_POPULATION_CDD_ID_DESC', + ClaimsStddevPopulationCreatedAtAsc = 'CLAIMS_STDDEV_POPULATION_CREATED_AT_ASC', + ClaimsStddevPopulationCreatedAtDesc = 'CLAIMS_STDDEV_POPULATION_CREATED_AT_DESC', + ClaimsStddevPopulationCreatedBlockIdAsc = 'CLAIMS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimsStddevPopulationCreatedBlockIdDesc = 'CLAIMS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimsStddevPopulationCustomClaimTypeIdAsc = 'CLAIMS_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsStddevPopulationCustomClaimTypeIdDesc = 'CLAIMS_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsStddevPopulationEventIdxAsc = 'CLAIMS_STDDEV_POPULATION_EVENT_IDX_ASC', + ClaimsStddevPopulationEventIdxDesc = 'CLAIMS_STDDEV_POPULATION_EVENT_IDX_DESC', + ClaimsStddevPopulationExpiryAsc = 'CLAIMS_STDDEV_POPULATION_EXPIRY_ASC', + ClaimsStddevPopulationExpiryDesc = 'CLAIMS_STDDEV_POPULATION_EXPIRY_DESC', + ClaimsStddevPopulationFilterExpiryAsc = 'CLAIMS_STDDEV_POPULATION_FILTER_EXPIRY_ASC', + ClaimsStddevPopulationFilterExpiryDesc = 'CLAIMS_STDDEV_POPULATION_FILTER_EXPIRY_DESC', + ClaimsStddevPopulationIdAsc = 'CLAIMS_STDDEV_POPULATION_ID_ASC', + ClaimsStddevPopulationIdDesc = 'CLAIMS_STDDEV_POPULATION_ID_DESC', + ClaimsStddevPopulationIssuanceDateAsc = 'CLAIMS_STDDEV_POPULATION_ISSUANCE_DATE_ASC', + ClaimsStddevPopulationIssuanceDateDesc = 'CLAIMS_STDDEV_POPULATION_ISSUANCE_DATE_DESC', + ClaimsStddevPopulationIssuerIdAsc = 'CLAIMS_STDDEV_POPULATION_ISSUER_ID_ASC', + ClaimsStddevPopulationIssuerIdDesc = 'CLAIMS_STDDEV_POPULATION_ISSUER_ID_DESC', + ClaimsStddevPopulationJurisdictionAsc = 'CLAIMS_STDDEV_POPULATION_JURISDICTION_ASC', + ClaimsStddevPopulationJurisdictionDesc = 'CLAIMS_STDDEV_POPULATION_JURISDICTION_DESC', + ClaimsStddevPopulationLastUpdateDateAsc = 'CLAIMS_STDDEV_POPULATION_LAST_UPDATE_DATE_ASC', + ClaimsStddevPopulationLastUpdateDateDesc = 'CLAIMS_STDDEV_POPULATION_LAST_UPDATE_DATE_DESC', + ClaimsStddevPopulationRevokeDateAsc = 'CLAIMS_STDDEV_POPULATION_REVOKE_DATE_ASC', + ClaimsStddevPopulationRevokeDateDesc = 'CLAIMS_STDDEV_POPULATION_REVOKE_DATE_DESC', + ClaimsStddevPopulationScopeAsc = 'CLAIMS_STDDEV_POPULATION_SCOPE_ASC', + ClaimsStddevPopulationScopeDesc = 'CLAIMS_STDDEV_POPULATION_SCOPE_DESC', + ClaimsStddevPopulationTargetIdAsc = 'CLAIMS_STDDEV_POPULATION_TARGET_ID_ASC', + ClaimsStddevPopulationTargetIdDesc = 'CLAIMS_STDDEV_POPULATION_TARGET_ID_DESC', + ClaimsStddevPopulationTypeAsc = 'CLAIMS_STDDEV_POPULATION_TYPE_ASC', + ClaimsStddevPopulationTypeDesc = 'CLAIMS_STDDEV_POPULATION_TYPE_DESC', + ClaimsStddevPopulationUpdatedBlockIdAsc = 'CLAIMS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimsStddevPopulationUpdatedBlockIdDesc = 'CLAIMS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimsStddevSampleBlockRangeAsc = 'CLAIMS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ClaimsStddevSampleBlockRangeDesc = 'CLAIMS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ClaimsStddevSampleCddIdAsc = 'CLAIMS_STDDEV_SAMPLE_CDD_ID_ASC', + ClaimsStddevSampleCddIdDesc = 'CLAIMS_STDDEV_SAMPLE_CDD_ID_DESC', + ClaimsStddevSampleCreatedAtAsc = 'CLAIMS_STDDEV_SAMPLE_CREATED_AT_ASC', + ClaimsStddevSampleCreatedAtDesc = 'CLAIMS_STDDEV_SAMPLE_CREATED_AT_DESC', + ClaimsStddevSampleCreatedBlockIdAsc = 'CLAIMS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimsStddevSampleCreatedBlockIdDesc = 'CLAIMS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimsStddevSampleCustomClaimTypeIdAsc = 'CLAIMS_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsStddevSampleCustomClaimTypeIdDesc = 'CLAIMS_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsStddevSampleEventIdxAsc = 'CLAIMS_STDDEV_SAMPLE_EVENT_IDX_ASC', + ClaimsStddevSampleEventIdxDesc = 'CLAIMS_STDDEV_SAMPLE_EVENT_IDX_DESC', + ClaimsStddevSampleExpiryAsc = 'CLAIMS_STDDEV_SAMPLE_EXPIRY_ASC', + ClaimsStddevSampleExpiryDesc = 'CLAIMS_STDDEV_SAMPLE_EXPIRY_DESC', + ClaimsStddevSampleFilterExpiryAsc = 'CLAIMS_STDDEV_SAMPLE_FILTER_EXPIRY_ASC', + ClaimsStddevSampleFilterExpiryDesc = 'CLAIMS_STDDEV_SAMPLE_FILTER_EXPIRY_DESC', + ClaimsStddevSampleIdAsc = 'CLAIMS_STDDEV_SAMPLE_ID_ASC', + ClaimsStddevSampleIdDesc = 'CLAIMS_STDDEV_SAMPLE_ID_DESC', + ClaimsStddevSampleIssuanceDateAsc = 'CLAIMS_STDDEV_SAMPLE_ISSUANCE_DATE_ASC', + ClaimsStddevSampleIssuanceDateDesc = 'CLAIMS_STDDEV_SAMPLE_ISSUANCE_DATE_DESC', + ClaimsStddevSampleIssuerIdAsc = 'CLAIMS_STDDEV_SAMPLE_ISSUER_ID_ASC', + ClaimsStddevSampleIssuerIdDesc = 'CLAIMS_STDDEV_SAMPLE_ISSUER_ID_DESC', + ClaimsStddevSampleJurisdictionAsc = 'CLAIMS_STDDEV_SAMPLE_JURISDICTION_ASC', + ClaimsStddevSampleJurisdictionDesc = 'CLAIMS_STDDEV_SAMPLE_JURISDICTION_DESC', + ClaimsStddevSampleLastUpdateDateAsc = 'CLAIMS_STDDEV_SAMPLE_LAST_UPDATE_DATE_ASC', + ClaimsStddevSampleLastUpdateDateDesc = 'CLAIMS_STDDEV_SAMPLE_LAST_UPDATE_DATE_DESC', + ClaimsStddevSampleRevokeDateAsc = 'CLAIMS_STDDEV_SAMPLE_REVOKE_DATE_ASC', + ClaimsStddevSampleRevokeDateDesc = 'CLAIMS_STDDEV_SAMPLE_REVOKE_DATE_DESC', + ClaimsStddevSampleScopeAsc = 'CLAIMS_STDDEV_SAMPLE_SCOPE_ASC', + ClaimsStddevSampleScopeDesc = 'CLAIMS_STDDEV_SAMPLE_SCOPE_DESC', + ClaimsStddevSampleTargetIdAsc = 'CLAIMS_STDDEV_SAMPLE_TARGET_ID_ASC', + ClaimsStddevSampleTargetIdDesc = 'CLAIMS_STDDEV_SAMPLE_TARGET_ID_DESC', + ClaimsStddevSampleTypeAsc = 'CLAIMS_STDDEV_SAMPLE_TYPE_ASC', + ClaimsStddevSampleTypeDesc = 'CLAIMS_STDDEV_SAMPLE_TYPE_DESC', + ClaimsStddevSampleUpdatedBlockIdAsc = 'CLAIMS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimsStddevSampleUpdatedBlockIdDesc = 'CLAIMS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimsSumBlockRangeAsc = 'CLAIMS_SUM_BLOCK_RANGE_ASC', + ClaimsSumBlockRangeDesc = 'CLAIMS_SUM_BLOCK_RANGE_DESC', + ClaimsSumCddIdAsc = 'CLAIMS_SUM_CDD_ID_ASC', + ClaimsSumCddIdDesc = 'CLAIMS_SUM_CDD_ID_DESC', + ClaimsSumCreatedAtAsc = 'CLAIMS_SUM_CREATED_AT_ASC', + ClaimsSumCreatedAtDesc = 'CLAIMS_SUM_CREATED_AT_DESC', + ClaimsSumCreatedBlockIdAsc = 'CLAIMS_SUM_CREATED_BLOCK_ID_ASC', + ClaimsSumCreatedBlockIdDesc = 'CLAIMS_SUM_CREATED_BLOCK_ID_DESC', + ClaimsSumCustomClaimTypeIdAsc = 'CLAIMS_SUM_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsSumCustomClaimTypeIdDesc = 'CLAIMS_SUM_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsSumEventIdxAsc = 'CLAIMS_SUM_EVENT_IDX_ASC', + ClaimsSumEventIdxDesc = 'CLAIMS_SUM_EVENT_IDX_DESC', + ClaimsSumExpiryAsc = 'CLAIMS_SUM_EXPIRY_ASC', + ClaimsSumExpiryDesc = 'CLAIMS_SUM_EXPIRY_DESC', + ClaimsSumFilterExpiryAsc = 'CLAIMS_SUM_FILTER_EXPIRY_ASC', + ClaimsSumFilterExpiryDesc = 'CLAIMS_SUM_FILTER_EXPIRY_DESC', + ClaimsSumIdAsc = 'CLAIMS_SUM_ID_ASC', + ClaimsSumIdDesc = 'CLAIMS_SUM_ID_DESC', + ClaimsSumIssuanceDateAsc = 'CLAIMS_SUM_ISSUANCE_DATE_ASC', + ClaimsSumIssuanceDateDesc = 'CLAIMS_SUM_ISSUANCE_DATE_DESC', + ClaimsSumIssuerIdAsc = 'CLAIMS_SUM_ISSUER_ID_ASC', + ClaimsSumIssuerIdDesc = 'CLAIMS_SUM_ISSUER_ID_DESC', + ClaimsSumJurisdictionAsc = 'CLAIMS_SUM_JURISDICTION_ASC', + ClaimsSumJurisdictionDesc = 'CLAIMS_SUM_JURISDICTION_DESC', + ClaimsSumLastUpdateDateAsc = 'CLAIMS_SUM_LAST_UPDATE_DATE_ASC', + ClaimsSumLastUpdateDateDesc = 'CLAIMS_SUM_LAST_UPDATE_DATE_DESC', + ClaimsSumRevokeDateAsc = 'CLAIMS_SUM_REVOKE_DATE_ASC', + ClaimsSumRevokeDateDesc = 'CLAIMS_SUM_REVOKE_DATE_DESC', + ClaimsSumScopeAsc = 'CLAIMS_SUM_SCOPE_ASC', + ClaimsSumScopeDesc = 'CLAIMS_SUM_SCOPE_DESC', + ClaimsSumTargetIdAsc = 'CLAIMS_SUM_TARGET_ID_ASC', + ClaimsSumTargetIdDesc = 'CLAIMS_SUM_TARGET_ID_DESC', + ClaimsSumTypeAsc = 'CLAIMS_SUM_TYPE_ASC', + ClaimsSumTypeDesc = 'CLAIMS_SUM_TYPE_DESC', + ClaimsSumUpdatedBlockIdAsc = 'CLAIMS_SUM_UPDATED_BLOCK_ID_ASC', + ClaimsSumUpdatedBlockIdDesc = 'CLAIMS_SUM_UPDATED_BLOCK_ID_DESC', + ClaimsVariancePopulationBlockRangeAsc = 'CLAIMS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ClaimsVariancePopulationBlockRangeDesc = 'CLAIMS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ClaimsVariancePopulationCddIdAsc = 'CLAIMS_VARIANCE_POPULATION_CDD_ID_ASC', + ClaimsVariancePopulationCddIdDesc = 'CLAIMS_VARIANCE_POPULATION_CDD_ID_DESC', + ClaimsVariancePopulationCreatedAtAsc = 'CLAIMS_VARIANCE_POPULATION_CREATED_AT_ASC', + ClaimsVariancePopulationCreatedAtDesc = 'CLAIMS_VARIANCE_POPULATION_CREATED_AT_DESC', + ClaimsVariancePopulationCreatedBlockIdAsc = 'CLAIMS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimsVariancePopulationCreatedBlockIdDesc = 'CLAIMS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimsVariancePopulationCustomClaimTypeIdAsc = 'CLAIMS_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsVariancePopulationCustomClaimTypeIdDesc = 'CLAIMS_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsVariancePopulationEventIdxAsc = 'CLAIMS_VARIANCE_POPULATION_EVENT_IDX_ASC', + ClaimsVariancePopulationEventIdxDesc = 'CLAIMS_VARIANCE_POPULATION_EVENT_IDX_DESC', + ClaimsVariancePopulationExpiryAsc = 'CLAIMS_VARIANCE_POPULATION_EXPIRY_ASC', + ClaimsVariancePopulationExpiryDesc = 'CLAIMS_VARIANCE_POPULATION_EXPIRY_DESC', + ClaimsVariancePopulationFilterExpiryAsc = 'CLAIMS_VARIANCE_POPULATION_FILTER_EXPIRY_ASC', + ClaimsVariancePopulationFilterExpiryDesc = 'CLAIMS_VARIANCE_POPULATION_FILTER_EXPIRY_DESC', + ClaimsVariancePopulationIdAsc = 'CLAIMS_VARIANCE_POPULATION_ID_ASC', + ClaimsVariancePopulationIdDesc = 'CLAIMS_VARIANCE_POPULATION_ID_DESC', + ClaimsVariancePopulationIssuanceDateAsc = 'CLAIMS_VARIANCE_POPULATION_ISSUANCE_DATE_ASC', + ClaimsVariancePopulationIssuanceDateDesc = 'CLAIMS_VARIANCE_POPULATION_ISSUANCE_DATE_DESC', + ClaimsVariancePopulationIssuerIdAsc = 'CLAIMS_VARIANCE_POPULATION_ISSUER_ID_ASC', + ClaimsVariancePopulationIssuerIdDesc = 'CLAIMS_VARIANCE_POPULATION_ISSUER_ID_DESC', + ClaimsVariancePopulationJurisdictionAsc = 'CLAIMS_VARIANCE_POPULATION_JURISDICTION_ASC', + ClaimsVariancePopulationJurisdictionDesc = 'CLAIMS_VARIANCE_POPULATION_JURISDICTION_DESC', + ClaimsVariancePopulationLastUpdateDateAsc = 'CLAIMS_VARIANCE_POPULATION_LAST_UPDATE_DATE_ASC', + ClaimsVariancePopulationLastUpdateDateDesc = 'CLAIMS_VARIANCE_POPULATION_LAST_UPDATE_DATE_DESC', + ClaimsVariancePopulationRevokeDateAsc = 'CLAIMS_VARIANCE_POPULATION_REVOKE_DATE_ASC', + ClaimsVariancePopulationRevokeDateDesc = 'CLAIMS_VARIANCE_POPULATION_REVOKE_DATE_DESC', + ClaimsVariancePopulationScopeAsc = 'CLAIMS_VARIANCE_POPULATION_SCOPE_ASC', + ClaimsVariancePopulationScopeDesc = 'CLAIMS_VARIANCE_POPULATION_SCOPE_DESC', + ClaimsVariancePopulationTargetIdAsc = 'CLAIMS_VARIANCE_POPULATION_TARGET_ID_ASC', + ClaimsVariancePopulationTargetIdDesc = 'CLAIMS_VARIANCE_POPULATION_TARGET_ID_DESC', + ClaimsVariancePopulationTypeAsc = 'CLAIMS_VARIANCE_POPULATION_TYPE_ASC', + ClaimsVariancePopulationTypeDesc = 'CLAIMS_VARIANCE_POPULATION_TYPE_DESC', + ClaimsVariancePopulationUpdatedBlockIdAsc = 'CLAIMS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimsVariancePopulationUpdatedBlockIdDesc = 'CLAIMS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimsVarianceSampleBlockRangeAsc = 'CLAIMS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ClaimsVarianceSampleBlockRangeDesc = 'CLAIMS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ClaimsVarianceSampleCddIdAsc = 'CLAIMS_VARIANCE_SAMPLE_CDD_ID_ASC', + ClaimsVarianceSampleCddIdDesc = 'CLAIMS_VARIANCE_SAMPLE_CDD_ID_DESC', + ClaimsVarianceSampleCreatedAtAsc = 'CLAIMS_VARIANCE_SAMPLE_CREATED_AT_ASC', + ClaimsVarianceSampleCreatedAtDesc = 'CLAIMS_VARIANCE_SAMPLE_CREATED_AT_DESC', + ClaimsVarianceSampleCreatedBlockIdAsc = 'CLAIMS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimsVarianceSampleCreatedBlockIdDesc = 'CLAIMS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimsVarianceSampleCustomClaimTypeIdAsc = 'CLAIMS_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsVarianceSampleCustomClaimTypeIdDesc = 'CLAIMS_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsVarianceSampleEventIdxAsc = 'CLAIMS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ClaimsVarianceSampleEventIdxDesc = 'CLAIMS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ClaimsVarianceSampleExpiryAsc = 'CLAIMS_VARIANCE_SAMPLE_EXPIRY_ASC', + ClaimsVarianceSampleExpiryDesc = 'CLAIMS_VARIANCE_SAMPLE_EXPIRY_DESC', + ClaimsVarianceSampleFilterExpiryAsc = 'CLAIMS_VARIANCE_SAMPLE_FILTER_EXPIRY_ASC', + ClaimsVarianceSampleFilterExpiryDesc = 'CLAIMS_VARIANCE_SAMPLE_FILTER_EXPIRY_DESC', + ClaimsVarianceSampleIdAsc = 'CLAIMS_VARIANCE_SAMPLE_ID_ASC', + ClaimsVarianceSampleIdDesc = 'CLAIMS_VARIANCE_SAMPLE_ID_DESC', + ClaimsVarianceSampleIssuanceDateAsc = 'CLAIMS_VARIANCE_SAMPLE_ISSUANCE_DATE_ASC', + ClaimsVarianceSampleIssuanceDateDesc = 'CLAIMS_VARIANCE_SAMPLE_ISSUANCE_DATE_DESC', + ClaimsVarianceSampleIssuerIdAsc = 'CLAIMS_VARIANCE_SAMPLE_ISSUER_ID_ASC', + ClaimsVarianceSampleIssuerIdDesc = 'CLAIMS_VARIANCE_SAMPLE_ISSUER_ID_DESC', + ClaimsVarianceSampleJurisdictionAsc = 'CLAIMS_VARIANCE_SAMPLE_JURISDICTION_ASC', + ClaimsVarianceSampleJurisdictionDesc = 'CLAIMS_VARIANCE_SAMPLE_JURISDICTION_DESC', + ClaimsVarianceSampleLastUpdateDateAsc = 'CLAIMS_VARIANCE_SAMPLE_LAST_UPDATE_DATE_ASC', + ClaimsVarianceSampleLastUpdateDateDesc = 'CLAIMS_VARIANCE_SAMPLE_LAST_UPDATE_DATE_DESC', + ClaimsVarianceSampleRevokeDateAsc = 'CLAIMS_VARIANCE_SAMPLE_REVOKE_DATE_ASC', + ClaimsVarianceSampleRevokeDateDesc = 'CLAIMS_VARIANCE_SAMPLE_REVOKE_DATE_DESC', + ClaimsVarianceSampleScopeAsc = 'CLAIMS_VARIANCE_SAMPLE_SCOPE_ASC', + ClaimsVarianceSampleScopeDesc = 'CLAIMS_VARIANCE_SAMPLE_SCOPE_DESC', + ClaimsVarianceSampleTargetIdAsc = 'CLAIMS_VARIANCE_SAMPLE_TARGET_ID_ASC', + ClaimsVarianceSampleTargetIdDesc = 'CLAIMS_VARIANCE_SAMPLE_TARGET_ID_DESC', + ClaimsVarianceSampleTypeAsc = 'CLAIMS_VARIANCE_SAMPLE_TYPE_ASC', + ClaimsVarianceSampleTypeDesc = 'CLAIMS_VARIANCE_SAMPLE_TYPE_DESC', + ClaimsVarianceSampleUpdatedBlockIdAsc = 'CLAIMS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimsVarianceSampleUpdatedBlockIdDesc = 'CLAIMS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + NameAsc = 'NAME_ASC', + NameDesc = 'NAME_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + StatTypesAverageAssetIdAsc = 'STAT_TYPES_AVERAGE_ASSET_ID_ASC', + StatTypesAverageAssetIdDesc = 'STAT_TYPES_AVERAGE_ASSET_ID_DESC', + StatTypesAverageBlockRangeAsc = 'STAT_TYPES_AVERAGE_BLOCK_RANGE_ASC', + StatTypesAverageBlockRangeDesc = 'STAT_TYPES_AVERAGE_BLOCK_RANGE_DESC', + StatTypesAverageClaimIssuerIdAsc = 'STAT_TYPES_AVERAGE_CLAIM_ISSUER_ID_ASC', + StatTypesAverageClaimIssuerIdDesc = 'STAT_TYPES_AVERAGE_CLAIM_ISSUER_ID_DESC', + StatTypesAverageClaimTypeAsc = 'STAT_TYPES_AVERAGE_CLAIM_TYPE_ASC', + StatTypesAverageClaimTypeDesc = 'STAT_TYPES_AVERAGE_CLAIM_TYPE_DESC', + StatTypesAverageCreatedAtAsc = 'STAT_TYPES_AVERAGE_CREATED_AT_ASC', + StatTypesAverageCreatedAtDesc = 'STAT_TYPES_AVERAGE_CREATED_AT_DESC', + StatTypesAverageCreatedBlockIdAsc = 'STAT_TYPES_AVERAGE_CREATED_BLOCK_ID_ASC', + StatTypesAverageCreatedBlockIdDesc = 'STAT_TYPES_AVERAGE_CREATED_BLOCK_ID_DESC', + StatTypesAverageCustomClaimTypeIdAsc = 'STAT_TYPES_AVERAGE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesAverageCustomClaimTypeIdDesc = 'STAT_TYPES_AVERAGE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesAverageIdAsc = 'STAT_TYPES_AVERAGE_ID_ASC', + StatTypesAverageIdDesc = 'STAT_TYPES_AVERAGE_ID_DESC', + StatTypesAverageOpTypeAsc = 'STAT_TYPES_AVERAGE_OP_TYPE_ASC', + StatTypesAverageOpTypeDesc = 'STAT_TYPES_AVERAGE_OP_TYPE_DESC', + StatTypesAverageUpdatedBlockIdAsc = 'STAT_TYPES_AVERAGE_UPDATED_BLOCK_ID_ASC', + StatTypesAverageUpdatedBlockIdDesc = 'STAT_TYPES_AVERAGE_UPDATED_BLOCK_ID_DESC', + StatTypesCountAsc = 'STAT_TYPES_COUNT_ASC', + StatTypesCountDesc = 'STAT_TYPES_COUNT_DESC', + StatTypesDistinctCountAssetIdAsc = 'STAT_TYPES_DISTINCT_COUNT_ASSET_ID_ASC', + StatTypesDistinctCountAssetIdDesc = 'STAT_TYPES_DISTINCT_COUNT_ASSET_ID_DESC', + StatTypesDistinctCountBlockRangeAsc = 'STAT_TYPES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StatTypesDistinctCountBlockRangeDesc = 'STAT_TYPES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StatTypesDistinctCountClaimIssuerIdAsc = 'STAT_TYPES_DISTINCT_COUNT_CLAIM_ISSUER_ID_ASC', + StatTypesDistinctCountClaimIssuerIdDesc = 'STAT_TYPES_DISTINCT_COUNT_CLAIM_ISSUER_ID_DESC', + StatTypesDistinctCountClaimTypeAsc = 'STAT_TYPES_DISTINCT_COUNT_CLAIM_TYPE_ASC', + StatTypesDistinctCountClaimTypeDesc = 'STAT_TYPES_DISTINCT_COUNT_CLAIM_TYPE_DESC', + StatTypesDistinctCountCreatedAtAsc = 'STAT_TYPES_DISTINCT_COUNT_CREATED_AT_ASC', + StatTypesDistinctCountCreatedAtDesc = 'STAT_TYPES_DISTINCT_COUNT_CREATED_AT_DESC', + StatTypesDistinctCountCreatedBlockIdAsc = 'STAT_TYPES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StatTypesDistinctCountCreatedBlockIdDesc = 'STAT_TYPES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StatTypesDistinctCountCustomClaimTypeIdAsc = 'STAT_TYPES_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesDistinctCountCustomClaimTypeIdDesc = 'STAT_TYPES_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesDistinctCountIdAsc = 'STAT_TYPES_DISTINCT_COUNT_ID_ASC', + StatTypesDistinctCountIdDesc = 'STAT_TYPES_DISTINCT_COUNT_ID_DESC', + StatTypesDistinctCountOpTypeAsc = 'STAT_TYPES_DISTINCT_COUNT_OP_TYPE_ASC', + StatTypesDistinctCountOpTypeDesc = 'STAT_TYPES_DISTINCT_COUNT_OP_TYPE_DESC', + StatTypesDistinctCountUpdatedBlockIdAsc = 'STAT_TYPES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StatTypesDistinctCountUpdatedBlockIdDesc = 'STAT_TYPES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StatTypesMaxAssetIdAsc = 'STAT_TYPES_MAX_ASSET_ID_ASC', + StatTypesMaxAssetIdDesc = 'STAT_TYPES_MAX_ASSET_ID_DESC', + StatTypesMaxBlockRangeAsc = 'STAT_TYPES_MAX_BLOCK_RANGE_ASC', + StatTypesMaxBlockRangeDesc = 'STAT_TYPES_MAX_BLOCK_RANGE_DESC', + StatTypesMaxClaimIssuerIdAsc = 'STAT_TYPES_MAX_CLAIM_ISSUER_ID_ASC', + StatTypesMaxClaimIssuerIdDesc = 'STAT_TYPES_MAX_CLAIM_ISSUER_ID_DESC', + StatTypesMaxClaimTypeAsc = 'STAT_TYPES_MAX_CLAIM_TYPE_ASC', + StatTypesMaxClaimTypeDesc = 'STAT_TYPES_MAX_CLAIM_TYPE_DESC', + StatTypesMaxCreatedAtAsc = 'STAT_TYPES_MAX_CREATED_AT_ASC', + StatTypesMaxCreatedAtDesc = 'STAT_TYPES_MAX_CREATED_AT_DESC', + StatTypesMaxCreatedBlockIdAsc = 'STAT_TYPES_MAX_CREATED_BLOCK_ID_ASC', + StatTypesMaxCreatedBlockIdDesc = 'STAT_TYPES_MAX_CREATED_BLOCK_ID_DESC', + StatTypesMaxCustomClaimTypeIdAsc = 'STAT_TYPES_MAX_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesMaxCustomClaimTypeIdDesc = 'STAT_TYPES_MAX_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesMaxIdAsc = 'STAT_TYPES_MAX_ID_ASC', + StatTypesMaxIdDesc = 'STAT_TYPES_MAX_ID_DESC', + StatTypesMaxOpTypeAsc = 'STAT_TYPES_MAX_OP_TYPE_ASC', + StatTypesMaxOpTypeDesc = 'STAT_TYPES_MAX_OP_TYPE_DESC', + StatTypesMaxUpdatedBlockIdAsc = 'STAT_TYPES_MAX_UPDATED_BLOCK_ID_ASC', + StatTypesMaxUpdatedBlockIdDesc = 'STAT_TYPES_MAX_UPDATED_BLOCK_ID_DESC', + StatTypesMinAssetIdAsc = 'STAT_TYPES_MIN_ASSET_ID_ASC', + StatTypesMinAssetIdDesc = 'STAT_TYPES_MIN_ASSET_ID_DESC', + StatTypesMinBlockRangeAsc = 'STAT_TYPES_MIN_BLOCK_RANGE_ASC', + StatTypesMinBlockRangeDesc = 'STAT_TYPES_MIN_BLOCK_RANGE_DESC', + StatTypesMinClaimIssuerIdAsc = 'STAT_TYPES_MIN_CLAIM_ISSUER_ID_ASC', + StatTypesMinClaimIssuerIdDesc = 'STAT_TYPES_MIN_CLAIM_ISSUER_ID_DESC', + StatTypesMinClaimTypeAsc = 'STAT_TYPES_MIN_CLAIM_TYPE_ASC', + StatTypesMinClaimTypeDesc = 'STAT_TYPES_MIN_CLAIM_TYPE_DESC', + StatTypesMinCreatedAtAsc = 'STAT_TYPES_MIN_CREATED_AT_ASC', + StatTypesMinCreatedAtDesc = 'STAT_TYPES_MIN_CREATED_AT_DESC', + StatTypesMinCreatedBlockIdAsc = 'STAT_TYPES_MIN_CREATED_BLOCK_ID_ASC', + StatTypesMinCreatedBlockIdDesc = 'STAT_TYPES_MIN_CREATED_BLOCK_ID_DESC', + StatTypesMinCustomClaimTypeIdAsc = 'STAT_TYPES_MIN_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesMinCustomClaimTypeIdDesc = 'STAT_TYPES_MIN_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesMinIdAsc = 'STAT_TYPES_MIN_ID_ASC', + StatTypesMinIdDesc = 'STAT_TYPES_MIN_ID_DESC', + StatTypesMinOpTypeAsc = 'STAT_TYPES_MIN_OP_TYPE_ASC', + StatTypesMinOpTypeDesc = 'STAT_TYPES_MIN_OP_TYPE_DESC', + StatTypesMinUpdatedBlockIdAsc = 'STAT_TYPES_MIN_UPDATED_BLOCK_ID_ASC', + StatTypesMinUpdatedBlockIdDesc = 'STAT_TYPES_MIN_UPDATED_BLOCK_ID_DESC', + StatTypesStddevPopulationAssetIdAsc = 'STAT_TYPES_STDDEV_POPULATION_ASSET_ID_ASC', + StatTypesStddevPopulationAssetIdDesc = 'STAT_TYPES_STDDEV_POPULATION_ASSET_ID_DESC', + StatTypesStddevPopulationBlockRangeAsc = 'STAT_TYPES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StatTypesStddevPopulationBlockRangeDesc = 'STAT_TYPES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StatTypesStddevPopulationClaimIssuerIdAsc = 'STAT_TYPES_STDDEV_POPULATION_CLAIM_ISSUER_ID_ASC', + StatTypesStddevPopulationClaimIssuerIdDesc = 'STAT_TYPES_STDDEV_POPULATION_CLAIM_ISSUER_ID_DESC', + StatTypesStddevPopulationClaimTypeAsc = 'STAT_TYPES_STDDEV_POPULATION_CLAIM_TYPE_ASC', + StatTypesStddevPopulationClaimTypeDesc = 'STAT_TYPES_STDDEV_POPULATION_CLAIM_TYPE_DESC', + StatTypesStddevPopulationCreatedAtAsc = 'STAT_TYPES_STDDEV_POPULATION_CREATED_AT_ASC', + StatTypesStddevPopulationCreatedAtDesc = 'STAT_TYPES_STDDEV_POPULATION_CREATED_AT_DESC', + StatTypesStddevPopulationCreatedBlockIdAsc = 'STAT_TYPES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StatTypesStddevPopulationCreatedBlockIdDesc = 'STAT_TYPES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StatTypesStddevPopulationCustomClaimTypeIdAsc = 'STAT_TYPES_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesStddevPopulationCustomClaimTypeIdDesc = 'STAT_TYPES_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesStddevPopulationIdAsc = 'STAT_TYPES_STDDEV_POPULATION_ID_ASC', + StatTypesStddevPopulationIdDesc = 'STAT_TYPES_STDDEV_POPULATION_ID_DESC', + StatTypesStddevPopulationOpTypeAsc = 'STAT_TYPES_STDDEV_POPULATION_OP_TYPE_ASC', + StatTypesStddevPopulationOpTypeDesc = 'STAT_TYPES_STDDEV_POPULATION_OP_TYPE_DESC', + StatTypesStddevPopulationUpdatedBlockIdAsc = 'STAT_TYPES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StatTypesStddevPopulationUpdatedBlockIdDesc = 'STAT_TYPES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StatTypesStddevSampleAssetIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_ASSET_ID_ASC', + StatTypesStddevSampleAssetIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_ASSET_ID_DESC', + StatTypesStddevSampleBlockRangeAsc = 'STAT_TYPES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StatTypesStddevSampleBlockRangeDesc = 'STAT_TYPES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StatTypesStddevSampleClaimIssuerIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_CLAIM_ISSUER_ID_ASC', + StatTypesStddevSampleClaimIssuerIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_CLAIM_ISSUER_ID_DESC', + StatTypesStddevSampleClaimTypeAsc = 'STAT_TYPES_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + StatTypesStddevSampleClaimTypeDesc = 'STAT_TYPES_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + StatTypesStddevSampleCreatedAtAsc = 'STAT_TYPES_STDDEV_SAMPLE_CREATED_AT_ASC', + StatTypesStddevSampleCreatedAtDesc = 'STAT_TYPES_STDDEV_SAMPLE_CREATED_AT_DESC', + StatTypesStddevSampleCreatedBlockIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StatTypesStddevSampleCreatedBlockIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StatTypesStddevSampleCustomClaimTypeIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesStddevSampleCustomClaimTypeIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesStddevSampleIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_ID_ASC', + StatTypesStddevSampleIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_ID_DESC', + StatTypesStddevSampleOpTypeAsc = 'STAT_TYPES_STDDEV_SAMPLE_OP_TYPE_ASC', + StatTypesStddevSampleOpTypeDesc = 'STAT_TYPES_STDDEV_SAMPLE_OP_TYPE_DESC', + StatTypesStddevSampleUpdatedBlockIdAsc = 'STAT_TYPES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StatTypesStddevSampleUpdatedBlockIdDesc = 'STAT_TYPES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StatTypesSumAssetIdAsc = 'STAT_TYPES_SUM_ASSET_ID_ASC', + StatTypesSumAssetIdDesc = 'STAT_TYPES_SUM_ASSET_ID_DESC', + StatTypesSumBlockRangeAsc = 'STAT_TYPES_SUM_BLOCK_RANGE_ASC', + StatTypesSumBlockRangeDesc = 'STAT_TYPES_SUM_BLOCK_RANGE_DESC', + StatTypesSumClaimIssuerIdAsc = 'STAT_TYPES_SUM_CLAIM_ISSUER_ID_ASC', + StatTypesSumClaimIssuerIdDesc = 'STAT_TYPES_SUM_CLAIM_ISSUER_ID_DESC', + StatTypesSumClaimTypeAsc = 'STAT_TYPES_SUM_CLAIM_TYPE_ASC', + StatTypesSumClaimTypeDesc = 'STAT_TYPES_SUM_CLAIM_TYPE_DESC', + StatTypesSumCreatedAtAsc = 'STAT_TYPES_SUM_CREATED_AT_ASC', + StatTypesSumCreatedAtDesc = 'STAT_TYPES_SUM_CREATED_AT_DESC', + StatTypesSumCreatedBlockIdAsc = 'STAT_TYPES_SUM_CREATED_BLOCK_ID_ASC', + StatTypesSumCreatedBlockIdDesc = 'STAT_TYPES_SUM_CREATED_BLOCK_ID_DESC', + StatTypesSumCustomClaimTypeIdAsc = 'STAT_TYPES_SUM_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesSumCustomClaimTypeIdDesc = 'STAT_TYPES_SUM_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesSumIdAsc = 'STAT_TYPES_SUM_ID_ASC', + StatTypesSumIdDesc = 'STAT_TYPES_SUM_ID_DESC', + StatTypesSumOpTypeAsc = 'STAT_TYPES_SUM_OP_TYPE_ASC', + StatTypesSumOpTypeDesc = 'STAT_TYPES_SUM_OP_TYPE_DESC', + StatTypesSumUpdatedBlockIdAsc = 'STAT_TYPES_SUM_UPDATED_BLOCK_ID_ASC', + StatTypesSumUpdatedBlockIdDesc = 'STAT_TYPES_SUM_UPDATED_BLOCK_ID_DESC', + StatTypesVariancePopulationAssetIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_ASSET_ID_ASC', + StatTypesVariancePopulationAssetIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_ASSET_ID_DESC', + StatTypesVariancePopulationBlockRangeAsc = 'STAT_TYPES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StatTypesVariancePopulationBlockRangeDesc = 'STAT_TYPES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StatTypesVariancePopulationClaimIssuerIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_CLAIM_ISSUER_ID_ASC', + StatTypesVariancePopulationClaimIssuerIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_CLAIM_ISSUER_ID_DESC', + StatTypesVariancePopulationClaimTypeAsc = 'STAT_TYPES_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + StatTypesVariancePopulationClaimTypeDesc = 'STAT_TYPES_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + StatTypesVariancePopulationCreatedAtAsc = 'STAT_TYPES_VARIANCE_POPULATION_CREATED_AT_ASC', + StatTypesVariancePopulationCreatedAtDesc = 'STAT_TYPES_VARIANCE_POPULATION_CREATED_AT_DESC', + StatTypesVariancePopulationCreatedBlockIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StatTypesVariancePopulationCreatedBlockIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StatTypesVariancePopulationCustomClaimTypeIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesVariancePopulationCustomClaimTypeIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesVariancePopulationIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_ID_ASC', + StatTypesVariancePopulationIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_ID_DESC', + StatTypesVariancePopulationOpTypeAsc = 'STAT_TYPES_VARIANCE_POPULATION_OP_TYPE_ASC', + StatTypesVariancePopulationOpTypeDesc = 'STAT_TYPES_VARIANCE_POPULATION_OP_TYPE_DESC', + StatTypesVariancePopulationUpdatedBlockIdAsc = 'STAT_TYPES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StatTypesVariancePopulationUpdatedBlockIdDesc = 'STAT_TYPES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StatTypesVarianceSampleAssetIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_ASSET_ID_ASC', + StatTypesVarianceSampleAssetIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_ASSET_ID_DESC', + StatTypesVarianceSampleBlockRangeAsc = 'STAT_TYPES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StatTypesVarianceSampleBlockRangeDesc = 'STAT_TYPES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StatTypesVarianceSampleClaimIssuerIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_ASC', + StatTypesVarianceSampleClaimIssuerIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_DESC', + StatTypesVarianceSampleClaimTypeAsc = 'STAT_TYPES_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + StatTypesVarianceSampleClaimTypeDesc = 'STAT_TYPES_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + StatTypesVarianceSampleCreatedAtAsc = 'STAT_TYPES_VARIANCE_SAMPLE_CREATED_AT_ASC', + StatTypesVarianceSampleCreatedAtDesc = 'STAT_TYPES_VARIANCE_SAMPLE_CREATED_AT_DESC', + StatTypesVarianceSampleCreatedBlockIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StatTypesVarianceSampleCreatedBlockIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StatTypesVarianceSampleCustomClaimTypeIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesVarianceSampleCustomClaimTypeIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesVarianceSampleIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_ID_ASC', + StatTypesVarianceSampleIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_ID_DESC', + StatTypesVarianceSampleOpTypeAsc = 'STAT_TYPES_VARIANCE_SAMPLE_OP_TYPE_ASC', + StatTypesVarianceSampleOpTypeDesc = 'STAT_TYPES_VARIANCE_SAMPLE_OP_TYPE_DESC', + StatTypesVarianceSampleUpdatedBlockIdAsc = 'STAT_TYPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StatTypesVarianceSampleUpdatedBlockIdDesc = 'STAT_TYPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** A filter to be used against Datetime fields. All fields are combined with a logical ‘and.’ */ +export type DatetimeFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type Debug = Node & { + __typename?: 'Debug'; + context?: Maybe; + createdAt?: Maybe; + id: Scalars['String']['output']; + line?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; +}; + +export type DebugAggregates = { + __typename?: 'DebugAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +export type DebugDistinctCountAggregates = { + __typename?: 'DebugDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of context across the matching connection */ + context?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of line across the matching connection */ + line?: Maybe; +}; + +/** A filter to be used against `Debug` object types. All fields are combined with a logical ‘and.’ */ +export type DebugFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `context` field. */ + context?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `line` field. */ + line?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; +}; + +/** A connection to a list of `Debug` values. */ +export type DebugsConnection = { + __typename?: 'DebugsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Debug` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Debug` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Debug` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Debug` values. */ +export type DebugsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Debug` edge in the connection. */ +export type DebugsEdge = { + __typename?: 'DebugsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Debug` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Debug` for usage during aggregation. */ +export enum DebugsGroupBy { + Context = 'CONTEXT', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + Id = 'ID', + Line = 'LINE', +} + +export type DebugsHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type DebugsHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `Debug` aggregates. */ +export type DebugsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type DebugsHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type DebugsHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type DebugsHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type DebugsHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type DebugsHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type DebugsHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type DebugsHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `Debug`. */ +export enum DebugsOrderBy { + ContextAsc = 'CONTEXT_ASC', + ContextDesc = 'CONTEXT_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + LineAsc = 'LINE_ASC', + LineDesc = 'LINE_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', +} + +export type Distribution = Node & { + __typename?: 'Distribution'; + amount: Scalars['BigFloat']['output']; + /** Reads a single `Asset` that is related to this `Distribution`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionPaymentDistributionIdAndCreatedBlockId: DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionPaymentDistributionIdAndUpdatedBlockId: DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Distribution`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + currency: Scalars['String']['output']; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPayments: DistributionPaymentsConnection; + expiresAt?: Maybe; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByDistributionPaymentDistributionIdAndTargetId: DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyConnection; + /** Reads a single `Identity` that is related to this `Distribution`. */ + identity?: Maybe; + identityId: Scalars['String']['output']; + localId: Scalars['Int']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + paymentAt: Scalars['BigFloat']['output']; + perShare: Scalars['BigFloat']['output']; + /** Reads a single `Portfolio` that is related to this `Distribution`. */ + portfolio?: Maybe; + portfolioId: Scalars['String']['output']; + remaining: Scalars['BigFloat']['output']; + taxes: Scalars['BigFloat']['output']; + /** Reads a single `Block` that is related to this `Distribution`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type DistributionDistributionPaymentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type DistributionAggregates = { + __typename?: 'DistributionAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Distribution` object types. */ +export type DistributionAggregatesFilter = { + /** Mean average aggregate over matching `Distribution` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Distribution` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Distribution` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Distribution` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Distribution` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Distribution` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Distribution` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Distribution` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Distribution` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Distribution` objects. */ + varianceSample?: InputMaybe; +}; + +export type DistributionAverageAggregateFilter = { + amount?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionAverageAggregates = { + __typename?: 'DistributionAverageAggregates'; + /** Mean average of amount across the matching connection */ + amount?: Maybe; + /** Mean average of expiresAt across the matching connection */ + expiresAt?: Maybe; + /** Mean average of localId across the matching connection */ + localId?: Maybe; + /** Mean average of paymentAt across the matching connection */ + paymentAt?: Maybe; + /** Mean average of perShare across the matching connection */ + perShare?: Maybe; + /** Mean average of remaining across the matching connection */ + remaining?: Maybe; + /** Mean average of taxes across the matching connection */ + taxes?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByCreatedBlockId: DistributionPaymentsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type DistributionBlocksByDistributionPaymentDistributionIdAndCreatedBlockIdManyToManyEdgeDistributionPaymentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByUpdatedBlockId: DistributionPaymentsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type DistributionBlocksByDistributionPaymentDistributionIdAndUpdatedBlockIdManyToManyEdgeDistributionPaymentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type DistributionDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + amount?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + currency?: InputMaybe; + expiresAt?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + portfolioId?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type DistributionDistinctCountAggregates = { + __typename?: 'DistributionDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of currency across the matching connection */ + currency?: Maybe; + /** Distinct count of expiresAt across the matching connection */ + expiresAt?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of localId across the matching connection */ + localId?: Maybe; + /** Distinct count of paymentAt across the matching connection */ + paymentAt?: Maybe; + /** Distinct count of perShare across the matching connection */ + perShare?: Maybe; + /** Distinct count of portfolioId across the matching connection */ + portfolioId?: Maybe; + /** Distinct count of remaining across the matching connection */ + remaining?: Maybe; + /** Distinct count of taxes across the matching connection */ + taxes?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `Distribution` object types. All fields are combined with a logical ‘and.’ */ +export type DistributionFilter = { + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `currency` field. */ + currency?: InputMaybe; + /** Filter by the object’s `distributionPayments` relation. */ + distributionPayments?: InputMaybe; + /** Some related `distributionPayments` exist. */ + distributionPaymentsExist?: InputMaybe; + /** Filter by the object’s `expiresAt` field. */ + expiresAt?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` relation. */ + identity?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Filter by the object’s `localId` field. */ + localId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `paymentAt` field. */ + paymentAt?: InputMaybe; + /** Filter by the object’s `perShare` field. */ + perShare?: InputMaybe; + /** Filter by the object’s `portfolio` relation. */ + portfolio?: InputMaybe; + /** Filter by the object’s `portfolioId` field. */ + portfolioId?: InputMaybe; + /** Filter by the object’s `remaining` field. */ + remaining?: InputMaybe; + /** Filter by the object’s `taxes` field. */ + taxes?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ +export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyConnection = + { + __typename?: 'DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Identity` values, with data from `DistributionPayment`. */ +export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `DistributionPayment`. */ +export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyEdge = { + __typename?: 'DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByTargetId: DistributionPaymentsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `DistributionPayment`. */ +export type DistributionIdentitiesByDistributionPaymentDistributionIdAndTargetIdManyToManyEdgeDistributionPaymentsByTargetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type DistributionMaxAggregateFilter = { + amount?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionMaxAggregates = { + __typename?: 'DistributionMaxAggregates'; + /** Maximum of amount across the matching connection */ + amount?: Maybe; + /** Maximum of expiresAt across the matching connection */ + expiresAt?: Maybe; + /** Maximum of localId across the matching connection */ + localId?: Maybe; + /** Maximum of paymentAt across the matching connection */ + paymentAt?: Maybe; + /** Maximum of perShare across the matching connection */ + perShare?: Maybe; + /** Maximum of remaining across the matching connection */ + remaining?: Maybe; + /** Maximum of taxes across the matching connection */ + taxes?: Maybe; +}; + +export type DistributionMinAggregateFilter = { + amount?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionMinAggregates = { + __typename?: 'DistributionMinAggregates'; + /** Minimum of amount across the matching connection */ + amount?: Maybe; + /** Minimum of expiresAt across the matching connection */ + expiresAt?: Maybe; + /** Minimum of localId across the matching connection */ + localId?: Maybe; + /** Minimum of paymentAt across the matching connection */ + paymentAt?: Maybe; + /** Minimum of perShare across the matching connection */ + perShare?: Maybe; + /** Minimum of remaining across the matching connection */ + remaining?: Maybe; + /** Minimum of taxes across the matching connection */ + taxes?: Maybe; +}; + +export type DistributionPayment = Node & { + __typename?: 'DistributionPayment'; + amount: Scalars['BigFloat']['output']; + amountAfterTax: Scalars['BigFloat']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `DistributionPayment`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + /** Reads a single `Distribution` that is related to this `DistributionPayment`. */ + distribution?: Maybe; + distributionId: Scalars['String']['output']; + eventId: EventIdEnum; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + reclaimed: Scalars['Boolean']['output']; + /** Reads a single `Identity` that is related to this `DistributionPayment`. */ + target?: Maybe; + targetId: Scalars['String']['output']; + tax: Scalars['BigFloat']['output']; + /** Reads a single `Block` that is related to this `DistributionPayment`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type DistributionPaymentAggregates = { + __typename?: 'DistributionPaymentAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `DistributionPayment` object types. */ +export type DistributionPaymentAggregatesFilter = { + /** Mean average aggregate over matching `DistributionPayment` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `DistributionPayment` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `DistributionPayment` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `DistributionPayment` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `DistributionPayment` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `DistributionPayment` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `DistributionPayment` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `DistributionPayment` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `DistributionPayment` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `DistributionPayment` objects. */ + varianceSample?: InputMaybe; +}; + +export type DistributionPaymentAverageAggregateFilter = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentAverageAggregates = { + __typename?: 'DistributionPaymentAverageAggregates'; + /** Mean average of amount across the matching connection */ + amount?: Maybe; + /** Mean average of amountAfterTax across the matching connection */ + amountAfterTax?: Maybe; + /** Mean average of tax across the matching connection */ + tax?: Maybe; +}; + +export type DistributionPaymentDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + distributionId?: InputMaybe; + eventId?: InputMaybe; + id?: InputMaybe; + reclaimed?: InputMaybe; + targetId?: InputMaybe; + tax?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type DistributionPaymentDistinctCountAggregates = { + __typename?: 'DistributionPaymentDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of amountAfterTax across the matching connection */ + amountAfterTax?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of distributionId across the matching connection */ + distributionId?: Maybe; + /** Distinct count of eventId across the matching connection */ + eventId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of reclaimed across the matching connection */ + reclaimed?: Maybe; + /** Distinct count of targetId across the matching connection */ + targetId?: Maybe; + /** Distinct count of tax across the matching connection */ + tax?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `DistributionPayment` object types. All fields are combined with a logical ‘and.’ */ +export type DistributionPaymentFilter = { + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Filter by the object’s `amountAfterTax` field. */ + amountAfterTax?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `distribution` relation. */ + distribution?: InputMaybe; + /** Filter by the object’s `distributionId` field. */ + distributionId?: InputMaybe; + /** Filter by the object’s `eventId` field. */ + eventId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `reclaimed` field. */ + reclaimed?: InputMaybe; + /** Filter by the object’s `target` relation. */ + target?: InputMaybe; + /** Filter by the object’s `targetId` field. */ + targetId?: InputMaybe; + /** Filter by the object’s `tax` field. */ + tax?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type DistributionPaymentMaxAggregateFilter = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentMaxAggregates = { + __typename?: 'DistributionPaymentMaxAggregates'; + /** Maximum of amount across the matching connection */ + amount?: Maybe; + /** Maximum of amountAfterTax across the matching connection */ + amountAfterTax?: Maybe; + /** Maximum of tax across the matching connection */ + tax?: Maybe; +}; + +export type DistributionPaymentMinAggregateFilter = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentMinAggregates = { + __typename?: 'DistributionPaymentMinAggregates'; + /** Minimum of amount across the matching connection */ + amount?: Maybe; + /** Minimum of amountAfterTax across the matching connection */ + amountAfterTax?: Maybe; + /** Minimum of tax across the matching connection */ + tax?: Maybe; +}; + +export type DistributionPaymentStddevPopulationAggregateFilter = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentStddevPopulationAggregates = { + __typename?: 'DistributionPaymentStddevPopulationAggregates'; + /** Population standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Population standard deviation of amountAfterTax across the matching connection */ + amountAfterTax?: Maybe; + /** Population standard deviation of tax across the matching connection */ + tax?: Maybe; +}; + +export type DistributionPaymentStddevSampleAggregateFilter = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentStddevSampleAggregates = { + __typename?: 'DistributionPaymentStddevSampleAggregates'; + /** Sample standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Sample standard deviation of amountAfterTax across the matching connection */ + amountAfterTax?: Maybe; + /** Sample standard deviation of tax across the matching connection */ + tax?: Maybe; +}; + +export type DistributionPaymentSumAggregateFilter = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentSumAggregates = { + __typename?: 'DistributionPaymentSumAggregates'; + /** Sum of amount across the matching connection */ + amount: Scalars['BigFloat']['output']; + /** Sum of amountAfterTax across the matching connection */ + amountAfterTax: Scalars['BigFloat']['output']; + /** Sum of tax across the matching connection */ + tax: Scalars['BigFloat']['output']; +}; + +export type DistributionPaymentVariancePopulationAggregateFilter = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentVariancePopulationAggregates = { + __typename?: 'DistributionPaymentVariancePopulationAggregates'; + /** Population variance of amount across the matching connection */ + amount?: Maybe; + /** Population variance of amountAfterTax across the matching connection */ + amountAfterTax?: Maybe; + /** Population variance of tax across the matching connection */ + tax?: Maybe; +}; + +export type DistributionPaymentVarianceSampleAggregateFilter = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentVarianceSampleAggregates = { + __typename?: 'DistributionPaymentVarianceSampleAggregates'; + /** Sample variance of amount across the matching connection */ + amount?: Maybe; + /** Sample variance of amountAfterTax across the matching connection */ + amountAfterTax?: Maybe; + /** Sample variance of tax across the matching connection */ + tax?: Maybe; +}; + +/** A connection to a list of `DistributionPayment` values. */ +export type DistributionPaymentsConnection = { + __typename?: 'DistributionPaymentsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `DistributionPayment` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `DistributionPayment` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `DistributionPayment` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `DistributionPayment` values. */ +export type DistributionPaymentsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `DistributionPayment` edge in the connection. */ +export type DistributionPaymentsEdge = { + __typename?: 'DistributionPaymentsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `DistributionPayment` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `DistributionPayment` for usage during aggregation. */ +export enum DistributionPaymentsGroupBy { + Amount = 'AMOUNT', + AmountAfterTax = 'AMOUNT_AFTER_TAX', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + DistributionId = 'DISTRIBUTION_ID', + EventId = 'EVENT_ID', + Id = 'ID', + Reclaimed = 'RECLAIMED', + TargetId = 'TARGET_ID', + Tax = 'TAX', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type DistributionPaymentsHavingAverageInput = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentsHavingDistinctCountInput = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + tax?: InputMaybe; +}; + +/** Conditions for `DistributionPayment` aggregates. */ +export type DistributionPaymentsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type DistributionPaymentsHavingMaxInput = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentsHavingMinInput = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentsHavingStddevPopulationInput = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentsHavingStddevSampleInput = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentsHavingSumInput = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentsHavingVariancePopulationInput = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + tax?: InputMaybe; +}; + +export type DistributionPaymentsHavingVarianceSampleInput = { + amount?: InputMaybe; + amountAfterTax?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + tax?: InputMaybe; +}; + +/** Methods to use when ordering `DistributionPayment`. */ +export enum DistributionPaymentsOrderBy { + AmountAfterTaxAsc = 'AMOUNT_AFTER_TAX_ASC', + AmountAfterTaxDesc = 'AMOUNT_AFTER_TAX_DESC', + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + DistributionIdAsc = 'DISTRIBUTION_ID_ASC', + DistributionIdDesc = 'DISTRIBUTION_ID_DESC', + EventIdAsc = 'EVENT_ID_ASC', + EventIdDesc = 'EVENT_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ReclaimedAsc = 'RECLAIMED_ASC', + ReclaimedDesc = 'RECLAIMED_DESC', + TargetIdAsc = 'TARGET_ID_ASC', + TargetIdDesc = 'TARGET_ID_DESC', + TaxAsc = 'TAX_ASC', + TaxDesc = 'TAX_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type DistributionStddevPopulationAggregateFilter = { + amount?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionStddevPopulationAggregates = { + __typename?: 'DistributionStddevPopulationAggregates'; + /** Population standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Population standard deviation of expiresAt across the matching connection */ + expiresAt?: Maybe; + /** Population standard deviation of localId across the matching connection */ + localId?: Maybe; + /** Population standard deviation of paymentAt across the matching connection */ + paymentAt?: Maybe; + /** Population standard deviation of perShare across the matching connection */ + perShare?: Maybe; + /** Population standard deviation of remaining across the matching connection */ + remaining?: Maybe; + /** Population standard deviation of taxes across the matching connection */ + taxes?: Maybe; +}; + +export type DistributionStddevSampleAggregateFilter = { + amount?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionStddevSampleAggregates = { + __typename?: 'DistributionStddevSampleAggregates'; + /** Sample standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Sample standard deviation of expiresAt across the matching connection */ + expiresAt?: Maybe; + /** Sample standard deviation of localId across the matching connection */ + localId?: Maybe; + /** Sample standard deviation of paymentAt across the matching connection */ + paymentAt?: Maybe; + /** Sample standard deviation of perShare across the matching connection */ + perShare?: Maybe; + /** Sample standard deviation of remaining across the matching connection */ + remaining?: Maybe; + /** Sample standard deviation of taxes across the matching connection */ + taxes?: Maybe; +}; + +export type DistributionSumAggregateFilter = { + amount?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionSumAggregates = { + __typename?: 'DistributionSumAggregates'; + /** Sum of amount across the matching connection */ + amount: Scalars['BigFloat']['output']; + /** Sum of expiresAt across the matching connection */ + expiresAt: Scalars['BigFloat']['output']; + /** Sum of localId across the matching connection */ + localId: Scalars['BigInt']['output']; + /** Sum of paymentAt across the matching connection */ + paymentAt: Scalars['BigFloat']['output']; + /** Sum of perShare across the matching connection */ + perShare: Scalars['BigFloat']['output']; + /** Sum of remaining across the matching connection */ + remaining: Scalars['BigFloat']['output']; + /** Sum of taxes across the matching connection */ + taxes: Scalars['BigFloat']['output']; +}; + +/** A filter to be used against many `DistributionPayment` object types. All fields are combined with a logical ‘and.’ */ +export type DistributionToManyDistributionPaymentFilter = { + /** Aggregates across related `DistributionPayment` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `DistributionPayment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `DistributionPayment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `DistributionPayment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type DistributionVariancePopulationAggregateFilter = { + amount?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionVariancePopulationAggregates = { + __typename?: 'DistributionVariancePopulationAggregates'; + /** Population variance of amount across the matching connection */ + amount?: Maybe; + /** Population variance of expiresAt across the matching connection */ + expiresAt?: Maybe; + /** Population variance of localId across the matching connection */ + localId?: Maybe; + /** Population variance of paymentAt across the matching connection */ + paymentAt?: Maybe; + /** Population variance of perShare across the matching connection */ + perShare?: Maybe; + /** Population variance of remaining across the matching connection */ + remaining?: Maybe; + /** Population variance of taxes across the matching connection */ + taxes?: Maybe; +}; + +export type DistributionVarianceSampleAggregateFilter = { + amount?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionVarianceSampleAggregates = { + __typename?: 'DistributionVarianceSampleAggregates'; + /** Sample variance of amount across the matching connection */ + amount?: Maybe; + /** Sample variance of expiresAt across the matching connection */ + expiresAt?: Maybe; + /** Sample variance of localId across the matching connection */ + localId?: Maybe; + /** Sample variance of paymentAt across the matching connection */ + paymentAt?: Maybe; + /** Sample variance of perShare across the matching connection */ + perShare?: Maybe; + /** Sample variance of remaining across the matching connection */ + remaining?: Maybe; + /** Sample variance of taxes across the matching connection */ + taxes?: Maybe; +}; + +/** A connection to a list of `Distribution` values. */ +export type DistributionsConnection = { + __typename?: 'DistributionsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Distribution` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Distribution` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Distribution` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Distribution` values. */ +export type DistributionsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Distribution` edge in the connection. */ +export type DistributionsEdge = { + __typename?: 'DistributionsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Distribution` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Distribution` for usage during aggregation. */ +export enum DistributionsGroupBy { + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Currency = 'CURRENCY', + ExpiresAt = 'EXPIRES_AT', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + LocalId = 'LOCAL_ID', + PaymentAt = 'PAYMENT_AT', + PerShare = 'PER_SHARE', + PortfolioId = 'PORTFOLIO_ID', + Remaining = 'REMAINING', + Taxes = 'TAXES', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type DistributionsHavingAverageInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionsHavingDistinctCountInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +/** Conditions for `Distribution` aggregates. */ +export type DistributionsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type DistributionsHavingMaxInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionsHavingMinInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionsHavingStddevPopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionsHavingStddevSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionsHavingSumInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionsHavingVariancePopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +export type DistributionsHavingVarianceSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + expiresAt?: InputMaybe; + localId?: InputMaybe; + paymentAt?: InputMaybe; + perShare?: InputMaybe; + remaining?: InputMaybe; + taxes?: InputMaybe; +}; + +/** Methods to use when ordering `Distribution`. */ +export enum DistributionsOrderBy { + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + CurrencyAsc = 'CURRENCY_ASC', + CurrencyDesc = 'CURRENCY_DESC', + DistributionPaymentsAverageAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsAverageAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsAverageAmountAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_AMOUNT_ASC', + DistributionPaymentsAverageAmountDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_AMOUNT_DESC', + DistributionPaymentsAverageBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_BLOCK_RANGE_ASC', + DistributionPaymentsAverageBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_BLOCK_RANGE_DESC', + DistributionPaymentsAverageCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_CREATED_AT_ASC', + DistributionPaymentsAverageCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_CREATED_AT_DESC', + DistributionPaymentsAverageCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsAverageCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsAverageDatetimeAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_DATETIME_ASC', + DistributionPaymentsAverageDatetimeDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_DATETIME_DESC', + DistributionPaymentsAverageDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_DISTRIBUTION_ID_ASC', + DistributionPaymentsAverageDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_DISTRIBUTION_ID_DESC', + DistributionPaymentsAverageEventIdAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_EVENT_ID_ASC', + DistributionPaymentsAverageEventIdDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_EVENT_ID_DESC', + DistributionPaymentsAverageIdAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_ID_ASC', + DistributionPaymentsAverageIdDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_ID_DESC', + DistributionPaymentsAverageReclaimedAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_RECLAIMED_ASC', + DistributionPaymentsAverageReclaimedDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_RECLAIMED_DESC', + DistributionPaymentsAverageTargetIdAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_TARGET_ID_ASC', + DistributionPaymentsAverageTargetIdDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_TARGET_ID_DESC', + DistributionPaymentsAverageTaxAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_TAX_ASC', + DistributionPaymentsAverageTaxDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_TAX_DESC', + DistributionPaymentsAverageUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_AVERAGE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsAverageUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_AVERAGE_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsCountAsc = 'DISTRIBUTION_PAYMENTS_COUNT_ASC', + DistributionPaymentsCountDesc = 'DISTRIBUTION_PAYMENTS_COUNT_DESC', + DistributionPaymentsDistinctCountAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsDistinctCountAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsDistinctCountAmountAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_AMOUNT_ASC', + DistributionPaymentsDistinctCountAmountDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_AMOUNT_DESC', + DistributionPaymentsDistinctCountBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + DistributionPaymentsDistinctCountBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + DistributionPaymentsDistinctCountCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_CREATED_AT_ASC', + DistributionPaymentsDistinctCountCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_CREATED_AT_DESC', + DistributionPaymentsDistinctCountCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + DistributionPaymentsDistinctCountCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + DistributionPaymentsDistinctCountDatetimeAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_DATETIME_ASC', + DistributionPaymentsDistinctCountDatetimeDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_DATETIME_DESC', + DistributionPaymentsDistinctCountDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_DISTRIBUTION_ID_ASC', + DistributionPaymentsDistinctCountDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_DISTRIBUTION_ID_DESC', + DistributionPaymentsDistinctCountEventIdAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_EVENT_ID_ASC', + DistributionPaymentsDistinctCountEventIdDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_EVENT_ID_DESC', + DistributionPaymentsDistinctCountIdAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_ID_ASC', + DistributionPaymentsDistinctCountIdDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_ID_DESC', + DistributionPaymentsDistinctCountReclaimedAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_RECLAIMED_ASC', + DistributionPaymentsDistinctCountReclaimedDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_RECLAIMED_DESC', + DistributionPaymentsDistinctCountTargetIdAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_TARGET_ID_ASC', + DistributionPaymentsDistinctCountTargetIdDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_TARGET_ID_DESC', + DistributionPaymentsDistinctCountTaxAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_TAX_ASC', + DistributionPaymentsDistinctCountTaxDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_TAX_DESC', + DistributionPaymentsDistinctCountUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsDistinctCountUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsMaxAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_MAX_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsMaxAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_MAX_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsMaxAmountAsc = 'DISTRIBUTION_PAYMENTS_MAX_AMOUNT_ASC', + DistributionPaymentsMaxAmountDesc = 'DISTRIBUTION_PAYMENTS_MAX_AMOUNT_DESC', + DistributionPaymentsMaxBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_MAX_BLOCK_RANGE_ASC', + DistributionPaymentsMaxBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_MAX_BLOCK_RANGE_DESC', + DistributionPaymentsMaxCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_MAX_CREATED_AT_ASC', + DistributionPaymentsMaxCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_MAX_CREATED_AT_DESC', + DistributionPaymentsMaxCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_MAX_CREATED_BLOCK_ID_ASC', + DistributionPaymentsMaxCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_MAX_CREATED_BLOCK_ID_DESC', + DistributionPaymentsMaxDatetimeAsc = 'DISTRIBUTION_PAYMENTS_MAX_DATETIME_ASC', + DistributionPaymentsMaxDatetimeDesc = 'DISTRIBUTION_PAYMENTS_MAX_DATETIME_DESC', + DistributionPaymentsMaxDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_MAX_DISTRIBUTION_ID_ASC', + DistributionPaymentsMaxDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_MAX_DISTRIBUTION_ID_DESC', + DistributionPaymentsMaxEventIdAsc = 'DISTRIBUTION_PAYMENTS_MAX_EVENT_ID_ASC', + DistributionPaymentsMaxEventIdDesc = 'DISTRIBUTION_PAYMENTS_MAX_EVENT_ID_DESC', + DistributionPaymentsMaxIdAsc = 'DISTRIBUTION_PAYMENTS_MAX_ID_ASC', + DistributionPaymentsMaxIdDesc = 'DISTRIBUTION_PAYMENTS_MAX_ID_DESC', + DistributionPaymentsMaxReclaimedAsc = 'DISTRIBUTION_PAYMENTS_MAX_RECLAIMED_ASC', + DistributionPaymentsMaxReclaimedDesc = 'DISTRIBUTION_PAYMENTS_MAX_RECLAIMED_DESC', + DistributionPaymentsMaxTargetIdAsc = 'DISTRIBUTION_PAYMENTS_MAX_TARGET_ID_ASC', + DistributionPaymentsMaxTargetIdDesc = 'DISTRIBUTION_PAYMENTS_MAX_TARGET_ID_DESC', + DistributionPaymentsMaxTaxAsc = 'DISTRIBUTION_PAYMENTS_MAX_TAX_ASC', + DistributionPaymentsMaxTaxDesc = 'DISTRIBUTION_PAYMENTS_MAX_TAX_DESC', + DistributionPaymentsMaxUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_MAX_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsMaxUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_MAX_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsMinAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_MIN_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsMinAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_MIN_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsMinAmountAsc = 'DISTRIBUTION_PAYMENTS_MIN_AMOUNT_ASC', + DistributionPaymentsMinAmountDesc = 'DISTRIBUTION_PAYMENTS_MIN_AMOUNT_DESC', + DistributionPaymentsMinBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_MIN_BLOCK_RANGE_ASC', + DistributionPaymentsMinBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_MIN_BLOCK_RANGE_DESC', + DistributionPaymentsMinCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_MIN_CREATED_AT_ASC', + DistributionPaymentsMinCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_MIN_CREATED_AT_DESC', + DistributionPaymentsMinCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_MIN_CREATED_BLOCK_ID_ASC', + DistributionPaymentsMinCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_MIN_CREATED_BLOCK_ID_DESC', + DistributionPaymentsMinDatetimeAsc = 'DISTRIBUTION_PAYMENTS_MIN_DATETIME_ASC', + DistributionPaymentsMinDatetimeDesc = 'DISTRIBUTION_PAYMENTS_MIN_DATETIME_DESC', + DistributionPaymentsMinDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_MIN_DISTRIBUTION_ID_ASC', + DistributionPaymentsMinDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_MIN_DISTRIBUTION_ID_DESC', + DistributionPaymentsMinEventIdAsc = 'DISTRIBUTION_PAYMENTS_MIN_EVENT_ID_ASC', + DistributionPaymentsMinEventIdDesc = 'DISTRIBUTION_PAYMENTS_MIN_EVENT_ID_DESC', + DistributionPaymentsMinIdAsc = 'DISTRIBUTION_PAYMENTS_MIN_ID_ASC', + DistributionPaymentsMinIdDesc = 'DISTRIBUTION_PAYMENTS_MIN_ID_DESC', + DistributionPaymentsMinReclaimedAsc = 'DISTRIBUTION_PAYMENTS_MIN_RECLAIMED_ASC', + DistributionPaymentsMinReclaimedDesc = 'DISTRIBUTION_PAYMENTS_MIN_RECLAIMED_DESC', + DistributionPaymentsMinTargetIdAsc = 'DISTRIBUTION_PAYMENTS_MIN_TARGET_ID_ASC', + DistributionPaymentsMinTargetIdDesc = 'DISTRIBUTION_PAYMENTS_MIN_TARGET_ID_DESC', + DistributionPaymentsMinTaxAsc = 'DISTRIBUTION_PAYMENTS_MIN_TAX_ASC', + DistributionPaymentsMinTaxDesc = 'DISTRIBUTION_PAYMENTS_MIN_TAX_DESC', + DistributionPaymentsMinUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_MIN_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsMinUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_MIN_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsStddevPopulationAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsStddevPopulationAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsStddevPopulationAmountAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_AMOUNT_ASC', + DistributionPaymentsStddevPopulationAmountDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_AMOUNT_DESC', + DistributionPaymentsStddevPopulationBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + DistributionPaymentsStddevPopulationBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + DistributionPaymentsStddevPopulationCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_CREATED_AT_ASC', + DistributionPaymentsStddevPopulationCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_CREATED_AT_DESC', + DistributionPaymentsStddevPopulationCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionPaymentsStddevPopulationCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionPaymentsStddevPopulationDatetimeAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_DATETIME_ASC', + DistributionPaymentsStddevPopulationDatetimeDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_DATETIME_DESC', + DistributionPaymentsStddevPopulationDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_DISTRIBUTION_ID_ASC', + DistributionPaymentsStddevPopulationDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_DISTRIBUTION_ID_DESC', + DistributionPaymentsStddevPopulationEventIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_EVENT_ID_ASC', + DistributionPaymentsStddevPopulationEventIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_EVENT_ID_DESC', + DistributionPaymentsStddevPopulationIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_ID_ASC', + DistributionPaymentsStddevPopulationIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_ID_DESC', + DistributionPaymentsStddevPopulationReclaimedAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_RECLAIMED_ASC', + DistributionPaymentsStddevPopulationReclaimedDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_RECLAIMED_DESC', + DistributionPaymentsStddevPopulationTargetIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_TARGET_ID_ASC', + DistributionPaymentsStddevPopulationTargetIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_TARGET_ID_DESC', + DistributionPaymentsStddevPopulationTaxAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_TAX_ASC', + DistributionPaymentsStddevPopulationTaxDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_TAX_DESC', + DistributionPaymentsStddevPopulationUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsStddevPopulationUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsStddevSampleAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsStddevSampleAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsStddevSampleAmountAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_AMOUNT_ASC', + DistributionPaymentsStddevSampleAmountDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_AMOUNT_DESC', + DistributionPaymentsStddevSampleBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + DistributionPaymentsStddevSampleBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + DistributionPaymentsStddevSampleCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_CREATED_AT_ASC', + DistributionPaymentsStddevSampleCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_CREATED_AT_DESC', + DistributionPaymentsStddevSampleCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsStddevSampleCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsStddevSampleDatetimeAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_DATETIME_ASC', + DistributionPaymentsStddevSampleDatetimeDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_DATETIME_DESC', + DistributionPaymentsStddevSampleDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_DISTRIBUTION_ID_ASC', + DistributionPaymentsStddevSampleDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_DISTRIBUTION_ID_DESC', + DistributionPaymentsStddevSampleEventIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_EVENT_ID_ASC', + DistributionPaymentsStddevSampleEventIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_EVENT_ID_DESC', + DistributionPaymentsStddevSampleIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_ID_ASC', + DistributionPaymentsStddevSampleIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_ID_DESC', + DistributionPaymentsStddevSampleReclaimedAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_RECLAIMED_ASC', + DistributionPaymentsStddevSampleReclaimedDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_RECLAIMED_DESC', + DistributionPaymentsStddevSampleTargetIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_TARGET_ID_ASC', + DistributionPaymentsStddevSampleTargetIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_TARGET_ID_DESC', + DistributionPaymentsStddevSampleTaxAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_TAX_ASC', + DistributionPaymentsStddevSampleTaxDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_TAX_DESC', + DistributionPaymentsStddevSampleUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsStddevSampleUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsSumAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_SUM_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsSumAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_SUM_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsSumAmountAsc = 'DISTRIBUTION_PAYMENTS_SUM_AMOUNT_ASC', + DistributionPaymentsSumAmountDesc = 'DISTRIBUTION_PAYMENTS_SUM_AMOUNT_DESC', + DistributionPaymentsSumBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_SUM_BLOCK_RANGE_ASC', + DistributionPaymentsSumBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_SUM_BLOCK_RANGE_DESC', + DistributionPaymentsSumCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_SUM_CREATED_AT_ASC', + DistributionPaymentsSumCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_SUM_CREATED_AT_DESC', + DistributionPaymentsSumCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_SUM_CREATED_BLOCK_ID_ASC', + DistributionPaymentsSumCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_SUM_CREATED_BLOCK_ID_DESC', + DistributionPaymentsSumDatetimeAsc = 'DISTRIBUTION_PAYMENTS_SUM_DATETIME_ASC', + DistributionPaymentsSumDatetimeDesc = 'DISTRIBUTION_PAYMENTS_SUM_DATETIME_DESC', + DistributionPaymentsSumDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_SUM_DISTRIBUTION_ID_ASC', + DistributionPaymentsSumDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_SUM_DISTRIBUTION_ID_DESC', + DistributionPaymentsSumEventIdAsc = 'DISTRIBUTION_PAYMENTS_SUM_EVENT_ID_ASC', + DistributionPaymentsSumEventIdDesc = 'DISTRIBUTION_PAYMENTS_SUM_EVENT_ID_DESC', + DistributionPaymentsSumIdAsc = 'DISTRIBUTION_PAYMENTS_SUM_ID_ASC', + DistributionPaymentsSumIdDesc = 'DISTRIBUTION_PAYMENTS_SUM_ID_DESC', + DistributionPaymentsSumReclaimedAsc = 'DISTRIBUTION_PAYMENTS_SUM_RECLAIMED_ASC', + DistributionPaymentsSumReclaimedDesc = 'DISTRIBUTION_PAYMENTS_SUM_RECLAIMED_DESC', + DistributionPaymentsSumTargetIdAsc = 'DISTRIBUTION_PAYMENTS_SUM_TARGET_ID_ASC', + DistributionPaymentsSumTargetIdDesc = 'DISTRIBUTION_PAYMENTS_SUM_TARGET_ID_DESC', + DistributionPaymentsSumTaxAsc = 'DISTRIBUTION_PAYMENTS_SUM_TAX_ASC', + DistributionPaymentsSumTaxDesc = 'DISTRIBUTION_PAYMENTS_SUM_TAX_DESC', + DistributionPaymentsSumUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_SUM_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsSumUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_SUM_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsVariancePopulationAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsVariancePopulationAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsVariancePopulationAmountAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_AMOUNT_ASC', + DistributionPaymentsVariancePopulationAmountDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_AMOUNT_DESC', + DistributionPaymentsVariancePopulationBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + DistributionPaymentsVariancePopulationBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + DistributionPaymentsVariancePopulationCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_CREATED_AT_ASC', + DistributionPaymentsVariancePopulationCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_CREATED_AT_DESC', + DistributionPaymentsVariancePopulationCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionPaymentsVariancePopulationCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionPaymentsVariancePopulationDatetimeAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_DATETIME_ASC', + DistributionPaymentsVariancePopulationDatetimeDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_DATETIME_DESC', + DistributionPaymentsVariancePopulationDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_DISTRIBUTION_ID_ASC', + DistributionPaymentsVariancePopulationDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_DISTRIBUTION_ID_DESC', + DistributionPaymentsVariancePopulationEventIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_EVENT_ID_ASC', + DistributionPaymentsVariancePopulationEventIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_EVENT_ID_DESC', + DistributionPaymentsVariancePopulationIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_ID_ASC', + DistributionPaymentsVariancePopulationIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_ID_DESC', + DistributionPaymentsVariancePopulationReclaimedAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_RECLAIMED_ASC', + DistributionPaymentsVariancePopulationReclaimedDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_RECLAIMED_DESC', + DistributionPaymentsVariancePopulationTargetIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_TARGET_ID_ASC', + DistributionPaymentsVariancePopulationTargetIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_TARGET_ID_DESC', + DistributionPaymentsVariancePopulationTaxAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_TAX_ASC', + DistributionPaymentsVariancePopulationTaxDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_TAX_DESC', + DistributionPaymentsVariancePopulationUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsVariancePopulationUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsVarianceSampleAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsVarianceSampleAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsVarianceSampleAmountAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_AMOUNT_ASC', + DistributionPaymentsVarianceSampleAmountDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_AMOUNT_DESC', + DistributionPaymentsVarianceSampleBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + DistributionPaymentsVarianceSampleBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + DistributionPaymentsVarianceSampleCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + DistributionPaymentsVarianceSampleCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + DistributionPaymentsVarianceSampleCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsVarianceSampleCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsVarianceSampleDatetimeAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_DATETIME_ASC', + DistributionPaymentsVarianceSampleDatetimeDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_DATETIME_DESC', + DistributionPaymentsVarianceSampleDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_DISTRIBUTION_ID_ASC', + DistributionPaymentsVarianceSampleDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_DISTRIBUTION_ID_DESC', + DistributionPaymentsVarianceSampleEventIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_EVENT_ID_ASC', + DistributionPaymentsVarianceSampleEventIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_EVENT_ID_DESC', + DistributionPaymentsVarianceSampleIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_ID_ASC', + DistributionPaymentsVarianceSampleIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_ID_DESC', + DistributionPaymentsVarianceSampleReclaimedAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_RECLAIMED_ASC', + DistributionPaymentsVarianceSampleReclaimedDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_RECLAIMED_DESC', + DistributionPaymentsVarianceSampleTargetIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_TARGET_ID_ASC', + DistributionPaymentsVarianceSampleTargetIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_TARGET_ID_DESC', + DistributionPaymentsVarianceSampleTaxAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_TAX_ASC', + DistributionPaymentsVarianceSampleTaxDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_TAX_DESC', + DistributionPaymentsVarianceSampleUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsVarianceSampleUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ExpiresAtAsc = 'EXPIRES_AT_ASC', + ExpiresAtDesc = 'EXPIRES_AT_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + LocalIdAsc = 'LOCAL_ID_ASC', + LocalIdDesc = 'LOCAL_ID_DESC', + Natural = 'NATURAL', + PaymentAtAsc = 'PAYMENT_AT_ASC', + PaymentAtDesc = 'PAYMENT_AT_DESC', + PerShareAsc = 'PER_SHARE_ASC', + PerShareDesc = 'PER_SHARE_DESC', + PortfolioIdAsc = 'PORTFOLIO_ID_ASC', + PortfolioIdDesc = 'PORTFOLIO_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + RemainingAsc = 'REMAINING_ASC', + RemainingDesc = 'REMAINING_DESC', + TaxesAsc = 'TAXES_ASC', + TaxesDesc = 'TAXES_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type Event = Node & { + __typename?: 'Event'; + attributes?: Maybe; + attributesTxt: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `Event`. */ + block?: Maybe; + blockId: Scalars['String']['output']; + claimExpiry?: Maybe; + claimIssuer?: Maybe; + claimScope?: Maybe; + claimType?: Maybe; + corporateActionTicker?: Maybe; + createdAt?: Maybe; + eventArg0?: Maybe; + eventArg1?: Maybe; + eventArg2?: Maybe; + eventArg3?: Maybe; + eventId: EventIdEnum; + eventIdx: Scalars['Int']['output']; + /** Reads a single `Extrinsic` that is related to this `Event`. */ + extrinsic?: Maybe; + extrinsicId?: Maybe; + extrinsicIdx?: Maybe; + fundraiserOfferingAsset?: Maybe; + id: Scalars['String']['output']; + moduleId: ModuleIdEnum; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + specVersionId: Scalars['Int']['output']; + transferTo?: Maybe; +}; + +export type EventAggregates = { + __typename?: 'EventAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Event` object types. */ +export type EventAggregatesFilter = { + /** Mean average aggregate over matching `Event` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Event` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Event` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Event` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Event` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Event` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Event` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Event` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Event` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Event` objects. */ + varianceSample?: InputMaybe; +}; + +export type EventAverageAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventAverageAggregates = { + __typename?: 'EventAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Mean average of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +export type EventDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + attributes?: InputMaybe; + attributesTxt?: InputMaybe; + blockId?: InputMaybe; + claimExpiry?: InputMaybe; + claimIssuer?: InputMaybe; + claimScope?: InputMaybe; + claimType?: InputMaybe; + corporateActionTicker?: InputMaybe; + createdAt?: InputMaybe; + eventArg0?: InputMaybe; + eventArg1?: InputMaybe; + eventArg2?: InputMaybe; + eventArg3?: InputMaybe; + eventId?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicId?: InputMaybe; + extrinsicIdx?: InputMaybe; + fundraiserOfferingAsset?: InputMaybe; + id?: InputMaybe; + moduleId?: InputMaybe; + specVersionId?: InputMaybe; + transferTo?: InputMaybe; +}; + +export type EventDistinctCountAggregates = { + __typename?: 'EventDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of attributes across the matching connection */ + attributes?: Maybe; + /** Distinct count of attributesTxt across the matching connection */ + attributesTxt?: Maybe; + /** Distinct count of blockId across the matching connection */ + blockId?: Maybe; + /** Distinct count of claimExpiry across the matching connection */ + claimExpiry?: Maybe; + /** Distinct count of claimIssuer across the matching connection */ + claimIssuer?: Maybe; + /** Distinct count of claimScope across the matching connection */ + claimScope?: Maybe; + /** Distinct count of claimType across the matching connection */ + claimType?: Maybe; + /** Distinct count of corporateActionTicker across the matching connection */ + corporateActionTicker?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of eventArg0 across the matching connection */ + eventArg0?: Maybe; + /** Distinct count of eventArg1 across the matching connection */ + eventArg1?: Maybe; + /** Distinct count of eventArg2 across the matching connection */ + eventArg2?: Maybe; + /** Distinct count of eventArg3 across the matching connection */ + eventArg3?: Maybe; + /** Distinct count of eventId across the matching connection */ + eventId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of extrinsicId across the matching connection */ + extrinsicId?: Maybe; + /** Distinct count of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Distinct count of fundraiserOfferingAsset across the matching connection */ + fundraiserOfferingAsset?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of moduleId across the matching connection */ + moduleId?: Maybe; + /** Distinct count of specVersionId across the matching connection */ + specVersionId?: Maybe; + /** Distinct count of transferTo across the matching connection */ + transferTo?: Maybe; +}; + +/** A filter to be used against `Event` object types. All fields are combined with a logical ‘and.’ */ +export type EventFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `attributes` field. */ + attributes?: InputMaybe; + /** Filter by the object’s `attributesTxt` field. */ + attributesTxt?: InputMaybe; + /** Filter by the object’s `block` relation. */ + block?: InputMaybe; + /** Filter by the object’s `blockId` field. */ + blockId?: InputMaybe; + /** Filter by the object’s `claimExpiry` field. */ + claimExpiry?: InputMaybe; + /** Filter by the object’s `claimIssuer` field. */ + claimIssuer?: InputMaybe; + /** Filter by the object’s `claimScope` field. */ + claimScope?: InputMaybe; + /** Filter by the object’s `claimType` field. */ + claimType?: InputMaybe; + /** Filter by the object’s `corporateActionTicker` field. */ + corporateActionTicker?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `eventArg0` field. */ + eventArg0?: InputMaybe; + /** Filter by the object’s `eventArg1` field. */ + eventArg1?: InputMaybe; + /** Filter by the object’s `eventArg2` field. */ + eventArg2?: InputMaybe; + /** Filter by the object’s `eventArg3` field. */ + eventArg3?: InputMaybe; + /** Filter by the object’s `eventId` field. */ + eventId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `extrinsic` relation. */ + extrinsic?: InputMaybe; + /** A related `extrinsic` exists. */ + extrinsicExists?: InputMaybe; + /** Filter by the object’s `extrinsicId` field. */ + extrinsicId?: InputMaybe; + /** Filter by the object’s `extrinsicIdx` field. */ + extrinsicIdx?: InputMaybe; + /** Filter by the object’s `fundraiserOfferingAsset` field. */ + fundraiserOfferingAsset?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `moduleId` field. */ + moduleId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `specVersionId` field. */ + specVersionId?: InputMaybe; + /** Filter by the object’s `transferTo` field. */ + transferTo?: InputMaybe; +}; + +/** Events are emitted when chain state is changed. This enum represents all known events */ +export enum EventIdEnum { + AcceptedPayingKey = 'AcceptedPayingKey', + AccountAssetFrozen = 'AccountAssetFrozen', + AccountAssetUnfrozen = 'AccountAssetUnfrozen', + AccountBalanceBurned = 'AccountBalanceBurned', + AccountCreated = 'AccountCreated', + AccountDeposit = 'AccountDeposit', + AccountDepositIncoming = 'AccountDepositIncoming', + AccountWithdraw = 'AccountWithdraw', + ActiveLimitChanged = 'ActiveLimitChanged', + ActivePipLimitChanged = 'ActivePipLimitChanged', + AdminChanged = 'AdminChanged', + AffirmationWithdrawn = 'AffirmationWithdrawn', + AgentAdded = 'AgentAdded', + AgentRemoved = 'AgentRemoved', + AllGood = 'AllGood', + ApiHashUpdated = 'ApiHashUpdated', + Approval = 'Approval', + Approved = 'Approved', + AssetAffirmationExemption = 'AssetAffirmationExemption', + AssetBalanceUpdated = 'AssetBalanceUpdated', + AssetCompliancePaused = 'AssetCompliancePaused', + AssetComplianceReplaced = 'AssetComplianceReplaced', + AssetComplianceReset = 'AssetComplianceReset', + AssetComplianceResumed = 'AssetComplianceResumed', + AssetCreated = 'AssetCreated', + AssetDidRegistered = 'AssetDidRegistered', + AssetFrozen = 'AssetFrozen', + AssetMediatorsAdded = 'AssetMediatorsAdded', + AssetMediatorsRemoved = 'AssetMediatorsRemoved', + AssetOwnershipTransferred = 'AssetOwnershipTransferred', + AssetPurchased = 'AssetPurchased', + AssetRenamed = 'AssetRenamed', + AssetRuleChanged = 'AssetRuleChanged', + AssetRuleRemoved = 'AssetRuleRemoved', + AssetRulesPaused = 'AssetRulesPaused', + AssetRulesReplaced = 'AssetRulesReplaced', + AssetRulesReset = 'AssetRulesReset', + AssetRulesResumed = 'AssetRulesResumed', + AssetStatsUpdated = 'AssetStatsUpdated', + AssetTypeChanged = 'AssetTypeChanged', + AssetUnfrozen = 'AssetUnfrozen', + AuthorizationAdded = 'AuthorizationAdded', + AuthorizationConsumed = 'AuthorizationConsumed', + AuthorizationRejected = 'AuthorizationRejected', + AuthorizationRetryLimitReached = 'AuthorizationRetryLimitReached', + AuthorizationRevoked = 'AuthorizationRevoked', + AuthorizedPayingKey = 'AuthorizedPayingKey', + BalanceSet = 'BalanceSet', + BallotCancelled = 'BallotCancelled', + BallotCreated = 'BallotCreated', + BatchCompleted = 'BatchCompleted', + BatchCompletedOld = 'BatchCompletedOld', + BatchCompletedWithErrors = 'BatchCompletedWithErrors', + BatchInterrupted = 'BatchInterrupted', + BatchInterruptedOld = 'BatchInterruptedOld', + BatchOptimisticFailed = 'BatchOptimisticFailed', + BenefitClaimed = 'BenefitClaimed', + Bonded = 'Bonded', + BridgeLimitUpdated = 'BridgeLimitUpdated', + BridgeTxFailed = 'BridgeTxFailed', + BridgeTxScheduleFailed = 'BridgeTxScheduleFailed', + BridgeTxScheduled = 'BridgeTxScheduled', + Bridged = 'Bridged', + Burned = 'Burned', + CaaTransferred = 'CAATransferred', + CaInitiated = 'CAInitiated', + CaLinkedToDoc = 'CALinkedToDoc', + CaRemoved = 'CARemoved', + CallLookupFailed = 'CallLookupFailed', + CallUnavailable = 'CallUnavailable', + Called = 'Called', + Canceled = 'Canceled', + CddClaimsInvalidated = 'CddClaimsInvalidated', + CddRequirementForMasterKeyUpdated = 'CddRequirementForMasterKeyUpdated', + CddRequirementForPrimaryKeyUpdated = 'CddRequirementForPrimaryKeyUpdated', + CddStatus = 'CddStatus', + CheckpointCreated = 'CheckpointCreated', + ChildDidCreated = 'ChildDidCreated', + ChildDidUnlinked = 'ChildDidUnlinked', + ClaimAdded = 'ClaimAdded', + ClaimRevoked = 'ClaimRevoked', + ClassicTickerClaimed = 'ClassicTickerClaimed', + Cleared = 'Cleared', + Closed = 'Closed', + CodeRemoved = 'CodeRemoved', + CodeStored = 'CodeStored', + CodeUpdated = 'CodeUpdated', + CoefficientSet = 'CoefficientSet', + CommissionCapUpdated = 'CommissionCapUpdated', + ComplianceRequirementChanged = 'ComplianceRequirementChanged', + ComplianceRequirementCreated = 'ComplianceRequirementCreated', + ComplianceRequirementRemoved = 'ComplianceRequirementRemoved', + ContractCodeUpdated = 'ContractCodeUpdated', + ContractEmitted = 'ContractEmitted', + ContractExecution = 'ContractExecution', + ControllerChanged = 'ControllerChanged', + ControllerRedemption = 'ControllerRedemption', + ControllerTransfer = 'ControllerTransfer', + Created = 'Created', + CustodyAllowanceChanged = 'CustodyAllowanceChanged', + CustodyTransfer = 'CustodyTransfer', + CustomAssetTypeExists = 'CustomAssetTypeExists', + CustomAssetTypeRegistered = 'CustomAssetTypeRegistered', + CustomClaimTypeAdded = 'CustomClaimTypeAdded', + DefaultEnactmentPeriodChanged = 'DefaultEnactmentPeriodChanged', + DefaultTargetIdentitiesChanged = 'DefaultTargetIdentitiesChanged', + DefaultWithholdingTaxChanged = 'DefaultWithholdingTaxChanged', + DelegateCalled = 'DelegateCalled', + DidCreated = 'DidCreated', + DidStatus = 'DidStatus', + DidWithholdingTaxChanged = 'DidWithholdingTaxChanged', + Dispatched = 'Dispatched', + DispatchedAs = 'DispatchedAs', + DividendCanceled = 'DividendCanceled', + DividendCreated = 'DividendCreated', + DividendPaidOutToUser = 'DividendPaidOutToUser', + DividendRemainingClaimed = 'DividendRemainingClaimed', + DivisibilityChanged = 'DivisibilityChanged', + DocumentAdded = 'DocumentAdded', + DocumentRemoved = 'DocumentRemoved', + Dummy = 'Dummy', + Endowed = 'Endowed', + EraPayout = 'EraPayout', + Evicted = 'Evicted', + Executed = 'Executed', + ExecutionCancellingFailed = 'ExecutionCancellingFailed', + ExecutionScheduled = 'ExecutionScheduled', + ExecutionSchedulingFailed = 'ExecutionSchedulingFailed', + ExemptedUpdated = 'ExemptedUpdated', + ExemptionListModified = 'ExemptionListModified', + ExemptionsAdded = 'ExemptionsAdded', + ExemptionsRemoved = 'ExemptionsRemoved', + ExpiresAfterUpdated = 'ExpiresAfterUpdated', + ExpiryScheduled = 'ExpiryScheduled', + ExpirySchedulingFailed = 'ExpirySchedulingFailed', + ExtensionAdded = 'ExtensionAdded', + ExtensionArchived = 'ExtensionArchived', + ExtensionRemoved = 'ExtensionRemoved', + ExtensionUnArchive = 'ExtensionUnArchive', + ExtrinsicFailed = 'ExtrinsicFailed', + ExtrinsicSuccess = 'ExtrinsicSuccess', + FailedToExecuteInstruction = 'FailedToExecuteInstruction', + FeeCharged = 'FeeCharged', + FeeSet = 'FeeSet', + FinalVotes = 'FinalVotes', + FreezeAdminAdded = 'FreezeAdminAdded', + FreezeAdminRemoved = 'FreezeAdminRemoved', + Frozen = 'Frozen', + FrozenTx = 'FrozenTx', + FundingRoundSet = 'FundingRoundSet', + FundraiserClosed = 'FundraiserClosed', + FundraiserCreated = 'FundraiserCreated', + FundraiserFrozen = 'FundraiserFrozen', + FundraiserUnfrozen = 'FundraiserUnfrozen', + FundraiserWindowModifed = 'FundraiserWindowModifed', + FundraiserWindowModified = 'FundraiserWindowModified', + FundsMoved = 'FundsMoved', + FundsMovedBetweenPortfolios = 'FundsMovedBetweenPortfolios', + FundsRaised = 'FundsRaised', + FungibleTokensMovedBetweenPortfolios = 'FungibleTokensMovedBetweenPortfolios', + GlobalCommissionUpdated = 'GlobalCommissionUpdated', + GroupChanged = 'GroupChanged', + GroupCreated = 'GroupCreated', + GroupPermissionsUpdated = 'GroupPermissionsUpdated', + HeartbeatReceived = 'HeartbeatReceived', + HistoricalPipsPruned = 'HistoricalPipsPruned', + IdentifiersUpdated = 'IdentifiersUpdated', + IndexAssigned = 'IndexAssigned', + IndexFreed = 'IndexFreed', + IndexFrozen = 'IndexFrozen', + IndividualCommissionEnabled = 'IndividualCommissionEnabled', + Instantiated = 'Instantiated', + InstantiationFeeChanged = 'InstantiationFeeChanged', + InstantiationFreezed = 'InstantiationFreezed', + InstantiationUnFreezed = 'InstantiationUnFreezed', + InstructionAffirmed = 'InstructionAffirmed', + InstructionAuthorized = 'InstructionAuthorized', + InstructionAutomaticallyAffirmed = 'InstructionAutomaticallyAffirmed', + InstructionCreated = 'InstructionCreated', + InstructionExecuted = 'InstructionExecuted', + InstructionFailed = 'InstructionFailed', + InstructionMediators = 'InstructionMediators', + InstructionRejected = 'InstructionRejected', + InstructionRescheduled = 'InstructionRescheduled', + InstructionUnauthorized = 'InstructionUnauthorized', + InstructionV2Created = 'InstructionV2Created', + InvalidatedNominators = 'InvalidatedNominators', + Invested = 'Invested', + InvestorUniquenessClaimNotAllowed = 'InvestorUniquenessClaimNotAllowed', + IsIssuable = 'IsIssuable', + Issued = 'Issued', + IssuedNft = 'IssuedNFT', + ItemCompleted = 'ItemCompleted', + ItemFailed = 'ItemFailed', + ItnRewardClaimed = 'ItnRewardClaimed', + KeyChanged = 'KeyChanged', + KilledAccount = 'KilledAccount', + LegFailedExecution = 'LegFailedExecution', + LocalMetadataKeyDeleted = 'LocalMetadataKeyDeleted', + MasterKeyUpdated = 'MasterKeyUpdated', + MaxDetailsLengthChanged = 'MaxDetailsLengthChanged', + MaxPipSkipCountChanged = 'MaxPipSkipCountChanged', + MaximumSchedulesComplexityChanged = 'MaximumSchedulesComplexityChanged', + MediatorAffirmationReceived = 'MediatorAffirmationReceived', + MediatorAffirmationWithdrawn = 'MediatorAffirmationWithdrawn', + MemberAdded = 'MemberAdded', + MemberRemoved = 'MemberRemoved', + MemberRevoked = 'MemberRevoked', + MembersReset = 'MembersReset', + MembersSwapped = 'MembersSwapped', + MetaChanged = 'MetaChanged', + MetadataValueDeleted = 'MetadataValueDeleted', + MinimumBondThresholdUpdated = 'MinimumBondThresholdUpdated', + MinimumProposalDepositChanged = 'MinimumProposalDepositChanged', + MockInvestorUidCreated = 'MockInvestorUIDCreated', + MovedBetweenPortfolios = 'MovedBetweenPortfolios', + MultiSigCreated = 'MultiSigCreated', + MultiSigSignaturesRequiredChanged = 'MultiSigSignaturesRequiredChanged', + MultiSigSignerAdded = 'MultiSigSignerAdded', + MultiSigSignerAuthorized = 'MultiSigSignerAuthorized', + MultiSigSignerRemoved = 'MultiSigSignerRemoved', + NftPortfolioUpdated = 'NFTPortfolioUpdated', + NfTsMovedBetweenPortfolios = 'NFTsMovedBetweenPortfolios', + NewAccount = 'NewAccount', + NewAssetRuleCreated = 'NewAssetRuleCreated', + NewAuthorities = 'NewAuthorities', + NewSession = 'NewSession', + NftCollectionCreated = 'NftCollectionCreated', + Nominated = 'Nominated', + Noted = 'Noted', + OffChainAuthorizationRevoked = 'OffChainAuthorizationRevoked', + Offence = 'Offence', + OldSlashingReportDiscarded = 'OldSlashingReportDiscarded', + Paused = 'Paused', + PendingPipExpiryChanged = 'PendingPipExpiryChanged', + PeriodicFailed = 'PeriodicFailed', + PermanentlyOverweight = 'PermanentlyOverweight', + PermissionedIdentityAdded = 'PermissionedIdentityAdded', + PermissionedIdentityRemoved = 'PermissionedIdentityRemoved', + PermissionedValidatorAdded = 'PermissionedValidatorAdded', + PermissionedValidatorRemoved = 'PermissionedValidatorRemoved', + PermissionedValidatorStatusChanged = 'PermissionedValidatorStatusChanged', + PipClosed = 'PipClosed', + PipSkipped = 'PipSkipped', + PlaceholderFillBlock = 'PlaceholderFillBlock', + PortfolioCreated = 'PortfolioCreated', + PortfolioCustodianChanged = 'PortfolioCustodianChanged', + PortfolioDeleted = 'PortfolioDeleted', + PortfolioRenamed = 'PortfolioRenamed', + PreApprovedAsset = 'PreApprovedAsset', + PreApprovedPortfolio = 'PreApprovedPortfolio', + PrimaryIssuanceAgentTransfered = 'PrimaryIssuanceAgentTransfered', + PrimaryIssuanceAgentTransferred = 'PrimaryIssuanceAgentTransferred', + PrimaryKeyUpdated = 'PrimaryKeyUpdated', + ProposalAdded = 'ProposalAdded', + ProposalApproved = 'ProposalApproved', + ProposalBondAdjusted = 'ProposalBondAdjusted', + ProposalCoolOffPeriodChanged = 'ProposalCoolOffPeriodChanged', + ProposalCreated = 'ProposalCreated', + ProposalDetailsAmended = 'ProposalDetailsAmended', + ProposalDurationChanged = 'ProposalDurationChanged', + ProposalExecuted = 'ProposalExecuted', + ProposalExecutionFailed = 'ProposalExecutionFailed', + ProposalFailedToExecute = 'ProposalFailedToExecute', + ProposalRefund = 'ProposalRefund', + ProposalRejected = 'ProposalRejected', + ProposalRejectionVote = 'ProposalRejectionVote', + ProposalStateUpdated = 'ProposalStateUpdated', + Proposed = 'Proposed', + PutCodeFlagChanged = 'PutCodeFlagChanged', + QuorumThresholdChanged = 'QuorumThresholdChanged', + RcvChanged = 'RCVChanged', + RangeChanged = 'RangeChanged', + RangeProofAdded = 'RangeProofAdded', + RangeProofVerified = 'RangeProofVerified', + ReceiptClaimed = 'ReceiptClaimed', + ReceiptUnclaimed = 'ReceiptUnclaimed', + ReceiptValidityChanged = 'ReceiptValidityChanged', + Reclaimed = 'Reclaimed', + RecordDateChanged = 'RecordDateChanged', + Redeemed = 'Redeemed', + RedeemedNft = 'RedeemedNFT', + ReferendumCreated = 'ReferendumCreated', + ReferendumScheduled = 'ReferendumScheduled', + ReferendumStateUpdated = 'ReferendumStateUpdated', + RegisterAssetMetadataGlobalType = 'RegisterAssetMetadataGlobalType', + RegisterAssetMetadataLocalType = 'RegisterAssetMetadataLocalType', + Rejected = 'Rejected', + RelayedTx = 'RelayedTx', + ReleaseCoordinatorUpdated = 'ReleaseCoordinatorUpdated', + Remarked = 'Remarked', + RemoveAssetAffirmationExemption = 'RemoveAssetAffirmationExemption', + RemovePreApprovedAsset = 'RemovePreApprovedAsset', + Removed = 'Removed', + RemovedPayingKey = 'RemovedPayingKey', + Requested = 'Requested', + ReserveRepatriated = 'ReserveRepatriated', + Reserved = 'Reserved', + Restored = 'Restored', + Resumed = 'Resumed', + RevokePreApprovedPortfolio = 'RevokePreApprovedPortfolio', + Reward = 'Reward', + RewardPaymentSchedulingInterrupted = 'RewardPaymentSchedulingInterrupted', + ScRuntimeCall = 'SCRuntimeCall', + ScheduleCreated = 'ScheduleCreated', + ScheduleRemoved = 'ScheduleRemoved', + ScheduleUpdated = 'ScheduleUpdated', + Scheduled = 'Scheduled', + SchedulingFailed = 'SchedulingFailed', + SecondaryKeyLeftIdentity = 'SecondaryKeyLeftIdentity', + SecondaryKeyPermissionsUpdated = 'SecondaryKeyPermissionsUpdated', + SecondaryKeysAdded = 'SecondaryKeysAdded', + SecondaryKeysFrozen = 'SecondaryKeysFrozen', + SecondaryKeysRemoved = 'SecondaryKeysRemoved', + SecondaryKeysUnfrozen = 'SecondaryKeysUnfrozen', + SecondaryPermissionsUpdated = 'SecondaryPermissionsUpdated', + SetAssetMediators = 'SetAssetMediators', + SetAssetMetadataValue = 'SetAssetMetadataValue', + SetAssetMetadataValueDetails = 'SetAssetMetadataValueDetails', + SetAssetTransferCompliance = 'SetAssetTransferCompliance', + SettlementManuallyExecuted = 'SettlementManuallyExecuted', + SignerLeft = 'SignerLeft', + SigningKeysAdded = 'SigningKeysAdded', + SigningKeysFrozen = 'SigningKeysFrozen', + SigningKeysRemoved = 'SigningKeysRemoved', + SigningKeysUnfrozen = 'SigningKeysUnfrozen', + SigningPermissionsUpdated = 'SigningPermissionsUpdated', + Slash = 'Slash', + SlashingAllowedForChanged = 'SlashingAllowedForChanged', + SlashingParamsUpdated = 'SlashingParamsUpdated', + SnapshotCleared = 'SnapshotCleared', + SnapshotResultsEnacted = 'SnapshotResultsEnacted', + SnapshotTaken = 'SnapshotTaken', + SolutionStored = 'SolutionStored', + SomeOffline = 'SomeOffline', + StakingElection = 'StakingElection', + StatTypesAdded = 'StatTypesAdded', + StatTypesRemoved = 'StatTypesRemoved', + Sudid = 'Sudid', + SudoAsDone = 'SudoAsDone', + TemplateInstantiationFeeChanged = 'TemplateInstantiationFeeChanged', + TemplateMetaUrlChanged = 'TemplateMetaUrlChanged', + TemplateOwnershipTransferred = 'TemplateOwnershipTransferred', + TemplateUsageFeeChanged = 'TemplateUsageFeeChanged', + Terminated = 'Terminated', + TickerLinkedToAsset = 'TickerLinkedToAsset', + TickerRegistered = 'TickerRegistered', + TickerTransferred = 'TickerTransferred', + TimelockChanged = 'TimelockChanged', + TransactionAffirmed = 'TransactionAffirmed', + TransactionCreated = 'TransactionCreated', + TransactionExecuted = 'TransactionExecuted', + TransactionFeePaid = 'TransactionFeePaid', + TransactionRejected = 'TransactionRejected', + Transfer = 'Transfer', + TransferConditionExemptionsAdded = 'TransferConditionExemptionsAdded', + TransferConditionExemptionsRemoved = 'TransferConditionExemptionsRemoved', + TransferManagerAdded = 'TransferManagerAdded', + TransferManagerRemoved = 'TransferManagerRemoved', + TransferWithData = 'TransferWithData', + TreasuryDidSet = 'TreasuryDidSet', + TreasuryDisbursement = 'TreasuryDisbursement', + TreasuryDisbursementFailed = 'TreasuryDisbursementFailed', + TreasuryReimbursement = 'TreasuryReimbursement', + TrustedDefaultClaimIssuerAdded = 'TrustedDefaultClaimIssuerAdded', + TrustedDefaultClaimIssuerRemoved = 'TrustedDefaultClaimIssuerRemoved', + TxRemoved = 'TxRemoved', + TxsHandled = 'TxsHandled', + Unbonded = 'Unbonded', + UnexpectedError = 'UnexpectedError', + Unfrozen = 'Unfrozen', + UnfrozenTx = 'UnfrozenTx', + Unreserved = 'Unreserved', + UpdatedPolyxLimit = 'UpdatedPolyxLimit', + UserPortfolios = 'UserPortfolios', + VenueCreated = 'VenueCreated', + VenueDetailsUpdated = 'VenueDetailsUpdated', + VenueFiltering = 'VenueFiltering', + VenueSignersUpdated = 'VenueSignersUpdated', + VenueTypeUpdated = 'VenueTypeUpdated', + VenueUnauthorized = 'VenueUnauthorized', + VenueUpdated = 'VenueUpdated', + VenuesAllowed = 'VenuesAllowed', + VenuesBlocked = 'VenuesBlocked', + VoteCast = 'VoteCast', + VoteEnactReferendum = 'VoteEnactReferendum', + VoteRejectReferendum = 'VoteRejectReferendum', + VoteRetracted = 'VoteRetracted', + VoteThresholdUpdated = 'VoteThresholdUpdated', + Voted = 'Voted', + Withdrawn = 'Withdrawn', +} + +/** A filter to be used against EventIdEnum fields. All fields are combined with a logical ‘and.’ */ +export type EventIdEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type EventMaxAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventMaxAggregates = { + __typename?: 'EventMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Maximum of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +export type EventMinAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventMinAggregates = { + __typename?: 'EventMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Minimum of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +export type EventStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventStddevPopulationAggregates = { + __typename?: 'EventStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Population standard deviation of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +export type EventStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventStddevSampleAggregates = { + __typename?: 'EventStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Sample standard deviation of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +export type EventSumAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventSumAggregates = { + __typename?: 'EventSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of extrinsicIdx across the matching connection */ + extrinsicIdx: Scalars['BigInt']['output']; + /** Sum of specVersionId across the matching connection */ + specVersionId: Scalars['BigInt']['output']; +}; + +export type EventVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventVariancePopulationAggregates = { + __typename?: 'EventVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Population variance of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +export type EventVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventVarianceSampleAggregates = { + __typename?: 'EventVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Sample variance of specVersionId across the matching connection */ + specVersionId?: Maybe; +}; + +/** A connection to a list of `Event` values. */ +export type EventsConnection = { + __typename?: 'EventsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Event` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Event` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Event` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Event` values. */ +export type EventsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Event` edge in the connection. */ +export type EventsEdge = { + __typename?: 'EventsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Event` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Event` for usage during aggregation. */ +export enum EventsGroupBy { + Attributes = 'ATTRIBUTES', + AttributesTxt = 'ATTRIBUTES_TXT', + BlockId = 'BLOCK_ID', + ClaimExpiry = 'CLAIM_EXPIRY', + ClaimIssuer = 'CLAIM_ISSUER', + ClaimScope = 'CLAIM_SCOPE', + ClaimType = 'CLAIM_TYPE', + CorporateActionTicker = 'CORPORATE_ACTION_TICKER', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + EventArg_0 = 'EVENT_ARG_0', + EventArg_1 = 'EVENT_ARG_1', + EventArg_2 = 'EVENT_ARG_2', + EventArg_3 = 'EVENT_ARG_3', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + ExtrinsicId = 'EXTRINSIC_ID', + ExtrinsicIdx = 'EXTRINSIC_IDX', + FundraiserOfferingAsset = 'FUNDRAISER_OFFERING_ASSET', + Id = 'ID', + ModuleId = 'MODULE_ID', + SpecVersionId = 'SPEC_VERSION_ID', + TransferTo = 'TRANSFER_TO', +} + +export type EventsHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventsHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +/** Conditions for `Event` aggregates. */ +export type EventsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type EventsHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventsHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventsHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventsHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +export type EventsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + specVersionId?: InputMaybe; +}; + +/** Methods to use when ordering `Event`. */ +export enum EventsOrderBy { + AttributesAsc = 'ATTRIBUTES_ASC', + AttributesDesc = 'ATTRIBUTES_DESC', + AttributesTxtAsc = 'ATTRIBUTES_TXT_ASC', + AttributesTxtDesc = 'ATTRIBUTES_TXT_DESC', + BlockIdAsc = 'BLOCK_ID_ASC', + BlockIdDesc = 'BLOCK_ID_DESC', + ClaimExpiryAsc = 'CLAIM_EXPIRY_ASC', + ClaimExpiryDesc = 'CLAIM_EXPIRY_DESC', + ClaimIssuerAsc = 'CLAIM_ISSUER_ASC', + ClaimIssuerDesc = 'CLAIM_ISSUER_DESC', + ClaimScopeAsc = 'CLAIM_SCOPE_ASC', + ClaimScopeDesc = 'CLAIM_SCOPE_DESC', + ClaimTypeAsc = 'CLAIM_TYPE_ASC', + ClaimTypeDesc = 'CLAIM_TYPE_DESC', + CorporateActionTickerAsc = 'CORPORATE_ACTION_TICKER_ASC', + CorporateActionTickerDesc = 'CORPORATE_ACTION_TICKER_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + EventArg_0Asc = 'EVENT_ARG_0_ASC', + EventArg_0Desc = 'EVENT_ARG_0_DESC', + EventArg_1Asc = 'EVENT_ARG_1_ASC', + EventArg_1Desc = 'EVENT_ARG_1_DESC', + EventArg_2Asc = 'EVENT_ARG_2_ASC', + EventArg_2Desc = 'EVENT_ARG_2_DESC', + EventArg_3Asc = 'EVENT_ARG_3_ASC', + EventArg_3Desc = 'EVENT_ARG_3_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + EventIdAsc = 'EVENT_ID_ASC', + EventIdDesc = 'EVENT_ID_DESC', + ExtrinsicIdxAsc = 'EXTRINSIC_IDX_ASC', + ExtrinsicIdxDesc = 'EXTRINSIC_IDX_DESC', + ExtrinsicIdAsc = 'EXTRINSIC_ID_ASC', + ExtrinsicIdDesc = 'EXTRINSIC_ID_DESC', + FundraiserOfferingAssetAsc = 'FUNDRAISER_OFFERING_ASSET_ASC', + FundraiserOfferingAssetDesc = 'FUNDRAISER_OFFERING_ASSET_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + ModuleIdAsc = 'MODULE_ID_ASC', + ModuleIdDesc = 'MODULE_ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + SpecVersionIdAsc = 'SPEC_VERSION_ID_ASC', + SpecVersionIdDesc = 'SPEC_VERSION_ID_DESC', + TransferToAsc = 'TRANSFER_TO_ASC', + TransferToDesc = 'TRANSFER_TO_DESC', +} + +export type Extrinsic = Node & { + __typename?: 'Extrinsic'; + address?: Maybe; + /** Reads a single `Block` that is related to this `Extrinsic`. */ + block?: Maybe; + blockId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Block`. */ + blocksByEventExtrinsicIdAndBlockId: ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPolyxTransactionExtrinsicIdAndCreatedBlockId: ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPolyxTransactionExtrinsicIdAndUpdatedBlockId: ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyConnection; + callId: CallIdEnum; + createdAt?: Maybe; + /** Reads and enables pagination through a set of `Event`. */ + events: EventsConnection; + extrinsicHash?: Maybe; + extrinsicIdx: Scalars['Int']['output']; + extrinsicLength: Scalars['Int']['output']; + id: Scalars['String']['output']; + moduleId: ModuleIdEnum; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + nonce?: Maybe; + params?: Maybe; + paramsTxt: Scalars['String']['output']; + /** Reads and enables pagination through a set of `PolyxTransaction`. */ + polyxTransactions: PolyxTransactionsConnection; + signed: Scalars['Int']['output']; + /** `signedbyAddress` is now deprecated in favour of `signed` */ + signedbyAddress: Scalars['Int']['output']; + specVersionId: Scalars['Int']['output']; + success: Scalars['Int']['output']; +}; + +export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ExtrinsicEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ExtrinsicPolyxTransactionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ExtrinsicAggregates = { + __typename?: 'ExtrinsicAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Extrinsic` object types. */ +export type ExtrinsicAggregatesFilter = { + /** Mean average aggregate over matching `Extrinsic` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Extrinsic` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Extrinsic` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Extrinsic` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Extrinsic` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Extrinsic` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Extrinsic` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Extrinsic` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Extrinsic` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Extrinsic` objects. */ + varianceSample?: InputMaybe; +}; + +export type ExtrinsicAverageAggregateFilter = { + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicAverageAggregates = { + __typename?: 'ExtrinsicAverageAggregates'; + /** Mean average of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Mean average of extrinsicLength across the matching connection */ + extrinsicLength?: Maybe; + /** Mean average of nonce across the matching connection */ + nonce?: Maybe; + /** Mean average of signed across the matching connection */ + signed?: Maybe; + /** Mean average of signedbyAddress across the matching connection */ + signedbyAddress?: Maybe; + /** Mean average of specVersionId across the matching connection */ + specVersionId?: Maybe; + /** Mean average of success across the matching connection */ + success?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `Event`. */ +export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnection = { + __typename?: 'ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Event`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Event`. */ +export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Block` edge in the connection, with data from `Event`. */ +export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdge = { + __typename?: 'ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Event`. */ + events: EventsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Event`. */ +export type ExtrinsicBlocksByEventExtrinsicIdAndBlockIdManyToManyEdgeEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PolyxTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PolyxTransaction`. */ +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PolyxTransaction`. */ + polyxTransactionsByCreatedBlockId: PolyxTransactionsConnection; +}; + +/** A `Block` edge in the connection, with data from `PolyxTransaction`. */ +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndCreatedBlockIdManyToManyEdgePolyxTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PolyxTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PolyxTransaction`. */ +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PolyxTransaction`. */ +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PolyxTransaction`. */ + polyxTransactionsByUpdatedBlockId: PolyxTransactionsConnection; +}; + +/** A `Block` edge in the connection, with data from `PolyxTransaction`. */ +export type ExtrinsicBlocksByPolyxTransactionExtrinsicIdAndUpdatedBlockIdManyToManyEdgePolyxTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ExtrinsicDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + address?: InputMaybe; + blockId?: InputMaybe; + callId?: InputMaybe; + createdAt?: InputMaybe; + extrinsicHash?: InputMaybe; + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + id?: InputMaybe; + moduleId?: InputMaybe; + nonce?: InputMaybe; + params?: InputMaybe; + paramsTxt?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicDistinctCountAggregates = { + __typename?: 'ExtrinsicDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of address across the matching connection */ + address?: Maybe; + /** Distinct count of blockId across the matching connection */ + blockId?: Maybe; + /** Distinct count of callId across the matching connection */ + callId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of extrinsicHash across the matching connection */ + extrinsicHash?: Maybe; + /** Distinct count of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Distinct count of extrinsicLength across the matching connection */ + extrinsicLength?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of moduleId across the matching connection */ + moduleId?: Maybe; + /** Distinct count of nonce across the matching connection */ + nonce?: Maybe; + /** Distinct count of params across the matching connection */ + params?: Maybe; + /** Distinct count of paramsTxt across the matching connection */ + paramsTxt?: Maybe; + /** Distinct count of signed across the matching connection */ + signed?: Maybe; + /** Distinct count of signedbyAddress across the matching connection */ + signedbyAddress?: Maybe; + /** Distinct count of specVersionId across the matching connection */ + specVersionId?: Maybe; + /** Distinct count of success across the matching connection */ + success?: Maybe; +}; + +/** A filter to be used against `Extrinsic` object types. All fields are combined with a logical ‘and.’ */ +export type ExtrinsicFilter = { + /** Filter by the object’s `address` field. */ + address?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `block` relation. */ + block?: InputMaybe; + /** Filter by the object’s `blockId` field. */ + blockId?: InputMaybe; + /** Filter by the object’s `callId` field. */ + callId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `events` relation. */ + events?: InputMaybe; + /** Some related `events` exist. */ + eventsExist?: InputMaybe; + /** Filter by the object’s `extrinsicHash` field. */ + extrinsicHash?: InputMaybe; + /** Filter by the object’s `extrinsicIdx` field. */ + extrinsicIdx?: InputMaybe; + /** Filter by the object’s `extrinsicLength` field. */ + extrinsicLength?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `moduleId` field. */ + moduleId?: InputMaybe; + /** Filter by the object’s `nonce` field. */ + nonce?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `params` field. */ + params?: InputMaybe; + /** Filter by the object’s `paramsTxt` field. */ + paramsTxt?: InputMaybe; + /** Filter by the object’s `polyxTransactions` relation. */ + polyxTransactions?: InputMaybe; + /** Some related `polyxTransactions` exist. */ + polyxTransactionsExist?: InputMaybe; + /** Filter by the object’s `signed` field. */ + signed?: InputMaybe; + /** Filter by the object’s `signedbyAddress` field. */ + signedbyAddress?: InputMaybe; + /** Filter by the object’s `specVersionId` field. */ + specVersionId?: InputMaybe; + /** Filter by the object’s `success` field. */ + success?: InputMaybe; +}; + +export type ExtrinsicMaxAggregateFilter = { + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicMaxAggregates = { + __typename?: 'ExtrinsicMaxAggregates'; + /** Maximum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Maximum of extrinsicLength across the matching connection */ + extrinsicLength?: Maybe; + /** Maximum of nonce across the matching connection */ + nonce?: Maybe; + /** Maximum of signed across the matching connection */ + signed?: Maybe; + /** Maximum of signedbyAddress across the matching connection */ + signedbyAddress?: Maybe; + /** Maximum of specVersionId across the matching connection */ + specVersionId?: Maybe; + /** Maximum of success across the matching connection */ + success?: Maybe; +}; + +export type ExtrinsicMinAggregateFilter = { + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicMinAggregates = { + __typename?: 'ExtrinsicMinAggregates'; + /** Minimum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Minimum of extrinsicLength across the matching connection */ + extrinsicLength?: Maybe; + /** Minimum of nonce across the matching connection */ + nonce?: Maybe; + /** Minimum of signed across the matching connection */ + signed?: Maybe; + /** Minimum of signedbyAddress across the matching connection */ + signedbyAddress?: Maybe; + /** Minimum of specVersionId across the matching connection */ + specVersionId?: Maybe; + /** Minimum of success across the matching connection */ + success?: Maybe; +}; + +export type ExtrinsicStddevPopulationAggregateFilter = { + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicStddevPopulationAggregates = { + __typename?: 'ExtrinsicStddevPopulationAggregates'; + /** Population standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Population standard deviation of extrinsicLength across the matching connection */ + extrinsicLength?: Maybe; + /** Population standard deviation of nonce across the matching connection */ + nonce?: Maybe; + /** Population standard deviation of signed across the matching connection */ + signed?: Maybe; + /** Population standard deviation of signedbyAddress across the matching connection */ + signedbyAddress?: Maybe; + /** Population standard deviation of specVersionId across the matching connection */ + specVersionId?: Maybe; + /** Population standard deviation of success across the matching connection */ + success?: Maybe; +}; + +export type ExtrinsicStddevSampleAggregateFilter = { + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicStddevSampleAggregates = { + __typename?: 'ExtrinsicStddevSampleAggregates'; + /** Sample standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Sample standard deviation of extrinsicLength across the matching connection */ + extrinsicLength?: Maybe; + /** Sample standard deviation of nonce across the matching connection */ + nonce?: Maybe; + /** Sample standard deviation of signed across the matching connection */ + signed?: Maybe; + /** Sample standard deviation of signedbyAddress across the matching connection */ + signedbyAddress?: Maybe; + /** Sample standard deviation of specVersionId across the matching connection */ + specVersionId?: Maybe; + /** Sample standard deviation of success across the matching connection */ + success?: Maybe; +}; + +export type ExtrinsicSumAggregateFilter = { + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicSumAggregates = { + __typename?: 'ExtrinsicSumAggregates'; + /** Sum of extrinsicIdx across the matching connection */ + extrinsicIdx: Scalars['BigInt']['output']; + /** Sum of extrinsicLength across the matching connection */ + extrinsicLength: Scalars['BigInt']['output']; + /** Sum of nonce across the matching connection */ + nonce: Scalars['BigInt']['output']; + /** Sum of signed across the matching connection */ + signed: Scalars['BigInt']['output']; + /** Sum of signedbyAddress across the matching connection */ + signedbyAddress: Scalars['BigInt']['output']; + /** Sum of specVersionId across the matching connection */ + specVersionId: Scalars['BigInt']['output']; + /** Sum of success across the matching connection */ + success: Scalars['BigInt']['output']; +}; + +/** A filter to be used against many `Event` object types. All fields are combined with a logical ‘and.’ */ +export type ExtrinsicToManyEventFilter = { + /** Aggregates across related `Event` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Event` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Event` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Event` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `PolyxTransaction` object types. All fields are combined with a logical ‘and.’ */ +export type ExtrinsicToManyPolyxTransactionFilter = { + /** Aggregates across related `PolyxTransaction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `PolyxTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `PolyxTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `PolyxTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type ExtrinsicVariancePopulationAggregateFilter = { + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicVariancePopulationAggregates = { + __typename?: 'ExtrinsicVariancePopulationAggregates'; + /** Population variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Population variance of extrinsicLength across the matching connection */ + extrinsicLength?: Maybe; + /** Population variance of nonce across the matching connection */ + nonce?: Maybe; + /** Population variance of signed across the matching connection */ + signed?: Maybe; + /** Population variance of signedbyAddress across the matching connection */ + signedbyAddress?: Maybe; + /** Population variance of specVersionId across the matching connection */ + specVersionId?: Maybe; + /** Population variance of success across the matching connection */ + success?: Maybe; +}; + +export type ExtrinsicVarianceSampleAggregateFilter = { + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicVarianceSampleAggregates = { + __typename?: 'ExtrinsicVarianceSampleAggregates'; + /** Sample variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Sample variance of extrinsicLength across the matching connection */ + extrinsicLength?: Maybe; + /** Sample variance of nonce across the matching connection */ + nonce?: Maybe; + /** Sample variance of signed across the matching connection */ + signed?: Maybe; + /** Sample variance of signedbyAddress across the matching connection */ + signedbyAddress?: Maybe; + /** Sample variance of specVersionId across the matching connection */ + specVersionId?: Maybe; + /** Sample variance of success across the matching connection */ + success?: Maybe; +}; + +/** A connection to a list of `Extrinsic` values. */ +export type ExtrinsicsConnection = { + __typename?: 'ExtrinsicsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Extrinsic` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Extrinsic` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Extrinsic` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Extrinsic` values. */ +export type ExtrinsicsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Extrinsic` edge in the connection. */ +export type ExtrinsicsEdge = { + __typename?: 'ExtrinsicsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Extrinsic` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Extrinsic` for usage during aggregation. */ +export enum ExtrinsicsGroupBy { + Address = 'ADDRESS', + BlockId = 'BLOCK_ID', + CallId = 'CALL_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + ExtrinsicHash = 'EXTRINSIC_HASH', + ExtrinsicIdx = 'EXTRINSIC_IDX', + ExtrinsicLength = 'EXTRINSIC_LENGTH', + Id = 'ID', + ModuleId = 'MODULE_ID', + Nonce = 'NONCE', + Params = 'PARAMS', + ParamsTxt = 'PARAMS_TXT', + Signed = 'SIGNED', + SignedbyAddress = 'SIGNEDBY_ADDRESS', + SpecVersionId = 'SPEC_VERSION_ID', + Success = 'SUCCESS', +} + +export type ExtrinsicsHavingAverageInput = { + createdAt?: InputMaybe; + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicsHavingDistinctCountInput = { + createdAt?: InputMaybe; + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +/** Conditions for `Extrinsic` aggregates. */ +export type ExtrinsicsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ExtrinsicsHavingMaxInput = { + createdAt?: InputMaybe; + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicsHavingMinInput = { + createdAt?: InputMaybe; + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicsHavingStddevSampleInput = { + createdAt?: InputMaybe; + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicsHavingSumInput = { + createdAt?: InputMaybe; + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +export type ExtrinsicsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + extrinsicIdx?: InputMaybe; + extrinsicLength?: InputMaybe; + nonce?: InputMaybe; + signed?: InputMaybe; + signedbyAddress?: InputMaybe; + specVersionId?: InputMaybe; + success?: InputMaybe; +}; + +/** Methods to use when ordering `Extrinsic`. */ +export enum ExtrinsicsOrderBy { + AddressAsc = 'ADDRESS_ASC', + AddressDesc = 'ADDRESS_DESC', + BlockIdAsc = 'BLOCK_ID_ASC', + BlockIdDesc = 'BLOCK_ID_DESC', + CallIdAsc = 'CALL_ID_ASC', + CallIdDesc = 'CALL_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + EventsAverageAttributesAsc = 'EVENTS_AVERAGE_ATTRIBUTES_ASC', + EventsAverageAttributesDesc = 'EVENTS_AVERAGE_ATTRIBUTES_DESC', + EventsAverageAttributesTxtAsc = 'EVENTS_AVERAGE_ATTRIBUTES_TXT_ASC', + EventsAverageAttributesTxtDesc = 'EVENTS_AVERAGE_ATTRIBUTES_TXT_DESC', + EventsAverageBlockIdAsc = 'EVENTS_AVERAGE_BLOCK_ID_ASC', + EventsAverageBlockIdDesc = 'EVENTS_AVERAGE_BLOCK_ID_DESC', + EventsAverageBlockRangeAsc = 'EVENTS_AVERAGE_BLOCK_RANGE_ASC', + EventsAverageBlockRangeDesc = 'EVENTS_AVERAGE_BLOCK_RANGE_DESC', + EventsAverageClaimExpiryAsc = 'EVENTS_AVERAGE_CLAIM_EXPIRY_ASC', + EventsAverageClaimExpiryDesc = 'EVENTS_AVERAGE_CLAIM_EXPIRY_DESC', + EventsAverageClaimIssuerAsc = 'EVENTS_AVERAGE_CLAIM_ISSUER_ASC', + EventsAverageClaimIssuerDesc = 'EVENTS_AVERAGE_CLAIM_ISSUER_DESC', + EventsAverageClaimScopeAsc = 'EVENTS_AVERAGE_CLAIM_SCOPE_ASC', + EventsAverageClaimScopeDesc = 'EVENTS_AVERAGE_CLAIM_SCOPE_DESC', + EventsAverageClaimTypeAsc = 'EVENTS_AVERAGE_CLAIM_TYPE_ASC', + EventsAverageClaimTypeDesc = 'EVENTS_AVERAGE_CLAIM_TYPE_DESC', + EventsAverageCorporateActionTickerAsc = 'EVENTS_AVERAGE_CORPORATE_ACTION_TICKER_ASC', + EventsAverageCorporateActionTickerDesc = 'EVENTS_AVERAGE_CORPORATE_ACTION_TICKER_DESC', + EventsAverageCreatedAtAsc = 'EVENTS_AVERAGE_CREATED_AT_ASC', + EventsAverageCreatedAtDesc = 'EVENTS_AVERAGE_CREATED_AT_DESC', + EventsAverageEventArg_0Asc = 'EVENTS_AVERAGE_EVENT_ARG_0_ASC', + EventsAverageEventArg_0Desc = 'EVENTS_AVERAGE_EVENT_ARG_0_DESC', + EventsAverageEventArg_1Asc = 'EVENTS_AVERAGE_EVENT_ARG_1_ASC', + EventsAverageEventArg_1Desc = 'EVENTS_AVERAGE_EVENT_ARG_1_DESC', + EventsAverageEventArg_2Asc = 'EVENTS_AVERAGE_EVENT_ARG_2_ASC', + EventsAverageEventArg_2Desc = 'EVENTS_AVERAGE_EVENT_ARG_2_DESC', + EventsAverageEventArg_3Asc = 'EVENTS_AVERAGE_EVENT_ARG_3_ASC', + EventsAverageEventArg_3Desc = 'EVENTS_AVERAGE_EVENT_ARG_3_DESC', + EventsAverageEventIdxAsc = 'EVENTS_AVERAGE_EVENT_IDX_ASC', + EventsAverageEventIdxDesc = 'EVENTS_AVERAGE_EVENT_IDX_DESC', + EventsAverageEventIdAsc = 'EVENTS_AVERAGE_EVENT_ID_ASC', + EventsAverageEventIdDesc = 'EVENTS_AVERAGE_EVENT_ID_DESC', + EventsAverageExtrinsicIdxAsc = 'EVENTS_AVERAGE_EXTRINSIC_IDX_ASC', + EventsAverageExtrinsicIdxDesc = 'EVENTS_AVERAGE_EXTRINSIC_IDX_DESC', + EventsAverageExtrinsicIdAsc = 'EVENTS_AVERAGE_EXTRINSIC_ID_ASC', + EventsAverageExtrinsicIdDesc = 'EVENTS_AVERAGE_EXTRINSIC_ID_DESC', + EventsAverageFundraiserOfferingAssetAsc = 'EVENTS_AVERAGE_FUNDRAISER_OFFERING_ASSET_ASC', + EventsAverageFundraiserOfferingAssetDesc = 'EVENTS_AVERAGE_FUNDRAISER_OFFERING_ASSET_DESC', + EventsAverageIdAsc = 'EVENTS_AVERAGE_ID_ASC', + EventsAverageIdDesc = 'EVENTS_AVERAGE_ID_DESC', + EventsAverageModuleIdAsc = 'EVENTS_AVERAGE_MODULE_ID_ASC', + EventsAverageModuleIdDesc = 'EVENTS_AVERAGE_MODULE_ID_DESC', + EventsAverageSpecVersionIdAsc = 'EVENTS_AVERAGE_SPEC_VERSION_ID_ASC', + EventsAverageSpecVersionIdDesc = 'EVENTS_AVERAGE_SPEC_VERSION_ID_DESC', + EventsAverageTransferToAsc = 'EVENTS_AVERAGE_TRANSFER_TO_ASC', + EventsAverageTransferToDesc = 'EVENTS_AVERAGE_TRANSFER_TO_DESC', + EventsCountAsc = 'EVENTS_COUNT_ASC', + EventsCountDesc = 'EVENTS_COUNT_DESC', + EventsDistinctCountAttributesAsc = 'EVENTS_DISTINCT_COUNT_ATTRIBUTES_ASC', + EventsDistinctCountAttributesDesc = 'EVENTS_DISTINCT_COUNT_ATTRIBUTES_DESC', + EventsDistinctCountAttributesTxtAsc = 'EVENTS_DISTINCT_COUNT_ATTRIBUTES_TXT_ASC', + EventsDistinctCountAttributesTxtDesc = 'EVENTS_DISTINCT_COUNT_ATTRIBUTES_TXT_DESC', + EventsDistinctCountBlockIdAsc = 'EVENTS_DISTINCT_COUNT_BLOCK_ID_ASC', + EventsDistinctCountBlockIdDesc = 'EVENTS_DISTINCT_COUNT_BLOCK_ID_DESC', + EventsDistinctCountBlockRangeAsc = 'EVENTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + EventsDistinctCountBlockRangeDesc = 'EVENTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + EventsDistinctCountClaimExpiryAsc = 'EVENTS_DISTINCT_COUNT_CLAIM_EXPIRY_ASC', + EventsDistinctCountClaimExpiryDesc = 'EVENTS_DISTINCT_COUNT_CLAIM_EXPIRY_DESC', + EventsDistinctCountClaimIssuerAsc = 'EVENTS_DISTINCT_COUNT_CLAIM_ISSUER_ASC', + EventsDistinctCountClaimIssuerDesc = 'EVENTS_DISTINCT_COUNT_CLAIM_ISSUER_DESC', + EventsDistinctCountClaimScopeAsc = 'EVENTS_DISTINCT_COUNT_CLAIM_SCOPE_ASC', + EventsDistinctCountClaimScopeDesc = 'EVENTS_DISTINCT_COUNT_CLAIM_SCOPE_DESC', + EventsDistinctCountClaimTypeAsc = 'EVENTS_DISTINCT_COUNT_CLAIM_TYPE_ASC', + EventsDistinctCountClaimTypeDesc = 'EVENTS_DISTINCT_COUNT_CLAIM_TYPE_DESC', + EventsDistinctCountCorporateActionTickerAsc = 'EVENTS_DISTINCT_COUNT_CORPORATE_ACTION_TICKER_ASC', + EventsDistinctCountCorporateActionTickerDesc = 'EVENTS_DISTINCT_COUNT_CORPORATE_ACTION_TICKER_DESC', + EventsDistinctCountCreatedAtAsc = 'EVENTS_DISTINCT_COUNT_CREATED_AT_ASC', + EventsDistinctCountCreatedAtDesc = 'EVENTS_DISTINCT_COUNT_CREATED_AT_DESC', + EventsDistinctCountEventArg_0Asc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_0_ASC', + EventsDistinctCountEventArg_0Desc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_0_DESC', + EventsDistinctCountEventArg_1Asc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_1_ASC', + EventsDistinctCountEventArg_1Desc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_1_DESC', + EventsDistinctCountEventArg_2Asc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_2_ASC', + EventsDistinctCountEventArg_2Desc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_2_DESC', + EventsDistinctCountEventArg_3Asc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_3_ASC', + EventsDistinctCountEventArg_3Desc = 'EVENTS_DISTINCT_COUNT_EVENT_ARG_3_DESC', + EventsDistinctCountEventIdxAsc = 'EVENTS_DISTINCT_COUNT_EVENT_IDX_ASC', + EventsDistinctCountEventIdxDesc = 'EVENTS_DISTINCT_COUNT_EVENT_IDX_DESC', + EventsDistinctCountEventIdAsc = 'EVENTS_DISTINCT_COUNT_EVENT_ID_ASC', + EventsDistinctCountEventIdDesc = 'EVENTS_DISTINCT_COUNT_EVENT_ID_DESC', + EventsDistinctCountExtrinsicIdxAsc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + EventsDistinctCountExtrinsicIdxDesc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + EventsDistinctCountExtrinsicIdAsc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_ASC', + EventsDistinctCountExtrinsicIdDesc = 'EVENTS_DISTINCT_COUNT_EXTRINSIC_ID_DESC', + EventsDistinctCountFundraiserOfferingAssetAsc = 'EVENTS_DISTINCT_COUNT_FUNDRAISER_OFFERING_ASSET_ASC', + EventsDistinctCountFundraiserOfferingAssetDesc = 'EVENTS_DISTINCT_COUNT_FUNDRAISER_OFFERING_ASSET_DESC', + EventsDistinctCountIdAsc = 'EVENTS_DISTINCT_COUNT_ID_ASC', + EventsDistinctCountIdDesc = 'EVENTS_DISTINCT_COUNT_ID_DESC', + EventsDistinctCountModuleIdAsc = 'EVENTS_DISTINCT_COUNT_MODULE_ID_ASC', + EventsDistinctCountModuleIdDesc = 'EVENTS_DISTINCT_COUNT_MODULE_ID_DESC', + EventsDistinctCountSpecVersionIdAsc = 'EVENTS_DISTINCT_COUNT_SPEC_VERSION_ID_ASC', + EventsDistinctCountSpecVersionIdDesc = 'EVENTS_DISTINCT_COUNT_SPEC_VERSION_ID_DESC', + EventsDistinctCountTransferToAsc = 'EVENTS_DISTINCT_COUNT_TRANSFER_TO_ASC', + EventsDistinctCountTransferToDesc = 'EVENTS_DISTINCT_COUNT_TRANSFER_TO_DESC', + EventsMaxAttributesAsc = 'EVENTS_MAX_ATTRIBUTES_ASC', + EventsMaxAttributesDesc = 'EVENTS_MAX_ATTRIBUTES_DESC', + EventsMaxAttributesTxtAsc = 'EVENTS_MAX_ATTRIBUTES_TXT_ASC', + EventsMaxAttributesTxtDesc = 'EVENTS_MAX_ATTRIBUTES_TXT_DESC', + EventsMaxBlockIdAsc = 'EVENTS_MAX_BLOCK_ID_ASC', + EventsMaxBlockIdDesc = 'EVENTS_MAX_BLOCK_ID_DESC', + EventsMaxBlockRangeAsc = 'EVENTS_MAX_BLOCK_RANGE_ASC', + EventsMaxBlockRangeDesc = 'EVENTS_MAX_BLOCK_RANGE_DESC', + EventsMaxClaimExpiryAsc = 'EVENTS_MAX_CLAIM_EXPIRY_ASC', + EventsMaxClaimExpiryDesc = 'EVENTS_MAX_CLAIM_EXPIRY_DESC', + EventsMaxClaimIssuerAsc = 'EVENTS_MAX_CLAIM_ISSUER_ASC', + EventsMaxClaimIssuerDesc = 'EVENTS_MAX_CLAIM_ISSUER_DESC', + EventsMaxClaimScopeAsc = 'EVENTS_MAX_CLAIM_SCOPE_ASC', + EventsMaxClaimScopeDesc = 'EVENTS_MAX_CLAIM_SCOPE_DESC', + EventsMaxClaimTypeAsc = 'EVENTS_MAX_CLAIM_TYPE_ASC', + EventsMaxClaimTypeDesc = 'EVENTS_MAX_CLAIM_TYPE_DESC', + EventsMaxCorporateActionTickerAsc = 'EVENTS_MAX_CORPORATE_ACTION_TICKER_ASC', + EventsMaxCorporateActionTickerDesc = 'EVENTS_MAX_CORPORATE_ACTION_TICKER_DESC', + EventsMaxCreatedAtAsc = 'EVENTS_MAX_CREATED_AT_ASC', + EventsMaxCreatedAtDesc = 'EVENTS_MAX_CREATED_AT_DESC', + EventsMaxEventArg_0Asc = 'EVENTS_MAX_EVENT_ARG_0_ASC', + EventsMaxEventArg_0Desc = 'EVENTS_MAX_EVENT_ARG_0_DESC', + EventsMaxEventArg_1Asc = 'EVENTS_MAX_EVENT_ARG_1_ASC', + EventsMaxEventArg_1Desc = 'EVENTS_MAX_EVENT_ARG_1_DESC', + EventsMaxEventArg_2Asc = 'EVENTS_MAX_EVENT_ARG_2_ASC', + EventsMaxEventArg_2Desc = 'EVENTS_MAX_EVENT_ARG_2_DESC', + EventsMaxEventArg_3Asc = 'EVENTS_MAX_EVENT_ARG_3_ASC', + EventsMaxEventArg_3Desc = 'EVENTS_MAX_EVENT_ARG_3_DESC', + EventsMaxEventIdxAsc = 'EVENTS_MAX_EVENT_IDX_ASC', + EventsMaxEventIdxDesc = 'EVENTS_MAX_EVENT_IDX_DESC', + EventsMaxEventIdAsc = 'EVENTS_MAX_EVENT_ID_ASC', + EventsMaxEventIdDesc = 'EVENTS_MAX_EVENT_ID_DESC', + EventsMaxExtrinsicIdxAsc = 'EVENTS_MAX_EXTRINSIC_IDX_ASC', + EventsMaxExtrinsicIdxDesc = 'EVENTS_MAX_EXTRINSIC_IDX_DESC', + EventsMaxExtrinsicIdAsc = 'EVENTS_MAX_EXTRINSIC_ID_ASC', + EventsMaxExtrinsicIdDesc = 'EVENTS_MAX_EXTRINSIC_ID_DESC', + EventsMaxFundraiserOfferingAssetAsc = 'EVENTS_MAX_FUNDRAISER_OFFERING_ASSET_ASC', + EventsMaxFundraiserOfferingAssetDesc = 'EVENTS_MAX_FUNDRAISER_OFFERING_ASSET_DESC', + EventsMaxIdAsc = 'EVENTS_MAX_ID_ASC', + EventsMaxIdDesc = 'EVENTS_MAX_ID_DESC', + EventsMaxModuleIdAsc = 'EVENTS_MAX_MODULE_ID_ASC', + EventsMaxModuleIdDesc = 'EVENTS_MAX_MODULE_ID_DESC', + EventsMaxSpecVersionIdAsc = 'EVENTS_MAX_SPEC_VERSION_ID_ASC', + EventsMaxSpecVersionIdDesc = 'EVENTS_MAX_SPEC_VERSION_ID_DESC', + EventsMaxTransferToAsc = 'EVENTS_MAX_TRANSFER_TO_ASC', + EventsMaxTransferToDesc = 'EVENTS_MAX_TRANSFER_TO_DESC', + EventsMinAttributesAsc = 'EVENTS_MIN_ATTRIBUTES_ASC', + EventsMinAttributesDesc = 'EVENTS_MIN_ATTRIBUTES_DESC', + EventsMinAttributesTxtAsc = 'EVENTS_MIN_ATTRIBUTES_TXT_ASC', + EventsMinAttributesTxtDesc = 'EVENTS_MIN_ATTRIBUTES_TXT_DESC', + EventsMinBlockIdAsc = 'EVENTS_MIN_BLOCK_ID_ASC', + EventsMinBlockIdDesc = 'EVENTS_MIN_BLOCK_ID_DESC', + EventsMinBlockRangeAsc = 'EVENTS_MIN_BLOCK_RANGE_ASC', + EventsMinBlockRangeDesc = 'EVENTS_MIN_BLOCK_RANGE_DESC', + EventsMinClaimExpiryAsc = 'EVENTS_MIN_CLAIM_EXPIRY_ASC', + EventsMinClaimExpiryDesc = 'EVENTS_MIN_CLAIM_EXPIRY_DESC', + EventsMinClaimIssuerAsc = 'EVENTS_MIN_CLAIM_ISSUER_ASC', + EventsMinClaimIssuerDesc = 'EVENTS_MIN_CLAIM_ISSUER_DESC', + EventsMinClaimScopeAsc = 'EVENTS_MIN_CLAIM_SCOPE_ASC', + EventsMinClaimScopeDesc = 'EVENTS_MIN_CLAIM_SCOPE_DESC', + EventsMinClaimTypeAsc = 'EVENTS_MIN_CLAIM_TYPE_ASC', + EventsMinClaimTypeDesc = 'EVENTS_MIN_CLAIM_TYPE_DESC', + EventsMinCorporateActionTickerAsc = 'EVENTS_MIN_CORPORATE_ACTION_TICKER_ASC', + EventsMinCorporateActionTickerDesc = 'EVENTS_MIN_CORPORATE_ACTION_TICKER_DESC', + EventsMinCreatedAtAsc = 'EVENTS_MIN_CREATED_AT_ASC', + EventsMinCreatedAtDesc = 'EVENTS_MIN_CREATED_AT_DESC', + EventsMinEventArg_0Asc = 'EVENTS_MIN_EVENT_ARG_0_ASC', + EventsMinEventArg_0Desc = 'EVENTS_MIN_EVENT_ARG_0_DESC', + EventsMinEventArg_1Asc = 'EVENTS_MIN_EVENT_ARG_1_ASC', + EventsMinEventArg_1Desc = 'EVENTS_MIN_EVENT_ARG_1_DESC', + EventsMinEventArg_2Asc = 'EVENTS_MIN_EVENT_ARG_2_ASC', + EventsMinEventArg_2Desc = 'EVENTS_MIN_EVENT_ARG_2_DESC', + EventsMinEventArg_3Asc = 'EVENTS_MIN_EVENT_ARG_3_ASC', + EventsMinEventArg_3Desc = 'EVENTS_MIN_EVENT_ARG_3_DESC', + EventsMinEventIdxAsc = 'EVENTS_MIN_EVENT_IDX_ASC', + EventsMinEventIdxDesc = 'EVENTS_MIN_EVENT_IDX_DESC', + EventsMinEventIdAsc = 'EVENTS_MIN_EVENT_ID_ASC', + EventsMinEventIdDesc = 'EVENTS_MIN_EVENT_ID_DESC', + EventsMinExtrinsicIdxAsc = 'EVENTS_MIN_EXTRINSIC_IDX_ASC', + EventsMinExtrinsicIdxDesc = 'EVENTS_MIN_EXTRINSIC_IDX_DESC', + EventsMinExtrinsicIdAsc = 'EVENTS_MIN_EXTRINSIC_ID_ASC', + EventsMinExtrinsicIdDesc = 'EVENTS_MIN_EXTRINSIC_ID_DESC', + EventsMinFundraiserOfferingAssetAsc = 'EVENTS_MIN_FUNDRAISER_OFFERING_ASSET_ASC', + EventsMinFundraiserOfferingAssetDesc = 'EVENTS_MIN_FUNDRAISER_OFFERING_ASSET_DESC', + EventsMinIdAsc = 'EVENTS_MIN_ID_ASC', + EventsMinIdDesc = 'EVENTS_MIN_ID_DESC', + EventsMinModuleIdAsc = 'EVENTS_MIN_MODULE_ID_ASC', + EventsMinModuleIdDesc = 'EVENTS_MIN_MODULE_ID_DESC', + EventsMinSpecVersionIdAsc = 'EVENTS_MIN_SPEC_VERSION_ID_ASC', + EventsMinSpecVersionIdDesc = 'EVENTS_MIN_SPEC_VERSION_ID_DESC', + EventsMinTransferToAsc = 'EVENTS_MIN_TRANSFER_TO_ASC', + EventsMinTransferToDesc = 'EVENTS_MIN_TRANSFER_TO_DESC', + EventsStddevPopulationAttributesAsc = 'EVENTS_STDDEV_POPULATION_ATTRIBUTES_ASC', + EventsStddevPopulationAttributesDesc = 'EVENTS_STDDEV_POPULATION_ATTRIBUTES_DESC', + EventsStddevPopulationAttributesTxtAsc = 'EVENTS_STDDEV_POPULATION_ATTRIBUTES_TXT_ASC', + EventsStddevPopulationAttributesTxtDesc = 'EVENTS_STDDEV_POPULATION_ATTRIBUTES_TXT_DESC', + EventsStddevPopulationBlockIdAsc = 'EVENTS_STDDEV_POPULATION_BLOCK_ID_ASC', + EventsStddevPopulationBlockIdDesc = 'EVENTS_STDDEV_POPULATION_BLOCK_ID_DESC', + EventsStddevPopulationBlockRangeAsc = 'EVENTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + EventsStddevPopulationBlockRangeDesc = 'EVENTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + EventsStddevPopulationClaimExpiryAsc = 'EVENTS_STDDEV_POPULATION_CLAIM_EXPIRY_ASC', + EventsStddevPopulationClaimExpiryDesc = 'EVENTS_STDDEV_POPULATION_CLAIM_EXPIRY_DESC', + EventsStddevPopulationClaimIssuerAsc = 'EVENTS_STDDEV_POPULATION_CLAIM_ISSUER_ASC', + EventsStddevPopulationClaimIssuerDesc = 'EVENTS_STDDEV_POPULATION_CLAIM_ISSUER_DESC', + EventsStddevPopulationClaimScopeAsc = 'EVENTS_STDDEV_POPULATION_CLAIM_SCOPE_ASC', + EventsStddevPopulationClaimScopeDesc = 'EVENTS_STDDEV_POPULATION_CLAIM_SCOPE_DESC', + EventsStddevPopulationClaimTypeAsc = 'EVENTS_STDDEV_POPULATION_CLAIM_TYPE_ASC', + EventsStddevPopulationClaimTypeDesc = 'EVENTS_STDDEV_POPULATION_CLAIM_TYPE_DESC', + EventsStddevPopulationCorporateActionTickerAsc = 'EVENTS_STDDEV_POPULATION_CORPORATE_ACTION_TICKER_ASC', + EventsStddevPopulationCorporateActionTickerDesc = 'EVENTS_STDDEV_POPULATION_CORPORATE_ACTION_TICKER_DESC', + EventsStddevPopulationCreatedAtAsc = 'EVENTS_STDDEV_POPULATION_CREATED_AT_ASC', + EventsStddevPopulationCreatedAtDesc = 'EVENTS_STDDEV_POPULATION_CREATED_AT_DESC', + EventsStddevPopulationEventArg_0Asc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_0_ASC', + EventsStddevPopulationEventArg_0Desc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_0_DESC', + EventsStddevPopulationEventArg_1Asc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_1_ASC', + EventsStddevPopulationEventArg_1Desc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_1_DESC', + EventsStddevPopulationEventArg_2Asc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_2_ASC', + EventsStddevPopulationEventArg_2Desc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_2_DESC', + EventsStddevPopulationEventArg_3Asc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_3_ASC', + EventsStddevPopulationEventArg_3Desc = 'EVENTS_STDDEV_POPULATION_EVENT_ARG_3_DESC', + EventsStddevPopulationEventIdxAsc = 'EVENTS_STDDEV_POPULATION_EVENT_IDX_ASC', + EventsStddevPopulationEventIdxDesc = 'EVENTS_STDDEV_POPULATION_EVENT_IDX_DESC', + EventsStddevPopulationEventIdAsc = 'EVENTS_STDDEV_POPULATION_EVENT_ID_ASC', + EventsStddevPopulationEventIdDesc = 'EVENTS_STDDEV_POPULATION_EVENT_ID_DESC', + EventsStddevPopulationExtrinsicIdxAsc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + EventsStddevPopulationExtrinsicIdxDesc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + EventsStddevPopulationExtrinsicIdAsc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_ASC', + EventsStddevPopulationExtrinsicIdDesc = 'EVENTS_STDDEV_POPULATION_EXTRINSIC_ID_DESC', + EventsStddevPopulationFundraiserOfferingAssetAsc = 'EVENTS_STDDEV_POPULATION_FUNDRAISER_OFFERING_ASSET_ASC', + EventsStddevPopulationFundraiserOfferingAssetDesc = 'EVENTS_STDDEV_POPULATION_FUNDRAISER_OFFERING_ASSET_DESC', + EventsStddevPopulationIdAsc = 'EVENTS_STDDEV_POPULATION_ID_ASC', + EventsStddevPopulationIdDesc = 'EVENTS_STDDEV_POPULATION_ID_DESC', + EventsStddevPopulationModuleIdAsc = 'EVENTS_STDDEV_POPULATION_MODULE_ID_ASC', + EventsStddevPopulationModuleIdDesc = 'EVENTS_STDDEV_POPULATION_MODULE_ID_DESC', + EventsStddevPopulationSpecVersionIdAsc = 'EVENTS_STDDEV_POPULATION_SPEC_VERSION_ID_ASC', + EventsStddevPopulationSpecVersionIdDesc = 'EVENTS_STDDEV_POPULATION_SPEC_VERSION_ID_DESC', + EventsStddevPopulationTransferToAsc = 'EVENTS_STDDEV_POPULATION_TRANSFER_TO_ASC', + EventsStddevPopulationTransferToDesc = 'EVENTS_STDDEV_POPULATION_TRANSFER_TO_DESC', + EventsStddevSampleAttributesAsc = 'EVENTS_STDDEV_SAMPLE_ATTRIBUTES_ASC', + EventsStddevSampleAttributesDesc = 'EVENTS_STDDEV_SAMPLE_ATTRIBUTES_DESC', + EventsStddevSampleAttributesTxtAsc = 'EVENTS_STDDEV_SAMPLE_ATTRIBUTES_TXT_ASC', + EventsStddevSampleAttributesTxtDesc = 'EVENTS_STDDEV_SAMPLE_ATTRIBUTES_TXT_DESC', + EventsStddevSampleBlockIdAsc = 'EVENTS_STDDEV_SAMPLE_BLOCK_ID_ASC', + EventsStddevSampleBlockIdDesc = 'EVENTS_STDDEV_SAMPLE_BLOCK_ID_DESC', + EventsStddevSampleBlockRangeAsc = 'EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + EventsStddevSampleBlockRangeDesc = 'EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + EventsStddevSampleClaimExpiryAsc = 'EVENTS_STDDEV_SAMPLE_CLAIM_EXPIRY_ASC', + EventsStddevSampleClaimExpiryDesc = 'EVENTS_STDDEV_SAMPLE_CLAIM_EXPIRY_DESC', + EventsStddevSampleClaimIssuerAsc = 'EVENTS_STDDEV_SAMPLE_CLAIM_ISSUER_ASC', + EventsStddevSampleClaimIssuerDesc = 'EVENTS_STDDEV_SAMPLE_CLAIM_ISSUER_DESC', + EventsStddevSampleClaimScopeAsc = 'EVENTS_STDDEV_SAMPLE_CLAIM_SCOPE_ASC', + EventsStddevSampleClaimScopeDesc = 'EVENTS_STDDEV_SAMPLE_CLAIM_SCOPE_DESC', + EventsStddevSampleClaimTypeAsc = 'EVENTS_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + EventsStddevSampleClaimTypeDesc = 'EVENTS_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + EventsStddevSampleCorporateActionTickerAsc = 'EVENTS_STDDEV_SAMPLE_CORPORATE_ACTION_TICKER_ASC', + EventsStddevSampleCorporateActionTickerDesc = 'EVENTS_STDDEV_SAMPLE_CORPORATE_ACTION_TICKER_DESC', + EventsStddevSampleCreatedAtAsc = 'EVENTS_STDDEV_SAMPLE_CREATED_AT_ASC', + EventsStddevSampleCreatedAtDesc = 'EVENTS_STDDEV_SAMPLE_CREATED_AT_DESC', + EventsStddevSampleEventArg_0Asc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_0_ASC', + EventsStddevSampleEventArg_0Desc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_0_DESC', + EventsStddevSampleEventArg_1Asc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_1_ASC', + EventsStddevSampleEventArg_1Desc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_1_DESC', + EventsStddevSampleEventArg_2Asc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_2_ASC', + EventsStddevSampleEventArg_2Desc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_2_DESC', + EventsStddevSampleEventArg_3Asc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_3_ASC', + EventsStddevSampleEventArg_3Desc = 'EVENTS_STDDEV_SAMPLE_EVENT_ARG_3_DESC', + EventsStddevSampleEventIdxAsc = 'EVENTS_STDDEV_SAMPLE_EVENT_IDX_ASC', + EventsStddevSampleEventIdxDesc = 'EVENTS_STDDEV_SAMPLE_EVENT_IDX_DESC', + EventsStddevSampleEventIdAsc = 'EVENTS_STDDEV_SAMPLE_EVENT_ID_ASC', + EventsStddevSampleEventIdDesc = 'EVENTS_STDDEV_SAMPLE_EVENT_ID_DESC', + EventsStddevSampleExtrinsicIdxAsc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + EventsStddevSampleExtrinsicIdxDesc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + EventsStddevSampleExtrinsicIdAsc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_ASC', + EventsStddevSampleExtrinsicIdDesc = 'EVENTS_STDDEV_SAMPLE_EXTRINSIC_ID_DESC', + EventsStddevSampleFundraiserOfferingAssetAsc = 'EVENTS_STDDEV_SAMPLE_FUNDRAISER_OFFERING_ASSET_ASC', + EventsStddevSampleFundraiserOfferingAssetDesc = 'EVENTS_STDDEV_SAMPLE_FUNDRAISER_OFFERING_ASSET_DESC', + EventsStddevSampleIdAsc = 'EVENTS_STDDEV_SAMPLE_ID_ASC', + EventsStddevSampleIdDesc = 'EVENTS_STDDEV_SAMPLE_ID_DESC', + EventsStddevSampleModuleIdAsc = 'EVENTS_STDDEV_SAMPLE_MODULE_ID_ASC', + EventsStddevSampleModuleIdDesc = 'EVENTS_STDDEV_SAMPLE_MODULE_ID_DESC', + EventsStddevSampleSpecVersionIdAsc = 'EVENTS_STDDEV_SAMPLE_SPEC_VERSION_ID_ASC', + EventsStddevSampleSpecVersionIdDesc = 'EVENTS_STDDEV_SAMPLE_SPEC_VERSION_ID_DESC', + EventsStddevSampleTransferToAsc = 'EVENTS_STDDEV_SAMPLE_TRANSFER_TO_ASC', + EventsStddevSampleTransferToDesc = 'EVENTS_STDDEV_SAMPLE_TRANSFER_TO_DESC', + EventsSumAttributesAsc = 'EVENTS_SUM_ATTRIBUTES_ASC', + EventsSumAttributesDesc = 'EVENTS_SUM_ATTRIBUTES_DESC', + EventsSumAttributesTxtAsc = 'EVENTS_SUM_ATTRIBUTES_TXT_ASC', + EventsSumAttributesTxtDesc = 'EVENTS_SUM_ATTRIBUTES_TXT_DESC', + EventsSumBlockIdAsc = 'EVENTS_SUM_BLOCK_ID_ASC', + EventsSumBlockIdDesc = 'EVENTS_SUM_BLOCK_ID_DESC', + EventsSumBlockRangeAsc = 'EVENTS_SUM_BLOCK_RANGE_ASC', + EventsSumBlockRangeDesc = 'EVENTS_SUM_BLOCK_RANGE_DESC', + EventsSumClaimExpiryAsc = 'EVENTS_SUM_CLAIM_EXPIRY_ASC', + EventsSumClaimExpiryDesc = 'EVENTS_SUM_CLAIM_EXPIRY_DESC', + EventsSumClaimIssuerAsc = 'EVENTS_SUM_CLAIM_ISSUER_ASC', + EventsSumClaimIssuerDesc = 'EVENTS_SUM_CLAIM_ISSUER_DESC', + EventsSumClaimScopeAsc = 'EVENTS_SUM_CLAIM_SCOPE_ASC', + EventsSumClaimScopeDesc = 'EVENTS_SUM_CLAIM_SCOPE_DESC', + EventsSumClaimTypeAsc = 'EVENTS_SUM_CLAIM_TYPE_ASC', + EventsSumClaimTypeDesc = 'EVENTS_SUM_CLAIM_TYPE_DESC', + EventsSumCorporateActionTickerAsc = 'EVENTS_SUM_CORPORATE_ACTION_TICKER_ASC', + EventsSumCorporateActionTickerDesc = 'EVENTS_SUM_CORPORATE_ACTION_TICKER_DESC', + EventsSumCreatedAtAsc = 'EVENTS_SUM_CREATED_AT_ASC', + EventsSumCreatedAtDesc = 'EVENTS_SUM_CREATED_AT_DESC', + EventsSumEventArg_0Asc = 'EVENTS_SUM_EVENT_ARG_0_ASC', + EventsSumEventArg_0Desc = 'EVENTS_SUM_EVENT_ARG_0_DESC', + EventsSumEventArg_1Asc = 'EVENTS_SUM_EVENT_ARG_1_ASC', + EventsSumEventArg_1Desc = 'EVENTS_SUM_EVENT_ARG_1_DESC', + EventsSumEventArg_2Asc = 'EVENTS_SUM_EVENT_ARG_2_ASC', + EventsSumEventArg_2Desc = 'EVENTS_SUM_EVENT_ARG_2_DESC', + EventsSumEventArg_3Asc = 'EVENTS_SUM_EVENT_ARG_3_ASC', + EventsSumEventArg_3Desc = 'EVENTS_SUM_EVENT_ARG_3_DESC', + EventsSumEventIdxAsc = 'EVENTS_SUM_EVENT_IDX_ASC', + EventsSumEventIdxDesc = 'EVENTS_SUM_EVENT_IDX_DESC', + EventsSumEventIdAsc = 'EVENTS_SUM_EVENT_ID_ASC', + EventsSumEventIdDesc = 'EVENTS_SUM_EVENT_ID_DESC', + EventsSumExtrinsicIdxAsc = 'EVENTS_SUM_EXTRINSIC_IDX_ASC', + EventsSumExtrinsicIdxDesc = 'EVENTS_SUM_EXTRINSIC_IDX_DESC', + EventsSumExtrinsicIdAsc = 'EVENTS_SUM_EXTRINSIC_ID_ASC', + EventsSumExtrinsicIdDesc = 'EVENTS_SUM_EXTRINSIC_ID_DESC', + EventsSumFundraiserOfferingAssetAsc = 'EVENTS_SUM_FUNDRAISER_OFFERING_ASSET_ASC', + EventsSumFundraiserOfferingAssetDesc = 'EVENTS_SUM_FUNDRAISER_OFFERING_ASSET_DESC', + EventsSumIdAsc = 'EVENTS_SUM_ID_ASC', + EventsSumIdDesc = 'EVENTS_SUM_ID_DESC', + EventsSumModuleIdAsc = 'EVENTS_SUM_MODULE_ID_ASC', + EventsSumModuleIdDesc = 'EVENTS_SUM_MODULE_ID_DESC', + EventsSumSpecVersionIdAsc = 'EVENTS_SUM_SPEC_VERSION_ID_ASC', + EventsSumSpecVersionIdDesc = 'EVENTS_SUM_SPEC_VERSION_ID_DESC', + EventsSumTransferToAsc = 'EVENTS_SUM_TRANSFER_TO_ASC', + EventsSumTransferToDesc = 'EVENTS_SUM_TRANSFER_TO_DESC', + EventsVariancePopulationAttributesAsc = 'EVENTS_VARIANCE_POPULATION_ATTRIBUTES_ASC', + EventsVariancePopulationAttributesDesc = 'EVENTS_VARIANCE_POPULATION_ATTRIBUTES_DESC', + EventsVariancePopulationAttributesTxtAsc = 'EVENTS_VARIANCE_POPULATION_ATTRIBUTES_TXT_ASC', + EventsVariancePopulationAttributesTxtDesc = 'EVENTS_VARIANCE_POPULATION_ATTRIBUTES_TXT_DESC', + EventsVariancePopulationBlockIdAsc = 'EVENTS_VARIANCE_POPULATION_BLOCK_ID_ASC', + EventsVariancePopulationBlockIdDesc = 'EVENTS_VARIANCE_POPULATION_BLOCK_ID_DESC', + EventsVariancePopulationBlockRangeAsc = 'EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + EventsVariancePopulationBlockRangeDesc = 'EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + EventsVariancePopulationClaimExpiryAsc = 'EVENTS_VARIANCE_POPULATION_CLAIM_EXPIRY_ASC', + EventsVariancePopulationClaimExpiryDesc = 'EVENTS_VARIANCE_POPULATION_CLAIM_EXPIRY_DESC', + EventsVariancePopulationClaimIssuerAsc = 'EVENTS_VARIANCE_POPULATION_CLAIM_ISSUER_ASC', + EventsVariancePopulationClaimIssuerDesc = 'EVENTS_VARIANCE_POPULATION_CLAIM_ISSUER_DESC', + EventsVariancePopulationClaimScopeAsc = 'EVENTS_VARIANCE_POPULATION_CLAIM_SCOPE_ASC', + EventsVariancePopulationClaimScopeDesc = 'EVENTS_VARIANCE_POPULATION_CLAIM_SCOPE_DESC', + EventsVariancePopulationClaimTypeAsc = 'EVENTS_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + EventsVariancePopulationClaimTypeDesc = 'EVENTS_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + EventsVariancePopulationCorporateActionTickerAsc = 'EVENTS_VARIANCE_POPULATION_CORPORATE_ACTION_TICKER_ASC', + EventsVariancePopulationCorporateActionTickerDesc = 'EVENTS_VARIANCE_POPULATION_CORPORATE_ACTION_TICKER_DESC', + EventsVariancePopulationCreatedAtAsc = 'EVENTS_VARIANCE_POPULATION_CREATED_AT_ASC', + EventsVariancePopulationCreatedAtDesc = 'EVENTS_VARIANCE_POPULATION_CREATED_AT_DESC', + EventsVariancePopulationEventArg_0Asc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_0_ASC', + EventsVariancePopulationEventArg_0Desc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_0_DESC', + EventsVariancePopulationEventArg_1Asc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_1_ASC', + EventsVariancePopulationEventArg_1Desc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_1_DESC', + EventsVariancePopulationEventArg_2Asc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_2_ASC', + EventsVariancePopulationEventArg_2Desc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_2_DESC', + EventsVariancePopulationEventArg_3Asc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_3_ASC', + EventsVariancePopulationEventArg_3Desc = 'EVENTS_VARIANCE_POPULATION_EVENT_ARG_3_DESC', + EventsVariancePopulationEventIdxAsc = 'EVENTS_VARIANCE_POPULATION_EVENT_IDX_ASC', + EventsVariancePopulationEventIdxDesc = 'EVENTS_VARIANCE_POPULATION_EVENT_IDX_DESC', + EventsVariancePopulationEventIdAsc = 'EVENTS_VARIANCE_POPULATION_EVENT_ID_ASC', + EventsVariancePopulationEventIdDesc = 'EVENTS_VARIANCE_POPULATION_EVENT_ID_DESC', + EventsVariancePopulationExtrinsicIdxAsc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + EventsVariancePopulationExtrinsicIdxDesc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + EventsVariancePopulationExtrinsicIdAsc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_ASC', + EventsVariancePopulationExtrinsicIdDesc = 'EVENTS_VARIANCE_POPULATION_EXTRINSIC_ID_DESC', + EventsVariancePopulationFundraiserOfferingAssetAsc = 'EVENTS_VARIANCE_POPULATION_FUNDRAISER_OFFERING_ASSET_ASC', + EventsVariancePopulationFundraiserOfferingAssetDesc = 'EVENTS_VARIANCE_POPULATION_FUNDRAISER_OFFERING_ASSET_DESC', + EventsVariancePopulationIdAsc = 'EVENTS_VARIANCE_POPULATION_ID_ASC', + EventsVariancePopulationIdDesc = 'EVENTS_VARIANCE_POPULATION_ID_DESC', + EventsVariancePopulationModuleIdAsc = 'EVENTS_VARIANCE_POPULATION_MODULE_ID_ASC', + EventsVariancePopulationModuleIdDesc = 'EVENTS_VARIANCE_POPULATION_MODULE_ID_DESC', + EventsVariancePopulationSpecVersionIdAsc = 'EVENTS_VARIANCE_POPULATION_SPEC_VERSION_ID_ASC', + EventsVariancePopulationSpecVersionIdDesc = 'EVENTS_VARIANCE_POPULATION_SPEC_VERSION_ID_DESC', + EventsVariancePopulationTransferToAsc = 'EVENTS_VARIANCE_POPULATION_TRANSFER_TO_ASC', + EventsVariancePopulationTransferToDesc = 'EVENTS_VARIANCE_POPULATION_TRANSFER_TO_DESC', + EventsVarianceSampleAttributesAsc = 'EVENTS_VARIANCE_SAMPLE_ATTRIBUTES_ASC', + EventsVarianceSampleAttributesDesc = 'EVENTS_VARIANCE_SAMPLE_ATTRIBUTES_DESC', + EventsVarianceSampleAttributesTxtAsc = 'EVENTS_VARIANCE_SAMPLE_ATTRIBUTES_TXT_ASC', + EventsVarianceSampleAttributesTxtDesc = 'EVENTS_VARIANCE_SAMPLE_ATTRIBUTES_TXT_DESC', + EventsVarianceSampleBlockIdAsc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_ID_ASC', + EventsVarianceSampleBlockIdDesc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_ID_DESC', + EventsVarianceSampleBlockRangeAsc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + EventsVarianceSampleBlockRangeDesc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + EventsVarianceSampleClaimExpiryAsc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_EXPIRY_ASC', + EventsVarianceSampleClaimExpiryDesc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_EXPIRY_DESC', + EventsVarianceSampleClaimIssuerAsc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_ISSUER_ASC', + EventsVarianceSampleClaimIssuerDesc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_ISSUER_DESC', + EventsVarianceSampleClaimScopeAsc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_SCOPE_ASC', + EventsVarianceSampleClaimScopeDesc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_SCOPE_DESC', + EventsVarianceSampleClaimTypeAsc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + EventsVarianceSampleClaimTypeDesc = 'EVENTS_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + EventsVarianceSampleCorporateActionTickerAsc = 'EVENTS_VARIANCE_SAMPLE_CORPORATE_ACTION_TICKER_ASC', + EventsVarianceSampleCorporateActionTickerDesc = 'EVENTS_VARIANCE_SAMPLE_CORPORATE_ACTION_TICKER_DESC', + EventsVarianceSampleCreatedAtAsc = 'EVENTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + EventsVarianceSampleCreatedAtDesc = 'EVENTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + EventsVarianceSampleEventArg_0Asc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_0_ASC', + EventsVarianceSampleEventArg_0Desc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_0_DESC', + EventsVarianceSampleEventArg_1Asc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_1_ASC', + EventsVarianceSampleEventArg_1Desc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_1_DESC', + EventsVarianceSampleEventArg_2Asc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_2_ASC', + EventsVarianceSampleEventArg_2Desc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_2_DESC', + EventsVarianceSampleEventArg_3Asc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_3_ASC', + EventsVarianceSampleEventArg_3Desc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ARG_3_DESC', + EventsVarianceSampleEventIdxAsc = 'EVENTS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + EventsVarianceSampleEventIdxDesc = 'EVENTS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + EventsVarianceSampleEventIdAsc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ID_ASC', + EventsVarianceSampleEventIdDesc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ID_DESC', + EventsVarianceSampleExtrinsicIdxAsc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + EventsVarianceSampleExtrinsicIdxDesc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + EventsVarianceSampleExtrinsicIdAsc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_ASC', + EventsVarianceSampleExtrinsicIdDesc = 'EVENTS_VARIANCE_SAMPLE_EXTRINSIC_ID_DESC', + EventsVarianceSampleFundraiserOfferingAssetAsc = 'EVENTS_VARIANCE_SAMPLE_FUNDRAISER_OFFERING_ASSET_ASC', + EventsVarianceSampleFundraiserOfferingAssetDesc = 'EVENTS_VARIANCE_SAMPLE_FUNDRAISER_OFFERING_ASSET_DESC', + EventsVarianceSampleIdAsc = 'EVENTS_VARIANCE_SAMPLE_ID_ASC', + EventsVarianceSampleIdDesc = 'EVENTS_VARIANCE_SAMPLE_ID_DESC', + EventsVarianceSampleModuleIdAsc = 'EVENTS_VARIANCE_SAMPLE_MODULE_ID_ASC', + EventsVarianceSampleModuleIdDesc = 'EVENTS_VARIANCE_SAMPLE_MODULE_ID_DESC', + EventsVarianceSampleSpecVersionIdAsc = 'EVENTS_VARIANCE_SAMPLE_SPEC_VERSION_ID_ASC', + EventsVarianceSampleSpecVersionIdDesc = 'EVENTS_VARIANCE_SAMPLE_SPEC_VERSION_ID_DESC', + EventsVarianceSampleTransferToAsc = 'EVENTS_VARIANCE_SAMPLE_TRANSFER_TO_ASC', + EventsVarianceSampleTransferToDesc = 'EVENTS_VARIANCE_SAMPLE_TRANSFER_TO_DESC', + ExtrinsicHashAsc = 'EXTRINSIC_HASH_ASC', + ExtrinsicHashDesc = 'EXTRINSIC_HASH_DESC', + ExtrinsicIdxAsc = 'EXTRINSIC_IDX_ASC', + ExtrinsicIdxDesc = 'EXTRINSIC_IDX_DESC', + ExtrinsicLengthAsc = 'EXTRINSIC_LENGTH_ASC', + ExtrinsicLengthDesc = 'EXTRINSIC_LENGTH_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + ModuleIdAsc = 'MODULE_ID_ASC', + ModuleIdDesc = 'MODULE_ID_DESC', + Natural = 'NATURAL', + NonceAsc = 'NONCE_ASC', + NonceDesc = 'NONCE_DESC', + ParamsAsc = 'PARAMS_ASC', + ParamsDesc = 'PARAMS_DESC', + ParamsTxtAsc = 'PARAMS_TXT_ASC', + ParamsTxtDesc = 'PARAMS_TXT_DESC', + PolyxTransactionsAverageAddressAsc = 'POLYX_TRANSACTIONS_AVERAGE_ADDRESS_ASC', + PolyxTransactionsAverageAddressDesc = 'POLYX_TRANSACTIONS_AVERAGE_ADDRESS_DESC', + PolyxTransactionsAverageAmountAsc = 'POLYX_TRANSACTIONS_AVERAGE_AMOUNT_ASC', + PolyxTransactionsAverageAmountDesc = 'POLYX_TRANSACTIONS_AVERAGE_AMOUNT_DESC', + PolyxTransactionsAverageBlockRangeAsc = 'POLYX_TRANSACTIONS_AVERAGE_BLOCK_RANGE_ASC', + PolyxTransactionsAverageBlockRangeDesc = 'POLYX_TRANSACTIONS_AVERAGE_BLOCK_RANGE_DESC', + PolyxTransactionsAverageCallIdAsc = 'POLYX_TRANSACTIONS_AVERAGE_CALL_ID_ASC', + PolyxTransactionsAverageCallIdDesc = 'POLYX_TRANSACTIONS_AVERAGE_CALL_ID_DESC', + PolyxTransactionsAverageCreatedAtAsc = 'POLYX_TRANSACTIONS_AVERAGE_CREATED_AT_ASC', + PolyxTransactionsAverageCreatedAtDesc = 'POLYX_TRANSACTIONS_AVERAGE_CREATED_AT_DESC', + PolyxTransactionsAverageCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + PolyxTransactionsAverageCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + PolyxTransactionsAverageDatetimeAsc = 'POLYX_TRANSACTIONS_AVERAGE_DATETIME_ASC', + PolyxTransactionsAverageDatetimeDesc = 'POLYX_TRANSACTIONS_AVERAGE_DATETIME_DESC', + PolyxTransactionsAverageEventIdxAsc = 'POLYX_TRANSACTIONS_AVERAGE_EVENT_IDX_ASC', + PolyxTransactionsAverageEventIdxDesc = 'POLYX_TRANSACTIONS_AVERAGE_EVENT_IDX_DESC', + PolyxTransactionsAverageEventIdAsc = 'POLYX_TRANSACTIONS_AVERAGE_EVENT_ID_ASC', + PolyxTransactionsAverageEventIdDesc = 'POLYX_TRANSACTIONS_AVERAGE_EVENT_ID_DESC', + PolyxTransactionsAverageExtrinsicIdAsc = 'POLYX_TRANSACTIONS_AVERAGE_EXTRINSIC_ID_ASC', + PolyxTransactionsAverageExtrinsicIdDesc = 'POLYX_TRANSACTIONS_AVERAGE_EXTRINSIC_ID_DESC', + PolyxTransactionsAverageIdentityIdAsc = 'POLYX_TRANSACTIONS_AVERAGE_IDENTITY_ID_ASC', + PolyxTransactionsAverageIdentityIdDesc = 'POLYX_TRANSACTIONS_AVERAGE_IDENTITY_ID_DESC', + PolyxTransactionsAverageIdAsc = 'POLYX_TRANSACTIONS_AVERAGE_ID_ASC', + PolyxTransactionsAverageIdDesc = 'POLYX_TRANSACTIONS_AVERAGE_ID_DESC', + PolyxTransactionsAverageMemoAsc = 'POLYX_TRANSACTIONS_AVERAGE_MEMO_ASC', + PolyxTransactionsAverageMemoDesc = 'POLYX_TRANSACTIONS_AVERAGE_MEMO_DESC', + PolyxTransactionsAverageModuleIdAsc = 'POLYX_TRANSACTIONS_AVERAGE_MODULE_ID_ASC', + PolyxTransactionsAverageModuleIdDesc = 'POLYX_TRANSACTIONS_AVERAGE_MODULE_ID_DESC', + PolyxTransactionsAverageToAddressAsc = 'POLYX_TRANSACTIONS_AVERAGE_TO_ADDRESS_ASC', + PolyxTransactionsAverageToAddressDesc = 'POLYX_TRANSACTIONS_AVERAGE_TO_ADDRESS_DESC', + PolyxTransactionsAverageToIdAsc = 'POLYX_TRANSACTIONS_AVERAGE_TO_ID_ASC', + PolyxTransactionsAverageToIdDesc = 'POLYX_TRANSACTIONS_AVERAGE_TO_ID_DESC', + PolyxTransactionsAverageTypeAsc = 'POLYX_TRANSACTIONS_AVERAGE_TYPE_ASC', + PolyxTransactionsAverageTypeDesc = 'POLYX_TRANSACTIONS_AVERAGE_TYPE_DESC', + PolyxTransactionsAverageUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsAverageUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsCountAsc = 'POLYX_TRANSACTIONS_COUNT_ASC', + PolyxTransactionsCountDesc = 'POLYX_TRANSACTIONS_COUNT_DESC', + PolyxTransactionsDistinctCountAddressAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_ADDRESS_ASC', + PolyxTransactionsDistinctCountAddressDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_ADDRESS_DESC', + PolyxTransactionsDistinctCountAmountAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_AMOUNT_ASC', + PolyxTransactionsDistinctCountAmountDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_AMOUNT_DESC', + PolyxTransactionsDistinctCountBlockRangeAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PolyxTransactionsDistinctCountBlockRangeDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PolyxTransactionsDistinctCountCallIdAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_CALL_ID_ASC', + PolyxTransactionsDistinctCountCallIdDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_CALL_ID_DESC', + PolyxTransactionsDistinctCountCreatedAtAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_CREATED_AT_ASC', + PolyxTransactionsDistinctCountCreatedAtDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_CREATED_AT_DESC', + PolyxTransactionsDistinctCountCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PolyxTransactionsDistinctCountCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PolyxTransactionsDistinctCountDatetimeAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_DATETIME_ASC', + PolyxTransactionsDistinctCountDatetimeDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_DATETIME_DESC', + PolyxTransactionsDistinctCountEventIdxAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_EVENT_IDX_ASC', + PolyxTransactionsDistinctCountEventIdxDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_EVENT_IDX_DESC', + PolyxTransactionsDistinctCountEventIdAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_EVENT_ID_ASC', + PolyxTransactionsDistinctCountEventIdDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_EVENT_ID_DESC', + PolyxTransactionsDistinctCountExtrinsicIdAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_EXTRINSIC_ID_ASC', + PolyxTransactionsDistinctCountExtrinsicIdDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_EXTRINSIC_ID_DESC', + PolyxTransactionsDistinctCountIdentityIdAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_IDENTITY_ID_ASC', + PolyxTransactionsDistinctCountIdentityIdDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_IDENTITY_ID_DESC', + PolyxTransactionsDistinctCountIdAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_ID_ASC', + PolyxTransactionsDistinctCountIdDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_ID_DESC', + PolyxTransactionsDistinctCountMemoAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_MEMO_ASC', + PolyxTransactionsDistinctCountMemoDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_MEMO_DESC', + PolyxTransactionsDistinctCountModuleIdAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_MODULE_ID_ASC', + PolyxTransactionsDistinctCountModuleIdDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_MODULE_ID_DESC', + PolyxTransactionsDistinctCountToAddressAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_TO_ADDRESS_ASC', + PolyxTransactionsDistinctCountToAddressDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_TO_ADDRESS_DESC', + PolyxTransactionsDistinctCountToIdAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_TO_ID_ASC', + PolyxTransactionsDistinctCountToIdDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_TO_ID_DESC', + PolyxTransactionsDistinctCountTypeAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_TYPE_ASC', + PolyxTransactionsDistinctCountTypeDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_TYPE_DESC', + PolyxTransactionsDistinctCountUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsDistinctCountUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsMaxAddressAsc = 'POLYX_TRANSACTIONS_MAX_ADDRESS_ASC', + PolyxTransactionsMaxAddressDesc = 'POLYX_TRANSACTIONS_MAX_ADDRESS_DESC', + PolyxTransactionsMaxAmountAsc = 'POLYX_TRANSACTIONS_MAX_AMOUNT_ASC', + PolyxTransactionsMaxAmountDesc = 'POLYX_TRANSACTIONS_MAX_AMOUNT_DESC', + PolyxTransactionsMaxBlockRangeAsc = 'POLYX_TRANSACTIONS_MAX_BLOCK_RANGE_ASC', + PolyxTransactionsMaxBlockRangeDesc = 'POLYX_TRANSACTIONS_MAX_BLOCK_RANGE_DESC', + PolyxTransactionsMaxCallIdAsc = 'POLYX_TRANSACTIONS_MAX_CALL_ID_ASC', + PolyxTransactionsMaxCallIdDesc = 'POLYX_TRANSACTIONS_MAX_CALL_ID_DESC', + PolyxTransactionsMaxCreatedAtAsc = 'POLYX_TRANSACTIONS_MAX_CREATED_AT_ASC', + PolyxTransactionsMaxCreatedAtDesc = 'POLYX_TRANSACTIONS_MAX_CREATED_AT_DESC', + PolyxTransactionsMaxCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_MAX_CREATED_BLOCK_ID_ASC', + PolyxTransactionsMaxCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_MAX_CREATED_BLOCK_ID_DESC', + PolyxTransactionsMaxDatetimeAsc = 'POLYX_TRANSACTIONS_MAX_DATETIME_ASC', + PolyxTransactionsMaxDatetimeDesc = 'POLYX_TRANSACTIONS_MAX_DATETIME_DESC', + PolyxTransactionsMaxEventIdxAsc = 'POLYX_TRANSACTIONS_MAX_EVENT_IDX_ASC', + PolyxTransactionsMaxEventIdxDesc = 'POLYX_TRANSACTIONS_MAX_EVENT_IDX_DESC', + PolyxTransactionsMaxEventIdAsc = 'POLYX_TRANSACTIONS_MAX_EVENT_ID_ASC', + PolyxTransactionsMaxEventIdDesc = 'POLYX_TRANSACTIONS_MAX_EVENT_ID_DESC', + PolyxTransactionsMaxExtrinsicIdAsc = 'POLYX_TRANSACTIONS_MAX_EXTRINSIC_ID_ASC', + PolyxTransactionsMaxExtrinsicIdDesc = 'POLYX_TRANSACTIONS_MAX_EXTRINSIC_ID_DESC', + PolyxTransactionsMaxIdentityIdAsc = 'POLYX_TRANSACTIONS_MAX_IDENTITY_ID_ASC', + PolyxTransactionsMaxIdentityIdDesc = 'POLYX_TRANSACTIONS_MAX_IDENTITY_ID_DESC', + PolyxTransactionsMaxIdAsc = 'POLYX_TRANSACTIONS_MAX_ID_ASC', + PolyxTransactionsMaxIdDesc = 'POLYX_TRANSACTIONS_MAX_ID_DESC', + PolyxTransactionsMaxMemoAsc = 'POLYX_TRANSACTIONS_MAX_MEMO_ASC', + PolyxTransactionsMaxMemoDesc = 'POLYX_TRANSACTIONS_MAX_MEMO_DESC', + PolyxTransactionsMaxModuleIdAsc = 'POLYX_TRANSACTIONS_MAX_MODULE_ID_ASC', + PolyxTransactionsMaxModuleIdDesc = 'POLYX_TRANSACTIONS_MAX_MODULE_ID_DESC', + PolyxTransactionsMaxToAddressAsc = 'POLYX_TRANSACTIONS_MAX_TO_ADDRESS_ASC', + PolyxTransactionsMaxToAddressDesc = 'POLYX_TRANSACTIONS_MAX_TO_ADDRESS_DESC', + PolyxTransactionsMaxToIdAsc = 'POLYX_TRANSACTIONS_MAX_TO_ID_ASC', + PolyxTransactionsMaxToIdDesc = 'POLYX_TRANSACTIONS_MAX_TO_ID_DESC', + PolyxTransactionsMaxTypeAsc = 'POLYX_TRANSACTIONS_MAX_TYPE_ASC', + PolyxTransactionsMaxTypeDesc = 'POLYX_TRANSACTIONS_MAX_TYPE_DESC', + PolyxTransactionsMaxUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_MAX_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsMaxUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_MAX_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsMinAddressAsc = 'POLYX_TRANSACTIONS_MIN_ADDRESS_ASC', + PolyxTransactionsMinAddressDesc = 'POLYX_TRANSACTIONS_MIN_ADDRESS_DESC', + PolyxTransactionsMinAmountAsc = 'POLYX_TRANSACTIONS_MIN_AMOUNT_ASC', + PolyxTransactionsMinAmountDesc = 'POLYX_TRANSACTIONS_MIN_AMOUNT_DESC', + PolyxTransactionsMinBlockRangeAsc = 'POLYX_TRANSACTIONS_MIN_BLOCK_RANGE_ASC', + PolyxTransactionsMinBlockRangeDesc = 'POLYX_TRANSACTIONS_MIN_BLOCK_RANGE_DESC', + PolyxTransactionsMinCallIdAsc = 'POLYX_TRANSACTIONS_MIN_CALL_ID_ASC', + PolyxTransactionsMinCallIdDesc = 'POLYX_TRANSACTIONS_MIN_CALL_ID_DESC', + PolyxTransactionsMinCreatedAtAsc = 'POLYX_TRANSACTIONS_MIN_CREATED_AT_ASC', + PolyxTransactionsMinCreatedAtDesc = 'POLYX_TRANSACTIONS_MIN_CREATED_AT_DESC', + PolyxTransactionsMinCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_MIN_CREATED_BLOCK_ID_ASC', + PolyxTransactionsMinCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_MIN_CREATED_BLOCK_ID_DESC', + PolyxTransactionsMinDatetimeAsc = 'POLYX_TRANSACTIONS_MIN_DATETIME_ASC', + PolyxTransactionsMinDatetimeDesc = 'POLYX_TRANSACTIONS_MIN_DATETIME_DESC', + PolyxTransactionsMinEventIdxAsc = 'POLYX_TRANSACTIONS_MIN_EVENT_IDX_ASC', + PolyxTransactionsMinEventIdxDesc = 'POLYX_TRANSACTIONS_MIN_EVENT_IDX_DESC', + PolyxTransactionsMinEventIdAsc = 'POLYX_TRANSACTIONS_MIN_EVENT_ID_ASC', + PolyxTransactionsMinEventIdDesc = 'POLYX_TRANSACTIONS_MIN_EVENT_ID_DESC', + PolyxTransactionsMinExtrinsicIdAsc = 'POLYX_TRANSACTIONS_MIN_EXTRINSIC_ID_ASC', + PolyxTransactionsMinExtrinsicIdDesc = 'POLYX_TRANSACTIONS_MIN_EXTRINSIC_ID_DESC', + PolyxTransactionsMinIdentityIdAsc = 'POLYX_TRANSACTIONS_MIN_IDENTITY_ID_ASC', + PolyxTransactionsMinIdentityIdDesc = 'POLYX_TRANSACTIONS_MIN_IDENTITY_ID_DESC', + PolyxTransactionsMinIdAsc = 'POLYX_TRANSACTIONS_MIN_ID_ASC', + PolyxTransactionsMinIdDesc = 'POLYX_TRANSACTIONS_MIN_ID_DESC', + PolyxTransactionsMinMemoAsc = 'POLYX_TRANSACTIONS_MIN_MEMO_ASC', + PolyxTransactionsMinMemoDesc = 'POLYX_TRANSACTIONS_MIN_MEMO_DESC', + PolyxTransactionsMinModuleIdAsc = 'POLYX_TRANSACTIONS_MIN_MODULE_ID_ASC', + PolyxTransactionsMinModuleIdDesc = 'POLYX_TRANSACTIONS_MIN_MODULE_ID_DESC', + PolyxTransactionsMinToAddressAsc = 'POLYX_TRANSACTIONS_MIN_TO_ADDRESS_ASC', + PolyxTransactionsMinToAddressDesc = 'POLYX_TRANSACTIONS_MIN_TO_ADDRESS_DESC', + PolyxTransactionsMinToIdAsc = 'POLYX_TRANSACTIONS_MIN_TO_ID_ASC', + PolyxTransactionsMinToIdDesc = 'POLYX_TRANSACTIONS_MIN_TO_ID_DESC', + PolyxTransactionsMinTypeAsc = 'POLYX_TRANSACTIONS_MIN_TYPE_ASC', + PolyxTransactionsMinTypeDesc = 'POLYX_TRANSACTIONS_MIN_TYPE_DESC', + PolyxTransactionsMinUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_MIN_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsMinUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_MIN_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsStddevPopulationAddressAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_ADDRESS_ASC', + PolyxTransactionsStddevPopulationAddressDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_ADDRESS_DESC', + PolyxTransactionsStddevPopulationAmountAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_AMOUNT_ASC', + PolyxTransactionsStddevPopulationAmountDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_AMOUNT_DESC', + PolyxTransactionsStddevPopulationBlockRangeAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PolyxTransactionsStddevPopulationBlockRangeDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PolyxTransactionsStddevPopulationCallIdAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_CALL_ID_ASC', + PolyxTransactionsStddevPopulationCallIdDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_CALL_ID_DESC', + PolyxTransactionsStddevPopulationCreatedAtAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_CREATED_AT_ASC', + PolyxTransactionsStddevPopulationCreatedAtDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_CREATED_AT_DESC', + PolyxTransactionsStddevPopulationCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PolyxTransactionsStddevPopulationCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PolyxTransactionsStddevPopulationDatetimeAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_DATETIME_ASC', + PolyxTransactionsStddevPopulationDatetimeDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_DATETIME_DESC', + PolyxTransactionsStddevPopulationEventIdxAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_EVENT_IDX_ASC', + PolyxTransactionsStddevPopulationEventIdxDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_EVENT_IDX_DESC', + PolyxTransactionsStddevPopulationEventIdAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_EVENT_ID_ASC', + PolyxTransactionsStddevPopulationEventIdDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_EVENT_ID_DESC', + PolyxTransactionsStddevPopulationExtrinsicIdAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_EXTRINSIC_ID_ASC', + PolyxTransactionsStddevPopulationExtrinsicIdDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_EXTRINSIC_ID_DESC', + PolyxTransactionsStddevPopulationIdentityIdAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_IDENTITY_ID_ASC', + PolyxTransactionsStddevPopulationIdentityIdDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_IDENTITY_ID_DESC', + PolyxTransactionsStddevPopulationIdAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_ID_ASC', + PolyxTransactionsStddevPopulationIdDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_ID_DESC', + PolyxTransactionsStddevPopulationMemoAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_MEMO_ASC', + PolyxTransactionsStddevPopulationMemoDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_MEMO_DESC', + PolyxTransactionsStddevPopulationModuleIdAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_MODULE_ID_ASC', + PolyxTransactionsStddevPopulationModuleIdDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_MODULE_ID_DESC', + PolyxTransactionsStddevPopulationToAddressAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_TO_ADDRESS_ASC', + PolyxTransactionsStddevPopulationToAddressDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_TO_ADDRESS_DESC', + PolyxTransactionsStddevPopulationToIdAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_TO_ID_ASC', + PolyxTransactionsStddevPopulationToIdDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_TO_ID_DESC', + PolyxTransactionsStddevPopulationTypeAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_TYPE_ASC', + PolyxTransactionsStddevPopulationTypeDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_TYPE_DESC', + PolyxTransactionsStddevPopulationUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsStddevPopulationUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsStddevSampleAddressAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_ADDRESS_ASC', + PolyxTransactionsStddevSampleAddressDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_ADDRESS_DESC', + PolyxTransactionsStddevSampleAmountAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_AMOUNT_ASC', + PolyxTransactionsStddevSampleAmountDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_AMOUNT_DESC', + PolyxTransactionsStddevSampleBlockRangeAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PolyxTransactionsStddevSampleBlockRangeDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PolyxTransactionsStddevSampleCallIdAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_CALL_ID_ASC', + PolyxTransactionsStddevSampleCallIdDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_CALL_ID_DESC', + PolyxTransactionsStddevSampleCreatedAtAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + PolyxTransactionsStddevSampleCreatedAtDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + PolyxTransactionsStddevSampleCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PolyxTransactionsStddevSampleCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PolyxTransactionsStddevSampleDatetimeAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_DATETIME_ASC', + PolyxTransactionsStddevSampleDatetimeDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_DATETIME_DESC', + PolyxTransactionsStddevSampleEventIdxAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_EVENT_IDX_ASC', + PolyxTransactionsStddevSampleEventIdxDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_EVENT_IDX_DESC', + PolyxTransactionsStddevSampleEventIdAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_EVENT_ID_ASC', + PolyxTransactionsStddevSampleEventIdDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_EVENT_ID_DESC', + PolyxTransactionsStddevSampleExtrinsicIdAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_EXTRINSIC_ID_ASC', + PolyxTransactionsStddevSampleExtrinsicIdDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_EXTRINSIC_ID_DESC', + PolyxTransactionsStddevSampleIdentityIdAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + PolyxTransactionsStddevSampleIdentityIdDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + PolyxTransactionsStddevSampleIdAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_ID_ASC', + PolyxTransactionsStddevSampleIdDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_ID_DESC', + PolyxTransactionsStddevSampleMemoAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_MEMO_ASC', + PolyxTransactionsStddevSampleMemoDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_MEMO_DESC', + PolyxTransactionsStddevSampleModuleIdAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_MODULE_ID_ASC', + PolyxTransactionsStddevSampleModuleIdDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_MODULE_ID_DESC', + PolyxTransactionsStddevSampleToAddressAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_TO_ADDRESS_ASC', + PolyxTransactionsStddevSampleToAddressDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_TO_ADDRESS_DESC', + PolyxTransactionsStddevSampleToIdAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_TO_ID_ASC', + PolyxTransactionsStddevSampleToIdDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_TO_ID_DESC', + PolyxTransactionsStddevSampleTypeAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_TYPE_ASC', + PolyxTransactionsStddevSampleTypeDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_TYPE_DESC', + PolyxTransactionsStddevSampleUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsStddevSampleUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsSumAddressAsc = 'POLYX_TRANSACTIONS_SUM_ADDRESS_ASC', + PolyxTransactionsSumAddressDesc = 'POLYX_TRANSACTIONS_SUM_ADDRESS_DESC', + PolyxTransactionsSumAmountAsc = 'POLYX_TRANSACTIONS_SUM_AMOUNT_ASC', + PolyxTransactionsSumAmountDesc = 'POLYX_TRANSACTIONS_SUM_AMOUNT_DESC', + PolyxTransactionsSumBlockRangeAsc = 'POLYX_TRANSACTIONS_SUM_BLOCK_RANGE_ASC', + PolyxTransactionsSumBlockRangeDesc = 'POLYX_TRANSACTIONS_SUM_BLOCK_RANGE_DESC', + PolyxTransactionsSumCallIdAsc = 'POLYX_TRANSACTIONS_SUM_CALL_ID_ASC', + PolyxTransactionsSumCallIdDesc = 'POLYX_TRANSACTIONS_SUM_CALL_ID_DESC', + PolyxTransactionsSumCreatedAtAsc = 'POLYX_TRANSACTIONS_SUM_CREATED_AT_ASC', + PolyxTransactionsSumCreatedAtDesc = 'POLYX_TRANSACTIONS_SUM_CREATED_AT_DESC', + PolyxTransactionsSumCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_SUM_CREATED_BLOCK_ID_ASC', + PolyxTransactionsSumCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_SUM_CREATED_BLOCK_ID_DESC', + PolyxTransactionsSumDatetimeAsc = 'POLYX_TRANSACTIONS_SUM_DATETIME_ASC', + PolyxTransactionsSumDatetimeDesc = 'POLYX_TRANSACTIONS_SUM_DATETIME_DESC', + PolyxTransactionsSumEventIdxAsc = 'POLYX_TRANSACTIONS_SUM_EVENT_IDX_ASC', + PolyxTransactionsSumEventIdxDesc = 'POLYX_TRANSACTIONS_SUM_EVENT_IDX_DESC', + PolyxTransactionsSumEventIdAsc = 'POLYX_TRANSACTIONS_SUM_EVENT_ID_ASC', + PolyxTransactionsSumEventIdDesc = 'POLYX_TRANSACTIONS_SUM_EVENT_ID_DESC', + PolyxTransactionsSumExtrinsicIdAsc = 'POLYX_TRANSACTIONS_SUM_EXTRINSIC_ID_ASC', + PolyxTransactionsSumExtrinsicIdDesc = 'POLYX_TRANSACTIONS_SUM_EXTRINSIC_ID_DESC', + PolyxTransactionsSumIdentityIdAsc = 'POLYX_TRANSACTIONS_SUM_IDENTITY_ID_ASC', + PolyxTransactionsSumIdentityIdDesc = 'POLYX_TRANSACTIONS_SUM_IDENTITY_ID_DESC', + PolyxTransactionsSumIdAsc = 'POLYX_TRANSACTIONS_SUM_ID_ASC', + PolyxTransactionsSumIdDesc = 'POLYX_TRANSACTIONS_SUM_ID_DESC', + PolyxTransactionsSumMemoAsc = 'POLYX_TRANSACTIONS_SUM_MEMO_ASC', + PolyxTransactionsSumMemoDesc = 'POLYX_TRANSACTIONS_SUM_MEMO_DESC', + PolyxTransactionsSumModuleIdAsc = 'POLYX_TRANSACTIONS_SUM_MODULE_ID_ASC', + PolyxTransactionsSumModuleIdDesc = 'POLYX_TRANSACTIONS_SUM_MODULE_ID_DESC', + PolyxTransactionsSumToAddressAsc = 'POLYX_TRANSACTIONS_SUM_TO_ADDRESS_ASC', + PolyxTransactionsSumToAddressDesc = 'POLYX_TRANSACTIONS_SUM_TO_ADDRESS_DESC', + PolyxTransactionsSumToIdAsc = 'POLYX_TRANSACTIONS_SUM_TO_ID_ASC', + PolyxTransactionsSumToIdDesc = 'POLYX_TRANSACTIONS_SUM_TO_ID_DESC', + PolyxTransactionsSumTypeAsc = 'POLYX_TRANSACTIONS_SUM_TYPE_ASC', + PolyxTransactionsSumTypeDesc = 'POLYX_TRANSACTIONS_SUM_TYPE_DESC', + PolyxTransactionsSumUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_SUM_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsSumUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_SUM_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsVariancePopulationAddressAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_ADDRESS_ASC', + PolyxTransactionsVariancePopulationAddressDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_ADDRESS_DESC', + PolyxTransactionsVariancePopulationAmountAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_AMOUNT_ASC', + PolyxTransactionsVariancePopulationAmountDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_AMOUNT_DESC', + PolyxTransactionsVariancePopulationBlockRangeAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PolyxTransactionsVariancePopulationBlockRangeDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PolyxTransactionsVariancePopulationCallIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_CALL_ID_ASC', + PolyxTransactionsVariancePopulationCallIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_CALL_ID_DESC', + PolyxTransactionsVariancePopulationCreatedAtAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + PolyxTransactionsVariancePopulationCreatedAtDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + PolyxTransactionsVariancePopulationCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PolyxTransactionsVariancePopulationCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PolyxTransactionsVariancePopulationDatetimeAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_DATETIME_ASC', + PolyxTransactionsVariancePopulationDatetimeDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_DATETIME_DESC', + PolyxTransactionsVariancePopulationEventIdxAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_EVENT_IDX_ASC', + PolyxTransactionsVariancePopulationEventIdxDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_EVENT_IDX_DESC', + PolyxTransactionsVariancePopulationEventIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_EVENT_ID_ASC', + PolyxTransactionsVariancePopulationEventIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_EVENT_ID_DESC', + PolyxTransactionsVariancePopulationExtrinsicIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_EXTRINSIC_ID_ASC', + PolyxTransactionsVariancePopulationExtrinsicIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_EXTRINSIC_ID_DESC', + PolyxTransactionsVariancePopulationIdentityIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + PolyxTransactionsVariancePopulationIdentityIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + PolyxTransactionsVariancePopulationIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_ID_ASC', + PolyxTransactionsVariancePopulationIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_ID_DESC', + PolyxTransactionsVariancePopulationMemoAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_MEMO_ASC', + PolyxTransactionsVariancePopulationMemoDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_MEMO_DESC', + PolyxTransactionsVariancePopulationModuleIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_MODULE_ID_ASC', + PolyxTransactionsVariancePopulationModuleIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_MODULE_ID_DESC', + PolyxTransactionsVariancePopulationToAddressAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_TO_ADDRESS_ASC', + PolyxTransactionsVariancePopulationToAddressDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_TO_ADDRESS_DESC', + PolyxTransactionsVariancePopulationToIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_TO_ID_ASC', + PolyxTransactionsVariancePopulationToIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_TO_ID_DESC', + PolyxTransactionsVariancePopulationTypeAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_TYPE_ASC', + PolyxTransactionsVariancePopulationTypeDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_TYPE_DESC', + PolyxTransactionsVariancePopulationUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsVariancePopulationUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PolyxTransactionsVarianceSampleAddressAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_ADDRESS_ASC', + PolyxTransactionsVarianceSampleAddressDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_ADDRESS_DESC', + PolyxTransactionsVarianceSampleAmountAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_AMOUNT_ASC', + PolyxTransactionsVarianceSampleAmountDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_AMOUNT_DESC', + PolyxTransactionsVarianceSampleBlockRangeAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PolyxTransactionsVarianceSampleBlockRangeDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PolyxTransactionsVarianceSampleCallIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_CALL_ID_ASC', + PolyxTransactionsVarianceSampleCallIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_CALL_ID_DESC', + PolyxTransactionsVarianceSampleCreatedAtAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + PolyxTransactionsVarianceSampleCreatedAtDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + PolyxTransactionsVarianceSampleCreatedBlockIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PolyxTransactionsVarianceSampleCreatedBlockIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PolyxTransactionsVarianceSampleDatetimeAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_DATETIME_ASC', + PolyxTransactionsVarianceSampleDatetimeDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_DATETIME_DESC', + PolyxTransactionsVarianceSampleEventIdxAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + PolyxTransactionsVarianceSampleEventIdxDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + PolyxTransactionsVarianceSampleEventIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_ID_ASC', + PolyxTransactionsVarianceSampleEventIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_ID_DESC', + PolyxTransactionsVarianceSampleExtrinsicIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_EXTRINSIC_ID_ASC', + PolyxTransactionsVarianceSampleExtrinsicIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_EXTRINSIC_ID_DESC', + PolyxTransactionsVarianceSampleIdentityIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + PolyxTransactionsVarianceSampleIdentityIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + PolyxTransactionsVarianceSampleIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_ID_ASC', + PolyxTransactionsVarianceSampleIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_ID_DESC', + PolyxTransactionsVarianceSampleMemoAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_MEMO_ASC', + PolyxTransactionsVarianceSampleMemoDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_MEMO_DESC', + PolyxTransactionsVarianceSampleModuleIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_MODULE_ID_ASC', + PolyxTransactionsVarianceSampleModuleIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_MODULE_ID_DESC', + PolyxTransactionsVarianceSampleToAddressAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_TO_ADDRESS_ASC', + PolyxTransactionsVarianceSampleToAddressDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_TO_ADDRESS_DESC', + PolyxTransactionsVarianceSampleToIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_TO_ID_ASC', + PolyxTransactionsVarianceSampleToIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_TO_ID_DESC', + PolyxTransactionsVarianceSampleTypeAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_TYPE_ASC', + PolyxTransactionsVarianceSampleTypeDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_TYPE_DESC', + PolyxTransactionsVarianceSampleUpdatedBlockIdAsc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PolyxTransactionsVarianceSampleUpdatedBlockIdDesc = 'POLYX_TRANSACTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + SignedbyAddressAsc = 'SIGNEDBY_ADDRESS_ASC', + SignedbyAddressDesc = 'SIGNEDBY_ADDRESS_DESC', + SignedAsc = 'SIGNED_ASC', + SignedDesc = 'SIGNED_DESC', + SpecVersionIdAsc = 'SPEC_VERSION_ID_ASC', + SpecVersionIdDesc = 'SPEC_VERSION_ID_DESC', + SuccessAsc = 'SUCCESS_ASC', + SuccessDesc = 'SUCCESS_DESC', +} + +export type FoundType = Node & { + __typename?: 'FoundType'; + createdAt?: Maybe; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + rawType: Scalars['String']['output']; +}; + +export type FoundTypeAggregates = { + __typename?: 'FoundTypeAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +export type FoundTypeDistinctCountAggregates = { + __typename?: 'FoundTypeDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of rawType across the matching connection */ + rawType?: Maybe; +}; + +/** A filter to be used against `FoundType` object types. All fields are combined with a logical ‘and.’ */ +export type FoundTypeFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `rawType` field. */ + rawType?: InputMaybe; +}; + +/** A connection to a list of `FoundType` values. */ +export type FoundTypesConnection = { + __typename?: 'FoundTypesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `FoundType` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `FoundType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `FoundType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `FoundType` values. */ +export type FoundTypesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `FoundType` edge in the connection. */ +export type FoundTypesEdge = { + __typename?: 'FoundTypesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `FoundType` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `FoundType` for usage during aggregation. */ +export enum FoundTypesGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + Id = 'ID', + RawType = 'RAW_TYPE', +} + +export type FoundTypesHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type FoundTypesHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `FoundType` aggregates. */ +export type FoundTypesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type FoundTypesHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type FoundTypesHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type FoundTypesHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type FoundTypesHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type FoundTypesHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type FoundTypesHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type FoundTypesHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `FoundType`. */ +export enum FoundTypesOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + RawTypeAsc = 'RAW_TYPE_ASC', + RawTypeDesc = 'RAW_TYPE_DESC', +} + +export type Funding = Node & { + __typename?: 'Funding'; + amount: Scalars['BigFloat']['output']; + /** Reads a single `Asset` that is related to this `Funding`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Funding`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + fundingRound: Scalars['String']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + totalFundingAmount: Scalars['BigFloat']['output']; + /** Reads a single `Block` that is related to this `Funding`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type FundingAggregates = { + __typename?: 'FundingAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Funding` object types. */ +export type FundingAggregatesFilter = { + /** Mean average aggregate over matching `Funding` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Funding` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Funding` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Funding` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Funding` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Funding` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Funding` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Funding` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Funding` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Funding` objects. */ + varianceSample?: InputMaybe; +}; + +export type FundingAverageAggregateFilter = { + amount?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingAverageAggregates = { + __typename?: 'FundingAverageAggregates'; + /** Mean average of amount across the matching connection */ + amount?: Maybe; + /** Mean average of totalFundingAmount across the matching connection */ + totalFundingAmount?: Maybe; +}; + +export type FundingDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + amount?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + fundingRound?: InputMaybe; + id?: InputMaybe; + totalFundingAmount?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type FundingDistinctCountAggregates = { + __typename?: 'FundingDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of fundingRound across the matching connection */ + fundingRound?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of totalFundingAmount across the matching connection */ + totalFundingAmount?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `Funding` object types. All fields are combined with a logical ‘and.’ */ +export type FundingFilter = { + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `fundingRound` field. */ + fundingRound?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `totalFundingAmount` field. */ + totalFundingAmount?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type FundingMaxAggregateFilter = { + amount?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingMaxAggregates = { + __typename?: 'FundingMaxAggregates'; + /** Maximum of amount across the matching connection */ + amount?: Maybe; + /** Maximum of totalFundingAmount across the matching connection */ + totalFundingAmount?: Maybe; +}; + +export type FundingMinAggregateFilter = { + amount?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingMinAggregates = { + __typename?: 'FundingMinAggregates'; + /** Minimum of amount across the matching connection */ + amount?: Maybe; + /** Minimum of totalFundingAmount across the matching connection */ + totalFundingAmount?: Maybe; +}; + +export type FundingStddevPopulationAggregateFilter = { + amount?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingStddevPopulationAggregates = { + __typename?: 'FundingStddevPopulationAggregates'; + /** Population standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Population standard deviation of totalFundingAmount across the matching connection */ + totalFundingAmount?: Maybe; +}; + +export type FundingStddevSampleAggregateFilter = { + amount?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingStddevSampleAggregates = { + __typename?: 'FundingStddevSampleAggregates'; + /** Sample standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Sample standard deviation of totalFundingAmount across the matching connection */ + totalFundingAmount?: Maybe; +}; + +export type FundingSumAggregateFilter = { + amount?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingSumAggregates = { + __typename?: 'FundingSumAggregates'; + /** Sum of amount across the matching connection */ + amount: Scalars['BigFloat']['output']; + /** Sum of totalFundingAmount across the matching connection */ + totalFundingAmount: Scalars['BigFloat']['output']; +}; + +export type FundingVariancePopulationAggregateFilter = { + amount?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingVariancePopulationAggregates = { + __typename?: 'FundingVariancePopulationAggregates'; + /** Population variance of amount across the matching connection */ + amount?: Maybe; + /** Population variance of totalFundingAmount across the matching connection */ + totalFundingAmount?: Maybe; +}; + +export type FundingVarianceSampleAggregateFilter = { + amount?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingVarianceSampleAggregates = { + __typename?: 'FundingVarianceSampleAggregates'; + /** Sample variance of amount across the matching connection */ + amount?: Maybe; + /** Sample variance of totalFundingAmount across the matching connection */ + totalFundingAmount?: Maybe; +}; + +/** A connection to a list of `Funding` values. */ +export type FundingsConnection = { + __typename?: 'FundingsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Funding` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Funding` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Funding` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Funding` values. */ +export type FundingsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Funding` edge in the connection. */ +export type FundingsEdge = { + __typename?: 'FundingsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Funding` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Funding` for usage during aggregation. */ +export enum FundingsGroupBy { + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + FundingRound = 'FUNDING_ROUND', + Id = 'ID', + TotalFundingAmount = 'TOTAL_FUNDING_AMOUNT', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type FundingsHavingAverageInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingsHavingDistinctCountInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +/** Conditions for `Funding` aggregates. */ +export type FundingsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type FundingsHavingMaxInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingsHavingMinInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingsHavingStddevPopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingsHavingStddevSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingsHavingSumInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingsHavingVariancePopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +export type FundingsHavingVarianceSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + totalFundingAmount?: InputMaybe; +}; + +/** Methods to use when ordering `Funding`. */ +export enum FundingsOrderBy { + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + FundingRoundAsc = 'FUNDING_ROUND_ASC', + FundingRoundDesc = 'FUNDING_ROUND_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + TotalFundingAmountAsc = 'TOTAL_FUNDING_AMOUNT_ASC', + TotalFundingAmountDesc = 'TOTAL_FUNDING_AMOUNT_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type HavingBigfloatFilter = { + equalTo?: InputMaybe; + greaterThan?: InputMaybe; + greaterThanOrEqualTo?: InputMaybe; + lessThan?: InputMaybe; + lessThanOrEqualTo?: InputMaybe; + notEqualTo?: InputMaybe; +}; + +export type HavingDatetimeFilter = { + equalTo?: InputMaybe; + greaterThan?: InputMaybe; + greaterThanOrEqualTo?: InputMaybe; + lessThan?: InputMaybe; + lessThanOrEqualTo?: InputMaybe; + notEqualTo?: InputMaybe; +}; + +export type HavingIntFilter = { + equalTo?: InputMaybe; + greaterThan?: InputMaybe; + greaterThanOrEqualTo?: InputMaybe; + lessThan?: InputMaybe; + lessThanOrEqualTo?: InputMaybe; + notEqualTo?: InputMaybe; +}; + +/** A connection to a list of `Identity` values. */ +export type IdentitiesConnection = { + __typename?: 'IdentitiesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values. */ +export type IdentitiesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Identity` edge in the connection. */ +export type IdentitiesEdge = { + __typename?: 'IdentitiesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Identity` for usage during aggregation. */ +export enum IdentitiesGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + Did = 'DID', + EventId = 'EVENT_ID', + Id = 'ID', + PrimaryAccount = 'PRIMARY_ACCOUNT', + SecondaryKeysFrozen = 'SECONDARY_KEYS_FROZEN', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type IdentitiesHavingAverageInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type IdentitiesHavingDistinctCountInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +/** Conditions for `Identity` aggregates. */ +export type IdentitiesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type IdentitiesHavingMaxInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type IdentitiesHavingMinInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type IdentitiesHavingStddevPopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type IdentitiesHavingStddevSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type IdentitiesHavingSumInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type IdentitiesHavingVariancePopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type IdentitiesHavingVarianceSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +/** Methods to use when ordering `Identity`. */ +export enum IdentitiesOrderBy { + AssetsByOwnerIdAverageBlockRangeAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetsByOwnerIdAverageBlockRangeDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetsByOwnerIdAverageCreatedAtAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_CREATED_AT_ASC', + AssetsByOwnerIdAverageCreatedAtDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_CREATED_AT_DESC', + AssetsByOwnerIdAverageCreatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetsByOwnerIdAverageCreatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetsByOwnerIdAverageEventIdxAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_EVENT_IDX_ASC', + AssetsByOwnerIdAverageEventIdxDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_EVENT_IDX_DESC', + AssetsByOwnerIdAverageFundingRoundAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_FUNDING_ROUND_ASC', + AssetsByOwnerIdAverageFundingRoundDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_FUNDING_ROUND_DESC', + AssetsByOwnerIdAverageIdentifiersAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_IDENTIFIERS_ASC', + AssetsByOwnerIdAverageIdentifiersDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_IDENTIFIERS_DESC', + AssetsByOwnerIdAverageIdAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_ID_ASC', + AssetsByOwnerIdAverageIdDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_ID_DESC', + AssetsByOwnerIdAverageIsCompliancePausedAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_IS_COMPLIANCE_PAUSED_ASC', + AssetsByOwnerIdAverageIsCompliancePausedDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_IS_COMPLIANCE_PAUSED_DESC', + AssetsByOwnerIdAverageIsDivisibleAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_IS_DIVISIBLE_ASC', + AssetsByOwnerIdAverageIsDivisibleDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_IS_DIVISIBLE_DESC', + AssetsByOwnerIdAverageIsFrozenAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_IS_FROZEN_ASC', + AssetsByOwnerIdAverageIsFrozenDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_IS_FROZEN_DESC', + AssetsByOwnerIdAverageIsNftCollectionAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_IS_NFT_COLLECTION_ASC', + AssetsByOwnerIdAverageIsNftCollectionDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_IS_NFT_COLLECTION_DESC', + AssetsByOwnerIdAverageIsUniquenessRequiredAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByOwnerIdAverageIsUniquenessRequiredDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByOwnerIdAverageNameAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_NAME_ASC', + AssetsByOwnerIdAverageNameDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_NAME_DESC', + AssetsByOwnerIdAverageOwnerIdAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_OWNER_ID_ASC', + AssetsByOwnerIdAverageOwnerIdDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_OWNER_ID_DESC', + AssetsByOwnerIdAverageTickerAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_TICKER_ASC', + AssetsByOwnerIdAverageTickerDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_TICKER_DESC', + AssetsByOwnerIdAverageTotalSupplyAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_TOTAL_SUPPLY_ASC', + AssetsByOwnerIdAverageTotalSupplyDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_TOTAL_SUPPLY_DESC', + AssetsByOwnerIdAverageTotalTransfersAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_TOTAL_TRANSFERS_ASC', + AssetsByOwnerIdAverageTotalTransfersDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_TOTAL_TRANSFERS_DESC', + AssetsByOwnerIdAverageTypeAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_TYPE_ASC', + AssetsByOwnerIdAverageTypeDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_TYPE_DESC', + AssetsByOwnerIdAverageUpdatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetsByOwnerIdAverageUpdatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetsByOwnerIdCountAsc = 'ASSETS_BY_OWNER_ID_COUNT_ASC', + AssetsByOwnerIdCountDesc = 'ASSETS_BY_OWNER_ID_COUNT_DESC', + AssetsByOwnerIdDistinctCountBlockRangeAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetsByOwnerIdDistinctCountBlockRangeDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetsByOwnerIdDistinctCountCreatedAtAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetsByOwnerIdDistinctCountCreatedAtDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetsByOwnerIdDistinctCountCreatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetsByOwnerIdDistinctCountCreatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetsByOwnerIdDistinctCountEventIdxAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + AssetsByOwnerIdDistinctCountEventIdxDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + AssetsByOwnerIdDistinctCountFundingRoundAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_FUNDING_ROUND_ASC', + AssetsByOwnerIdDistinctCountFundingRoundDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC', + AssetsByOwnerIdDistinctCountIdentifiersAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IDENTIFIERS_ASC', + AssetsByOwnerIdDistinctCountIdentifiersDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IDENTIFIERS_DESC', + AssetsByOwnerIdDistinctCountIdAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_ID_ASC', + AssetsByOwnerIdDistinctCountIdDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_ID_DESC', + AssetsByOwnerIdDistinctCountIsCompliancePausedAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IS_COMPLIANCE_PAUSED_ASC', + AssetsByOwnerIdDistinctCountIsCompliancePausedDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IS_COMPLIANCE_PAUSED_DESC', + AssetsByOwnerIdDistinctCountIsDivisibleAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IS_DIVISIBLE_ASC', + AssetsByOwnerIdDistinctCountIsDivisibleDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IS_DIVISIBLE_DESC', + AssetsByOwnerIdDistinctCountIsFrozenAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IS_FROZEN_ASC', + AssetsByOwnerIdDistinctCountIsFrozenDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IS_FROZEN_DESC', + AssetsByOwnerIdDistinctCountIsNftCollectionAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IS_NFT_COLLECTION_ASC', + AssetsByOwnerIdDistinctCountIsNftCollectionDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IS_NFT_COLLECTION_DESC', + AssetsByOwnerIdDistinctCountIsUniquenessRequiredAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByOwnerIdDistinctCountIsUniquenessRequiredDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByOwnerIdDistinctCountNameAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_NAME_ASC', + AssetsByOwnerIdDistinctCountNameDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_NAME_DESC', + AssetsByOwnerIdDistinctCountOwnerIdAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_OWNER_ID_ASC', + AssetsByOwnerIdDistinctCountOwnerIdDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_OWNER_ID_DESC', + AssetsByOwnerIdDistinctCountTickerAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_TICKER_ASC', + AssetsByOwnerIdDistinctCountTickerDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_TICKER_DESC', + AssetsByOwnerIdDistinctCountTotalSupplyAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_TOTAL_SUPPLY_ASC', + AssetsByOwnerIdDistinctCountTotalSupplyDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_TOTAL_SUPPLY_DESC', + AssetsByOwnerIdDistinctCountTotalTransfersAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_TOTAL_TRANSFERS_ASC', + AssetsByOwnerIdDistinctCountTotalTransfersDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_TOTAL_TRANSFERS_DESC', + AssetsByOwnerIdDistinctCountTypeAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_TYPE_ASC', + AssetsByOwnerIdDistinctCountTypeDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_TYPE_DESC', + AssetsByOwnerIdDistinctCountUpdatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetsByOwnerIdDistinctCountUpdatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetsByOwnerIdMaxBlockRangeAsc = 'ASSETS_BY_OWNER_ID_MAX_BLOCK_RANGE_ASC', + AssetsByOwnerIdMaxBlockRangeDesc = 'ASSETS_BY_OWNER_ID_MAX_BLOCK_RANGE_DESC', + AssetsByOwnerIdMaxCreatedAtAsc = 'ASSETS_BY_OWNER_ID_MAX_CREATED_AT_ASC', + AssetsByOwnerIdMaxCreatedAtDesc = 'ASSETS_BY_OWNER_ID_MAX_CREATED_AT_DESC', + AssetsByOwnerIdMaxCreatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetsByOwnerIdMaxCreatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetsByOwnerIdMaxEventIdxAsc = 'ASSETS_BY_OWNER_ID_MAX_EVENT_IDX_ASC', + AssetsByOwnerIdMaxEventIdxDesc = 'ASSETS_BY_OWNER_ID_MAX_EVENT_IDX_DESC', + AssetsByOwnerIdMaxFundingRoundAsc = 'ASSETS_BY_OWNER_ID_MAX_FUNDING_ROUND_ASC', + AssetsByOwnerIdMaxFundingRoundDesc = 'ASSETS_BY_OWNER_ID_MAX_FUNDING_ROUND_DESC', + AssetsByOwnerIdMaxIdentifiersAsc = 'ASSETS_BY_OWNER_ID_MAX_IDENTIFIERS_ASC', + AssetsByOwnerIdMaxIdentifiersDesc = 'ASSETS_BY_OWNER_ID_MAX_IDENTIFIERS_DESC', + AssetsByOwnerIdMaxIdAsc = 'ASSETS_BY_OWNER_ID_MAX_ID_ASC', + AssetsByOwnerIdMaxIdDesc = 'ASSETS_BY_OWNER_ID_MAX_ID_DESC', + AssetsByOwnerIdMaxIsCompliancePausedAsc = 'ASSETS_BY_OWNER_ID_MAX_IS_COMPLIANCE_PAUSED_ASC', + AssetsByOwnerIdMaxIsCompliancePausedDesc = 'ASSETS_BY_OWNER_ID_MAX_IS_COMPLIANCE_PAUSED_DESC', + AssetsByOwnerIdMaxIsDivisibleAsc = 'ASSETS_BY_OWNER_ID_MAX_IS_DIVISIBLE_ASC', + AssetsByOwnerIdMaxIsDivisibleDesc = 'ASSETS_BY_OWNER_ID_MAX_IS_DIVISIBLE_DESC', + AssetsByOwnerIdMaxIsFrozenAsc = 'ASSETS_BY_OWNER_ID_MAX_IS_FROZEN_ASC', + AssetsByOwnerIdMaxIsFrozenDesc = 'ASSETS_BY_OWNER_ID_MAX_IS_FROZEN_DESC', + AssetsByOwnerIdMaxIsNftCollectionAsc = 'ASSETS_BY_OWNER_ID_MAX_IS_NFT_COLLECTION_ASC', + AssetsByOwnerIdMaxIsNftCollectionDesc = 'ASSETS_BY_OWNER_ID_MAX_IS_NFT_COLLECTION_DESC', + AssetsByOwnerIdMaxIsUniquenessRequiredAsc = 'ASSETS_BY_OWNER_ID_MAX_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByOwnerIdMaxIsUniquenessRequiredDesc = 'ASSETS_BY_OWNER_ID_MAX_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByOwnerIdMaxNameAsc = 'ASSETS_BY_OWNER_ID_MAX_NAME_ASC', + AssetsByOwnerIdMaxNameDesc = 'ASSETS_BY_OWNER_ID_MAX_NAME_DESC', + AssetsByOwnerIdMaxOwnerIdAsc = 'ASSETS_BY_OWNER_ID_MAX_OWNER_ID_ASC', + AssetsByOwnerIdMaxOwnerIdDesc = 'ASSETS_BY_OWNER_ID_MAX_OWNER_ID_DESC', + AssetsByOwnerIdMaxTickerAsc = 'ASSETS_BY_OWNER_ID_MAX_TICKER_ASC', + AssetsByOwnerIdMaxTickerDesc = 'ASSETS_BY_OWNER_ID_MAX_TICKER_DESC', + AssetsByOwnerIdMaxTotalSupplyAsc = 'ASSETS_BY_OWNER_ID_MAX_TOTAL_SUPPLY_ASC', + AssetsByOwnerIdMaxTotalSupplyDesc = 'ASSETS_BY_OWNER_ID_MAX_TOTAL_SUPPLY_DESC', + AssetsByOwnerIdMaxTotalTransfersAsc = 'ASSETS_BY_OWNER_ID_MAX_TOTAL_TRANSFERS_ASC', + AssetsByOwnerIdMaxTotalTransfersDesc = 'ASSETS_BY_OWNER_ID_MAX_TOTAL_TRANSFERS_DESC', + AssetsByOwnerIdMaxTypeAsc = 'ASSETS_BY_OWNER_ID_MAX_TYPE_ASC', + AssetsByOwnerIdMaxTypeDesc = 'ASSETS_BY_OWNER_ID_MAX_TYPE_DESC', + AssetsByOwnerIdMaxUpdatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetsByOwnerIdMaxUpdatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetsByOwnerIdMinBlockRangeAsc = 'ASSETS_BY_OWNER_ID_MIN_BLOCK_RANGE_ASC', + AssetsByOwnerIdMinBlockRangeDesc = 'ASSETS_BY_OWNER_ID_MIN_BLOCK_RANGE_DESC', + AssetsByOwnerIdMinCreatedAtAsc = 'ASSETS_BY_OWNER_ID_MIN_CREATED_AT_ASC', + AssetsByOwnerIdMinCreatedAtDesc = 'ASSETS_BY_OWNER_ID_MIN_CREATED_AT_DESC', + AssetsByOwnerIdMinCreatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetsByOwnerIdMinCreatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetsByOwnerIdMinEventIdxAsc = 'ASSETS_BY_OWNER_ID_MIN_EVENT_IDX_ASC', + AssetsByOwnerIdMinEventIdxDesc = 'ASSETS_BY_OWNER_ID_MIN_EVENT_IDX_DESC', + AssetsByOwnerIdMinFundingRoundAsc = 'ASSETS_BY_OWNER_ID_MIN_FUNDING_ROUND_ASC', + AssetsByOwnerIdMinFundingRoundDesc = 'ASSETS_BY_OWNER_ID_MIN_FUNDING_ROUND_DESC', + AssetsByOwnerIdMinIdentifiersAsc = 'ASSETS_BY_OWNER_ID_MIN_IDENTIFIERS_ASC', + AssetsByOwnerIdMinIdentifiersDesc = 'ASSETS_BY_OWNER_ID_MIN_IDENTIFIERS_DESC', + AssetsByOwnerIdMinIdAsc = 'ASSETS_BY_OWNER_ID_MIN_ID_ASC', + AssetsByOwnerIdMinIdDesc = 'ASSETS_BY_OWNER_ID_MIN_ID_DESC', + AssetsByOwnerIdMinIsCompliancePausedAsc = 'ASSETS_BY_OWNER_ID_MIN_IS_COMPLIANCE_PAUSED_ASC', + AssetsByOwnerIdMinIsCompliancePausedDesc = 'ASSETS_BY_OWNER_ID_MIN_IS_COMPLIANCE_PAUSED_DESC', + AssetsByOwnerIdMinIsDivisibleAsc = 'ASSETS_BY_OWNER_ID_MIN_IS_DIVISIBLE_ASC', + AssetsByOwnerIdMinIsDivisibleDesc = 'ASSETS_BY_OWNER_ID_MIN_IS_DIVISIBLE_DESC', + AssetsByOwnerIdMinIsFrozenAsc = 'ASSETS_BY_OWNER_ID_MIN_IS_FROZEN_ASC', + AssetsByOwnerIdMinIsFrozenDesc = 'ASSETS_BY_OWNER_ID_MIN_IS_FROZEN_DESC', + AssetsByOwnerIdMinIsNftCollectionAsc = 'ASSETS_BY_OWNER_ID_MIN_IS_NFT_COLLECTION_ASC', + AssetsByOwnerIdMinIsNftCollectionDesc = 'ASSETS_BY_OWNER_ID_MIN_IS_NFT_COLLECTION_DESC', + AssetsByOwnerIdMinIsUniquenessRequiredAsc = 'ASSETS_BY_OWNER_ID_MIN_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByOwnerIdMinIsUniquenessRequiredDesc = 'ASSETS_BY_OWNER_ID_MIN_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByOwnerIdMinNameAsc = 'ASSETS_BY_OWNER_ID_MIN_NAME_ASC', + AssetsByOwnerIdMinNameDesc = 'ASSETS_BY_OWNER_ID_MIN_NAME_DESC', + AssetsByOwnerIdMinOwnerIdAsc = 'ASSETS_BY_OWNER_ID_MIN_OWNER_ID_ASC', + AssetsByOwnerIdMinOwnerIdDesc = 'ASSETS_BY_OWNER_ID_MIN_OWNER_ID_DESC', + AssetsByOwnerIdMinTickerAsc = 'ASSETS_BY_OWNER_ID_MIN_TICKER_ASC', + AssetsByOwnerIdMinTickerDesc = 'ASSETS_BY_OWNER_ID_MIN_TICKER_DESC', + AssetsByOwnerIdMinTotalSupplyAsc = 'ASSETS_BY_OWNER_ID_MIN_TOTAL_SUPPLY_ASC', + AssetsByOwnerIdMinTotalSupplyDesc = 'ASSETS_BY_OWNER_ID_MIN_TOTAL_SUPPLY_DESC', + AssetsByOwnerIdMinTotalTransfersAsc = 'ASSETS_BY_OWNER_ID_MIN_TOTAL_TRANSFERS_ASC', + AssetsByOwnerIdMinTotalTransfersDesc = 'ASSETS_BY_OWNER_ID_MIN_TOTAL_TRANSFERS_DESC', + AssetsByOwnerIdMinTypeAsc = 'ASSETS_BY_OWNER_ID_MIN_TYPE_ASC', + AssetsByOwnerIdMinTypeDesc = 'ASSETS_BY_OWNER_ID_MIN_TYPE_DESC', + AssetsByOwnerIdMinUpdatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetsByOwnerIdMinUpdatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetsByOwnerIdStddevPopulationBlockRangeAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetsByOwnerIdStddevPopulationBlockRangeDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetsByOwnerIdStddevPopulationCreatedAtAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetsByOwnerIdStddevPopulationCreatedAtDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetsByOwnerIdStddevPopulationCreatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetsByOwnerIdStddevPopulationCreatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetsByOwnerIdStddevPopulationEventIdxAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + AssetsByOwnerIdStddevPopulationEventIdxDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + AssetsByOwnerIdStddevPopulationFundingRoundAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_FUNDING_ROUND_ASC', + AssetsByOwnerIdStddevPopulationFundingRoundDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC', + AssetsByOwnerIdStddevPopulationIdentifiersAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IDENTIFIERS_ASC', + AssetsByOwnerIdStddevPopulationIdentifiersDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IDENTIFIERS_DESC', + AssetsByOwnerIdStddevPopulationIdAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_ID_ASC', + AssetsByOwnerIdStddevPopulationIdDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_ID_DESC', + AssetsByOwnerIdStddevPopulationIsCompliancePausedAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IS_COMPLIANCE_PAUSED_ASC', + AssetsByOwnerIdStddevPopulationIsCompliancePausedDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IS_COMPLIANCE_PAUSED_DESC', + AssetsByOwnerIdStddevPopulationIsDivisibleAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IS_DIVISIBLE_ASC', + AssetsByOwnerIdStddevPopulationIsDivisibleDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IS_DIVISIBLE_DESC', + AssetsByOwnerIdStddevPopulationIsFrozenAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IS_FROZEN_ASC', + AssetsByOwnerIdStddevPopulationIsFrozenDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IS_FROZEN_DESC', + AssetsByOwnerIdStddevPopulationIsNftCollectionAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IS_NFT_COLLECTION_ASC', + AssetsByOwnerIdStddevPopulationIsNftCollectionDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IS_NFT_COLLECTION_DESC', + AssetsByOwnerIdStddevPopulationIsUniquenessRequiredAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByOwnerIdStddevPopulationIsUniquenessRequiredDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByOwnerIdStddevPopulationNameAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_NAME_ASC', + AssetsByOwnerIdStddevPopulationNameDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_NAME_DESC', + AssetsByOwnerIdStddevPopulationOwnerIdAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_OWNER_ID_ASC', + AssetsByOwnerIdStddevPopulationOwnerIdDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_OWNER_ID_DESC', + AssetsByOwnerIdStddevPopulationTickerAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_TICKER_ASC', + AssetsByOwnerIdStddevPopulationTickerDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_TICKER_DESC', + AssetsByOwnerIdStddevPopulationTotalSupplyAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_TOTAL_SUPPLY_ASC', + AssetsByOwnerIdStddevPopulationTotalSupplyDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_TOTAL_SUPPLY_DESC', + AssetsByOwnerIdStddevPopulationTotalTransfersAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_TOTAL_TRANSFERS_ASC', + AssetsByOwnerIdStddevPopulationTotalTransfersDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_TOTAL_TRANSFERS_DESC', + AssetsByOwnerIdStddevPopulationTypeAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_TYPE_ASC', + AssetsByOwnerIdStddevPopulationTypeDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_TYPE_DESC', + AssetsByOwnerIdStddevPopulationUpdatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetsByOwnerIdStddevPopulationUpdatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetsByOwnerIdStddevSampleBlockRangeAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetsByOwnerIdStddevSampleBlockRangeDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetsByOwnerIdStddevSampleCreatedAtAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetsByOwnerIdStddevSampleCreatedAtDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetsByOwnerIdStddevSampleCreatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetsByOwnerIdStddevSampleCreatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetsByOwnerIdStddevSampleEventIdxAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + AssetsByOwnerIdStddevSampleEventIdxDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + AssetsByOwnerIdStddevSampleFundingRoundAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + AssetsByOwnerIdStddevSampleFundingRoundDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + AssetsByOwnerIdStddevSampleIdentifiersAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IDENTIFIERS_ASC', + AssetsByOwnerIdStddevSampleIdentifiersDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IDENTIFIERS_DESC', + AssetsByOwnerIdStddevSampleIdAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_ID_ASC', + AssetsByOwnerIdStddevSampleIdDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_ID_DESC', + AssetsByOwnerIdStddevSampleIsCompliancePausedAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IS_COMPLIANCE_PAUSED_ASC', + AssetsByOwnerIdStddevSampleIsCompliancePausedDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IS_COMPLIANCE_PAUSED_DESC', + AssetsByOwnerIdStddevSampleIsDivisibleAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IS_DIVISIBLE_ASC', + AssetsByOwnerIdStddevSampleIsDivisibleDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IS_DIVISIBLE_DESC', + AssetsByOwnerIdStddevSampleIsFrozenAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IS_FROZEN_ASC', + AssetsByOwnerIdStddevSampleIsFrozenDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IS_FROZEN_DESC', + AssetsByOwnerIdStddevSampleIsNftCollectionAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IS_NFT_COLLECTION_ASC', + AssetsByOwnerIdStddevSampleIsNftCollectionDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IS_NFT_COLLECTION_DESC', + AssetsByOwnerIdStddevSampleIsUniquenessRequiredAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByOwnerIdStddevSampleIsUniquenessRequiredDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByOwnerIdStddevSampleNameAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_NAME_ASC', + AssetsByOwnerIdStddevSampleNameDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_NAME_DESC', + AssetsByOwnerIdStddevSampleOwnerIdAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_OWNER_ID_ASC', + AssetsByOwnerIdStddevSampleOwnerIdDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_OWNER_ID_DESC', + AssetsByOwnerIdStddevSampleTickerAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_TICKER_ASC', + AssetsByOwnerIdStddevSampleTickerDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_TICKER_DESC', + AssetsByOwnerIdStddevSampleTotalSupplyAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_ASC', + AssetsByOwnerIdStddevSampleTotalSupplyDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_DESC', + AssetsByOwnerIdStddevSampleTotalTransfersAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_TOTAL_TRANSFERS_ASC', + AssetsByOwnerIdStddevSampleTotalTransfersDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_TOTAL_TRANSFERS_DESC', + AssetsByOwnerIdStddevSampleTypeAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_TYPE_ASC', + AssetsByOwnerIdStddevSampleTypeDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_TYPE_DESC', + AssetsByOwnerIdStddevSampleUpdatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetsByOwnerIdStddevSampleUpdatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetsByOwnerIdSumBlockRangeAsc = 'ASSETS_BY_OWNER_ID_SUM_BLOCK_RANGE_ASC', + AssetsByOwnerIdSumBlockRangeDesc = 'ASSETS_BY_OWNER_ID_SUM_BLOCK_RANGE_DESC', + AssetsByOwnerIdSumCreatedAtAsc = 'ASSETS_BY_OWNER_ID_SUM_CREATED_AT_ASC', + AssetsByOwnerIdSumCreatedAtDesc = 'ASSETS_BY_OWNER_ID_SUM_CREATED_AT_DESC', + AssetsByOwnerIdSumCreatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetsByOwnerIdSumCreatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetsByOwnerIdSumEventIdxAsc = 'ASSETS_BY_OWNER_ID_SUM_EVENT_IDX_ASC', + AssetsByOwnerIdSumEventIdxDesc = 'ASSETS_BY_OWNER_ID_SUM_EVENT_IDX_DESC', + AssetsByOwnerIdSumFundingRoundAsc = 'ASSETS_BY_OWNER_ID_SUM_FUNDING_ROUND_ASC', + AssetsByOwnerIdSumFundingRoundDesc = 'ASSETS_BY_OWNER_ID_SUM_FUNDING_ROUND_DESC', + AssetsByOwnerIdSumIdentifiersAsc = 'ASSETS_BY_OWNER_ID_SUM_IDENTIFIERS_ASC', + AssetsByOwnerIdSumIdentifiersDesc = 'ASSETS_BY_OWNER_ID_SUM_IDENTIFIERS_DESC', + AssetsByOwnerIdSumIdAsc = 'ASSETS_BY_OWNER_ID_SUM_ID_ASC', + AssetsByOwnerIdSumIdDesc = 'ASSETS_BY_OWNER_ID_SUM_ID_DESC', + AssetsByOwnerIdSumIsCompliancePausedAsc = 'ASSETS_BY_OWNER_ID_SUM_IS_COMPLIANCE_PAUSED_ASC', + AssetsByOwnerIdSumIsCompliancePausedDesc = 'ASSETS_BY_OWNER_ID_SUM_IS_COMPLIANCE_PAUSED_DESC', + AssetsByOwnerIdSumIsDivisibleAsc = 'ASSETS_BY_OWNER_ID_SUM_IS_DIVISIBLE_ASC', + AssetsByOwnerIdSumIsDivisibleDesc = 'ASSETS_BY_OWNER_ID_SUM_IS_DIVISIBLE_DESC', + AssetsByOwnerIdSumIsFrozenAsc = 'ASSETS_BY_OWNER_ID_SUM_IS_FROZEN_ASC', + AssetsByOwnerIdSumIsFrozenDesc = 'ASSETS_BY_OWNER_ID_SUM_IS_FROZEN_DESC', + AssetsByOwnerIdSumIsNftCollectionAsc = 'ASSETS_BY_OWNER_ID_SUM_IS_NFT_COLLECTION_ASC', + AssetsByOwnerIdSumIsNftCollectionDesc = 'ASSETS_BY_OWNER_ID_SUM_IS_NFT_COLLECTION_DESC', + AssetsByOwnerIdSumIsUniquenessRequiredAsc = 'ASSETS_BY_OWNER_ID_SUM_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByOwnerIdSumIsUniquenessRequiredDesc = 'ASSETS_BY_OWNER_ID_SUM_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByOwnerIdSumNameAsc = 'ASSETS_BY_OWNER_ID_SUM_NAME_ASC', + AssetsByOwnerIdSumNameDesc = 'ASSETS_BY_OWNER_ID_SUM_NAME_DESC', + AssetsByOwnerIdSumOwnerIdAsc = 'ASSETS_BY_OWNER_ID_SUM_OWNER_ID_ASC', + AssetsByOwnerIdSumOwnerIdDesc = 'ASSETS_BY_OWNER_ID_SUM_OWNER_ID_DESC', + AssetsByOwnerIdSumTickerAsc = 'ASSETS_BY_OWNER_ID_SUM_TICKER_ASC', + AssetsByOwnerIdSumTickerDesc = 'ASSETS_BY_OWNER_ID_SUM_TICKER_DESC', + AssetsByOwnerIdSumTotalSupplyAsc = 'ASSETS_BY_OWNER_ID_SUM_TOTAL_SUPPLY_ASC', + AssetsByOwnerIdSumTotalSupplyDesc = 'ASSETS_BY_OWNER_ID_SUM_TOTAL_SUPPLY_DESC', + AssetsByOwnerIdSumTotalTransfersAsc = 'ASSETS_BY_OWNER_ID_SUM_TOTAL_TRANSFERS_ASC', + AssetsByOwnerIdSumTotalTransfersDesc = 'ASSETS_BY_OWNER_ID_SUM_TOTAL_TRANSFERS_DESC', + AssetsByOwnerIdSumTypeAsc = 'ASSETS_BY_OWNER_ID_SUM_TYPE_ASC', + AssetsByOwnerIdSumTypeDesc = 'ASSETS_BY_OWNER_ID_SUM_TYPE_DESC', + AssetsByOwnerIdSumUpdatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetsByOwnerIdSumUpdatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetsByOwnerIdVariancePopulationBlockRangeAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetsByOwnerIdVariancePopulationBlockRangeDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetsByOwnerIdVariancePopulationCreatedAtAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetsByOwnerIdVariancePopulationCreatedAtDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetsByOwnerIdVariancePopulationCreatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetsByOwnerIdVariancePopulationCreatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetsByOwnerIdVariancePopulationEventIdxAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + AssetsByOwnerIdVariancePopulationEventIdxDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + AssetsByOwnerIdVariancePopulationFundingRoundAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + AssetsByOwnerIdVariancePopulationFundingRoundDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + AssetsByOwnerIdVariancePopulationIdentifiersAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IDENTIFIERS_ASC', + AssetsByOwnerIdVariancePopulationIdentifiersDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IDENTIFIERS_DESC', + AssetsByOwnerIdVariancePopulationIdAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_ID_ASC', + AssetsByOwnerIdVariancePopulationIdDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_ID_DESC', + AssetsByOwnerIdVariancePopulationIsCompliancePausedAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IS_COMPLIANCE_PAUSED_ASC', + AssetsByOwnerIdVariancePopulationIsCompliancePausedDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IS_COMPLIANCE_PAUSED_DESC', + AssetsByOwnerIdVariancePopulationIsDivisibleAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IS_DIVISIBLE_ASC', + AssetsByOwnerIdVariancePopulationIsDivisibleDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IS_DIVISIBLE_DESC', + AssetsByOwnerIdVariancePopulationIsFrozenAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IS_FROZEN_ASC', + AssetsByOwnerIdVariancePopulationIsFrozenDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IS_FROZEN_DESC', + AssetsByOwnerIdVariancePopulationIsNftCollectionAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IS_NFT_COLLECTION_ASC', + AssetsByOwnerIdVariancePopulationIsNftCollectionDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IS_NFT_COLLECTION_DESC', + AssetsByOwnerIdVariancePopulationIsUniquenessRequiredAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByOwnerIdVariancePopulationIsUniquenessRequiredDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByOwnerIdVariancePopulationNameAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_NAME_ASC', + AssetsByOwnerIdVariancePopulationNameDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_NAME_DESC', + AssetsByOwnerIdVariancePopulationOwnerIdAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_OWNER_ID_ASC', + AssetsByOwnerIdVariancePopulationOwnerIdDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_OWNER_ID_DESC', + AssetsByOwnerIdVariancePopulationTickerAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_TICKER_ASC', + AssetsByOwnerIdVariancePopulationTickerDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_TICKER_DESC', + AssetsByOwnerIdVariancePopulationTotalSupplyAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_ASC', + AssetsByOwnerIdVariancePopulationTotalSupplyDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_DESC', + AssetsByOwnerIdVariancePopulationTotalTransfersAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_TOTAL_TRANSFERS_ASC', + AssetsByOwnerIdVariancePopulationTotalTransfersDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_TOTAL_TRANSFERS_DESC', + AssetsByOwnerIdVariancePopulationTypeAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_TYPE_ASC', + AssetsByOwnerIdVariancePopulationTypeDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_TYPE_DESC', + AssetsByOwnerIdVariancePopulationUpdatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetsByOwnerIdVariancePopulationUpdatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetsByOwnerIdVarianceSampleBlockRangeAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetsByOwnerIdVarianceSampleBlockRangeDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetsByOwnerIdVarianceSampleCreatedAtAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetsByOwnerIdVarianceSampleCreatedAtDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetsByOwnerIdVarianceSampleCreatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetsByOwnerIdVarianceSampleCreatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetsByOwnerIdVarianceSampleEventIdxAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + AssetsByOwnerIdVarianceSampleEventIdxDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + AssetsByOwnerIdVarianceSampleFundingRoundAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + AssetsByOwnerIdVarianceSampleFundingRoundDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + AssetsByOwnerIdVarianceSampleIdentifiersAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IDENTIFIERS_ASC', + AssetsByOwnerIdVarianceSampleIdentifiersDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IDENTIFIERS_DESC', + AssetsByOwnerIdVarianceSampleIdAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_ID_ASC', + AssetsByOwnerIdVarianceSampleIdDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_ID_DESC', + AssetsByOwnerIdVarianceSampleIsCompliancePausedAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IS_COMPLIANCE_PAUSED_ASC', + AssetsByOwnerIdVarianceSampleIsCompliancePausedDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IS_COMPLIANCE_PAUSED_DESC', + AssetsByOwnerIdVarianceSampleIsDivisibleAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IS_DIVISIBLE_ASC', + AssetsByOwnerIdVarianceSampleIsDivisibleDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IS_DIVISIBLE_DESC', + AssetsByOwnerIdVarianceSampleIsFrozenAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IS_FROZEN_ASC', + AssetsByOwnerIdVarianceSampleIsFrozenDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IS_FROZEN_DESC', + AssetsByOwnerIdVarianceSampleIsNftCollectionAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IS_NFT_COLLECTION_ASC', + AssetsByOwnerIdVarianceSampleIsNftCollectionDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IS_NFT_COLLECTION_DESC', + AssetsByOwnerIdVarianceSampleIsUniquenessRequiredAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IS_UNIQUENESS_REQUIRED_ASC', + AssetsByOwnerIdVarianceSampleIsUniquenessRequiredDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_IS_UNIQUENESS_REQUIRED_DESC', + AssetsByOwnerIdVarianceSampleNameAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_NAME_ASC', + AssetsByOwnerIdVarianceSampleNameDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_NAME_DESC', + AssetsByOwnerIdVarianceSampleOwnerIdAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_OWNER_ID_ASC', + AssetsByOwnerIdVarianceSampleOwnerIdDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_OWNER_ID_DESC', + AssetsByOwnerIdVarianceSampleTickerAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_TICKER_ASC', + AssetsByOwnerIdVarianceSampleTickerDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_TICKER_DESC', + AssetsByOwnerIdVarianceSampleTotalSupplyAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_ASC', + AssetsByOwnerIdVarianceSampleTotalSupplyDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_DESC', + AssetsByOwnerIdVarianceSampleTotalTransfersAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_TOTAL_TRANSFERS_ASC', + AssetsByOwnerIdVarianceSampleTotalTransfersDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_TOTAL_TRANSFERS_DESC', + AssetsByOwnerIdVarianceSampleTypeAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_TYPE_ASC', + AssetsByOwnerIdVarianceSampleTypeDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_TYPE_DESC', + AssetsByOwnerIdVarianceSampleUpdatedBlockIdAsc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetsByOwnerIdVarianceSampleUpdatedBlockIdDesc = 'ASSETS_BY_OWNER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdAverageAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdAverageAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdAverageAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_ASSET_ID_ASC', + AssetMandatoryMediatorsByAddedByIdAverageAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_ASSET_ID_DESC', + AssetMandatoryMediatorsByAddedByIdAverageBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByAddedByIdAverageBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByAddedByIdAverageCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_CREATED_AT_ASC', + AssetMandatoryMediatorsByAddedByIdAverageCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_CREATED_AT_DESC', + AssetMandatoryMediatorsByAddedByIdAverageCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdAverageCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdAverageIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdAverageIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdAverageIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_ID_ASC', + AssetMandatoryMediatorsByAddedByIdAverageIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_ID_DESC', + AssetMandatoryMediatorsByAddedByIdAverageUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdAverageUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdCountAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_COUNT_ASC', + AssetMandatoryMediatorsByAddedByIdCountDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_COUNT_DESC', + AssetMandatoryMediatorsByAddedByIdDistinctCountAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdDistinctCountAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdDistinctCountAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetMandatoryMediatorsByAddedByIdDistinctCountAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetMandatoryMediatorsByAddedByIdDistinctCountBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByAddedByIdDistinctCountBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByAddedByIdDistinctCountCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetMandatoryMediatorsByAddedByIdDistinctCountCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetMandatoryMediatorsByAddedByIdDistinctCountCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdDistinctCountCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdDistinctCountIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdDistinctCountIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdDistinctCountIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_ID_ASC', + AssetMandatoryMediatorsByAddedByIdDistinctCountIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_ID_DESC', + AssetMandatoryMediatorsByAddedByIdDistinctCountUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdDistinctCountUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMaxAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMaxAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMaxAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_ASSET_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMaxAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_ASSET_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMaxBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByAddedByIdMaxBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByAddedByIdMaxCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_CREATED_AT_ASC', + AssetMandatoryMediatorsByAddedByIdMaxCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_CREATED_AT_DESC', + AssetMandatoryMediatorsByAddedByIdMaxCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMaxCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMaxIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMaxIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMaxIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMaxIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMaxUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMaxUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMinAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMinAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMinAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_ASSET_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMinAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_ASSET_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMinBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByAddedByIdMinBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByAddedByIdMinCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_CREATED_AT_ASC', + AssetMandatoryMediatorsByAddedByIdMinCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_CREATED_AT_DESC', + AssetMandatoryMediatorsByAddedByIdMinCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMinCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMinIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMinIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMinIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMinIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_ID_DESC', + AssetMandatoryMediatorsByAddedByIdMinUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdMinUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevSampleAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevSampleAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevSampleAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevSampleAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevSampleBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByAddedByIdStddevSampleBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByAddedByIdStddevSampleCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetMandatoryMediatorsByAddedByIdStddevSampleCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetMandatoryMediatorsByAddedByIdStddevSampleCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevSampleCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevSampleIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevSampleIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevSampleIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevSampleIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_ID_DESC', + AssetMandatoryMediatorsByAddedByIdStddevSampleUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdStddevSampleUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdSumAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdSumAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdSumAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_ASSET_ID_ASC', + AssetMandatoryMediatorsByAddedByIdSumAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_ASSET_ID_DESC', + AssetMandatoryMediatorsByAddedByIdSumBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByAddedByIdSumBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByAddedByIdSumCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_CREATED_AT_ASC', + AssetMandatoryMediatorsByAddedByIdSumCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_CREATED_AT_DESC', + AssetMandatoryMediatorsByAddedByIdSumCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdSumCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdSumIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdSumIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdSumIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_ID_ASC', + AssetMandatoryMediatorsByAddedByIdSumIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_ID_DESC', + AssetMandatoryMediatorsByAddedByIdSumUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdSumUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleAddedByIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_ADDED_BY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleAddedByIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_ADDED_BY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleAssetIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleAssetIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleBlockRangeAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleBlockRangeDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleCreatedAtAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleCreatedAtDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleCreatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleCreatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleIdentityIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleIdentityIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_ID_DESC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetMandatoryMediatorsByAddedByIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_MANDATORY_MEDIATORS_BY_ADDED_BY_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsAverageAssetIdAsc = 'ASSET_PRE_APPROVALS_AVERAGE_ASSET_ID_ASC', + AssetPreApprovalsAverageAssetIdDesc = 'ASSET_PRE_APPROVALS_AVERAGE_ASSET_ID_DESC', + AssetPreApprovalsAverageBlockRangeAsc = 'ASSET_PRE_APPROVALS_AVERAGE_BLOCK_RANGE_ASC', + AssetPreApprovalsAverageBlockRangeDesc = 'ASSET_PRE_APPROVALS_AVERAGE_BLOCK_RANGE_DESC', + AssetPreApprovalsAverageCreatedAtAsc = 'ASSET_PRE_APPROVALS_AVERAGE_CREATED_AT_ASC', + AssetPreApprovalsAverageCreatedAtDesc = 'ASSET_PRE_APPROVALS_AVERAGE_CREATED_AT_DESC', + AssetPreApprovalsAverageCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsAverageCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsAverageIdentityIdAsc = 'ASSET_PRE_APPROVALS_AVERAGE_IDENTITY_ID_ASC', + AssetPreApprovalsAverageIdentityIdDesc = 'ASSET_PRE_APPROVALS_AVERAGE_IDENTITY_ID_DESC', + AssetPreApprovalsAverageIdAsc = 'ASSET_PRE_APPROVALS_AVERAGE_ID_ASC', + AssetPreApprovalsAverageIdDesc = 'ASSET_PRE_APPROVALS_AVERAGE_ID_DESC', + AssetPreApprovalsAverageUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsAverageUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsCountAsc = 'ASSET_PRE_APPROVALS_COUNT_ASC', + AssetPreApprovalsCountDesc = 'ASSET_PRE_APPROVALS_COUNT_DESC', + AssetPreApprovalsDistinctCountAssetIdAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_ASSET_ID_ASC', + AssetPreApprovalsDistinctCountAssetIdDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_ASSET_ID_DESC', + AssetPreApprovalsDistinctCountBlockRangeAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetPreApprovalsDistinctCountBlockRangeDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetPreApprovalsDistinctCountCreatedAtAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_CREATED_AT_ASC', + AssetPreApprovalsDistinctCountCreatedAtDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_CREATED_AT_DESC', + AssetPreApprovalsDistinctCountCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsDistinctCountCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsDistinctCountIdentityIdAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_IDENTITY_ID_ASC', + AssetPreApprovalsDistinctCountIdentityIdDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_IDENTITY_ID_DESC', + AssetPreApprovalsDistinctCountIdAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_ID_ASC', + AssetPreApprovalsDistinctCountIdDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_ID_DESC', + AssetPreApprovalsDistinctCountUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsDistinctCountUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsMaxAssetIdAsc = 'ASSET_PRE_APPROVALS_MAX_ASSET_ID_ASC', + AssetPreApprovalsMaxAssetIdDesc = 'ASSET_PRE_APPROVALS_MAX_ASSET_ID_DESC', + AssetPreApprovalsMaxBlockRangeAsc = 'ASSET_PRE_APPROVALS_MAX_BLOCK_RANGE_ASC', + AssetPreApprovalsMaxBlockRangeDesc = 'ASSET_PRE_APPROVALS_MAX_BLOCK_RANGE_DESC', + AssetPreApprovalsMaxCreatedAtAsc = 'ASSET_PRE_APPROVALS_MAX_CREATED_AT_ASC', + AssetPreApprovalsMaxCreatedAtDesc = 'ASSET_PRE_APPROVALS_MAX_CREATED_AT_DESC', + AssetPreApprovalsMaxCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_MAX_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsMaxCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_MAX_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsMaxIdentityIdAsc = 'ASSET_PRE_APPROVALS_MAX_IDENTITY_ID_ASC', + AssetPreApprovalsMaxIdentityIdDesc = 'ASSET_PRE_APPROVALS_MAX_IDENTITY_ID_DESC', + AssetPreApprovalsMaxIdAsc = 'ASSET_PRE_APPROVALS_MAX_ID_ASC', + AssetPreApprovalsMaxIdDesc = 'ASSET_PRE_APPROVALS_MAX_ID_DESC', + AssetPreApprovalsMaxUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_MAX_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsMaxUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_MAX_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsMinAssetIdAsc = 'ASSET_PRE_APPROVALS_MIN_ASSET_ID_ASC', + AssetPreApprovalsMinAssetIdDesc = 'ASSET_PRE_APPROVALS_MIN_ASSET_ID_DESC', + AssetPreApprovalsMinBlockRangeAsc = 'ASSET_PRE_APPROVALS_MIN_BLOCK_RANGE_ASC', + AssetPreApprovalsMinBlockRangeDesc = 'ASSET_PRE_APPROVALS_MIN_BLOCK_RANGE_DESC', + AssetPreApprovalsMinCreatedAtAsc = 'ASSET_PRE_APPROVALS_MIN_CREATED_AT_ASC', + AssetPreApprovalsMinCreatedAtDesc = 'ASSET_PRE_APPROVALS_MIN_CREATED_AT_DESC', + AssetPreApprovalsMinCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_MIN_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsMinCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_MIN_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsMinIdentityIdAsc = 'ASSET_PRE_APPROVALS_MIN_IDENTITY_ID_ASC', + AssetPreApprovalsMinIdentityIdDesc = 'ASSET_PRE_APPROVALS_MIN_IDENTITY_ID_DESC', + AssetPreApprovalsMinIdAsc = 'ASSET_PRE_APPROVALS_MIN_ID_ASC', + AssetPreApprovalsMinIdDesc = 'ASSET_PRE_APPROVALS_MIN_ID_DESC', + AssetPreApprovalsMinUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_MIN_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsMinUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_MIN_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsStddevPopulationAssetIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_ASSET_ID_ASC', + AssetPreApprovalsStddevPopulationAssetIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_ASSET_ID_DESC', + AssetPreApprovalsStddevPopulationBlockRangeAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetPreApprovalsStddevPopulationBlockRangeDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetPreApprovalsStddevPopulationCreatedAtAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_CREATED_AT_ASC', + AssetPreApprovalsStddevPopulationCreatedAtDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_CREATED_AT_DESC', + AssetPreApprovalsStddevPopulationCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsStddevPopulationCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsStddevPopulationIdentityIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_IDENTITY_ID_ASC', + AssetPreApprovalsStddevPopulationIdentityIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_IDENTITY_ID_DESC', + AssetPreApprovalsStddevPopulationIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_ID_ASC', + AssetPreApprovalsStddevPopulationIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_ID_DESC', + AssetPreApprovalsStddevPopulationUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsStddevPopulationUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsStddevSampleAssetIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetPreApprovalsStddevSampleAssetIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetPreApprovalsStddevSampleBlockRangeAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetPreApprovalsStddevSampleBlockRangeDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetPreApprovalsStddevSampleCreatedAtAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetPreApprovalsStddevSampleCreatedAtDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetPreApprovalsStddevSampleCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsStddevSampleCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsStddevSampleIdentityIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AssetPreApprovalsStddevSampleIdentityIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AssetPreApprovalsStddevSampleIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_ID_ASC', + AssetPreApprovalsStddevSampleIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_ID_DESC', + AssetPreApprovalsStddevSampleUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsStddevSampleUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsSumAssetIdAsc = 'ASSET_PRE_APPROVALS_SUM_ASSET_ID_ASC', + AssetPreApprovalsSumAssetIdDesc = 'ASSET_PRE_APPROVALS_SUM_ASSET_ID_DESC', + AssetPreApprovalsSumBlockRangeAsc = 'ASSET_PRE_APPROVALS_SUM_BLOCK_RANGE_ASC', + AssetPreApprovalsSumBlockRangeDesc = 'ASSET_PRE_APPROVALS_SUM_BLOCK_RANGE_DESC', + AssetPreApprovalsSumCreatedAtAsc = 'ASSET_PRE_APPROVALS_SUM_CREATED_AT_ASC', + AssetPreApprovalsSumCreatedAtDesc = 'ASSET_PRE_APPROVALS_SUM_CREATED_AT_DESC', + AssetPreApprovalsSumCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_SUM_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsSumCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_SUM_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsSumIdentityIdAsc = 'ASSET_PRE_APPROVALS_SUM_IDENTITY_ID_ASC', + AssetPreApprovalsSumIdentityIdDesc = 'ASSET_PRE_APPROVALS_SUM_IDENTITY_ID_DESC', + AssetPreApprovalsSumIdAsc = 'ASSET_PRE_APPROVALS_SUM_ID_ASC', + AssetPreApprovalsSumIdDesc = 'ASSET_PRE_APPROVALS_SUM_ID_DESC', + AssetPreApprovalsSumUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_SUM_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsSumUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_SUM_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsVariancePopulationAssetIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetPreApprovalsVariancePopulationAssetIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetPreApprovalsVariancePopulationBlockRangeAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetPreApprovalsVariancePopulationBlockRangeDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetPreApprovalsVariancePopulationCreatedAtAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetPreApprovalsVariancePopulationCreatedAtDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetPreApprovalsVariancePopulationCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsVariancePopulationCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsVariancePopulationIdentityIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AssetPreApprovalsVariancePopulationIdentityIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AssetPreApprovalsVariancePopulationIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_ID_ASC', + AssetPreApprovalsVariancePopulationIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_ID_DESC', + AssetPreApprovalsVariancePopulationUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsVariancePopulationUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetPreApprovalsVarianceSampleAssetIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetPreApprovalsVarianceSampleAssetIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetPreApprovalsVarianceSampleBlockRangeAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetPreApprovalsVarianceSampleBlockRangeDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetPreApprovalsVarianceSampleCreatedAtAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetPreApprovalsVarianceSampleCreatedAtDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetPreApprovalsVarianceSampleCreatedBlockIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetPreApprovalsVarianceSampleCreatedBlockIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetPreApprovalsVarianceSampleIdentityIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AssetPreApprovalsVarianceSampleIdentityIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AssetPreApprovalsVarianceSampleIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_ID_ASC', + AssetPreApprovalsVarianceSampleIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_ID_DESC', + AssetPreApprovalsVarianceSampleUpdatedBlockIdAsc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetPreApprovalsVarianceSampleUpdatedBlockIdDesc = 'ASSET_PRE_APPROVALS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AuthorizationsByFromIdAverageBlockRangeAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_BLOCK_RANGE_ASC', + AuthorizationsByFromIdAverageBlockRangeDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_BLOCK_RANGE_DESC', + AuthorizationsByFromIdAverageCreatedAtAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_CREATED_AT_ASC', + AuthorizationsByFromIdAverageCreatedAtDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_CREATED_AT_DESC', + AuthorizationsByFromIdAverageCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AuthorizationsByFromIdAverageCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AuthorizationsByFromIdAverageDataAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_DATA_ASC', + AuthorizationsByFromIdAverageDataDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_DATA_DESC', + AuthorizationsByFromIdAverageExpiryAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_EXPIRY_ASC', + AuthorizationsByFromIdAverageExpiryDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_EXPIRY_DESC', + AuthorizationsByFromIdAverageFromIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_FROM_ID_ASC', + AuthorizationsByFromIdAverageFromIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_FROM_ID_DESC', + AuthorizationsByFromIdAverageIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_ID_ASC', + AuthorizationsByFromIdAverageIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_ID_DESC', + AuthorizationsByFromIdAverageStatusAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_STATUS_ASC', + AuthorizationsByFromIdAverageStatusDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_STATUS_DESC', + AuthorizationsByFromIdAverageToIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_TO_ID_ASC', + AuthorizationsByFromIdAverageToIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_TO_ID_DESC', + AuthorizationsByFromIdAverageToKeyAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_TO_KEY_ASC', + AuthorizationsByFromIdAverageToKeyDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_TO_KEY_DESC', + AuthorizationsByFromIdAverageTypeAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_TYPE_ASC', + AuthorizationsByFromIdAverageTypeDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_TYPE_DESC', + AuthorizationsByFromIdAverageUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AuthorizationsByFromIdAverageUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AuthorizationsByFromIdCountAsc = 'AUTHORIZATIONS_BY_FROM_ID_COUNT_ASC', + AuthorizationsByFromIdCountDesc = 'AUTHORIZATIONS_BY_FROM_ID_COUNT_DESC', + AuthorizationsByFromIdDistinctCountBlockRangeAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AuthorizationsByFromIdDistinctCountBlockRangeDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AuthorizationsByFromIdDistinctCountCreatedAtAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AuthorizationsByFromIdDistinctCountCreatedAtDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AuthorizationsByFromIdDistinctCountCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AuthorizationsByFromIdDistinctCountCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AuthorizationsByFromIdDistinctCountDataAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_DATA_ASC', + AuthorizationsByFromIdDistinctCountDataDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_DATA_DESC', + AuthorizationsByFromIdDistinctCountExpiryAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_EXPIRY_ASC', + AuthorizationsByFromIdDistinctCountExpiryDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_EXPIRY_DESC', + AuthorizationsByFromIdDistinctCountFromIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_ASC', + AuthorizationsByFromIdDistinctCountFromIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_DESC', + AuthorizationsByFromIdDistinctCountIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_ID_ASC', + AuthorizationsByFromIdDistinctCountIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_ID_DESC', + AuthorizationsByFromIdDistinctCountStatusAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_STATUS_ASC', + AuthorizationsByFromIdDistinctCountStatusDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_STATUS_DESC', + AuthorizationsByFromIdDistinctCountToIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_TO_ID_ASC', + AuthorizationsByFromIdDistinctCountToIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_TO_ID_DESC', + AuthorizationsByFromIdDistinctCountToKeyAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_TO_KEY_ASC', + AuthorizationsByFromIdDistinctCountToKeyDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_TO_KEY_DESC', + AuthorizationsByFromIdDistinctCountTypeAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_TYPE_ASC', + AuthorizationsByFromIdDistinctCountTypeDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_TYPE_DESC', + AuthorizationsByFromIdDistinctCountUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AuthorizationsByFromIdDistinctCountUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AuthorizationsByFromIdMaxBlockRangeAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_BLOCK_RANGE_ASC', + AuthorizationsByFromIdMaxBlockRangeDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_BLOCK_RANGE_DESC', + AuthorizationsByFromIdMaxCreatedAtAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_CREATED_AT_ASC', + AuthorizationsByFromIdMaxCreatedAtDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_CREATED_AT_DESC', + AuthorizationsByFromIdMaxCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_CREATED_BLOCK_ID_ASC', + AuthorizationsByFromIdMaxCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_CREATED_BLOCK_ID_DESC', + AuthorizationsByFromIdMaxDataAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_DATA_ASC', + AuthorizationsByFromIdMaxDataDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_DATA_DESC', + AuthorizationsByFromIdMaxExpiryAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_EXPIRY_ASC', + AuthorizationsByFromIdMaxExpiryDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_EXPIRY_DESC', + AuthorizationsByFromIdMaxFromIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_FROM_ID_ASC', + AuthorizationsByFromIdMaxFromIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_FROM_ID_DESC', + AuthorizationsByFromIdMaxIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_ID_ASC', + AuthorizationsByFromIdMaxIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_ID_DESC', + AuthorizationsByFromIdMaxStatusAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_STATUS_ASC', + AuthorizationsByFromIdMaxStatusDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_STATUS_DESC', + AuthorizationsByFromIdMaxToIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_TO_ID_ASC', + AuthorizationsByFromIdMaxToIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_TO_ID_DESC', + AuthorizationsByFromIdMaxToKeyAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_TO_KEY_ASC', + AuthorizationsByFromIdMaxToKeyDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_TO_KEY_DESC', + AuthorizationsByFromIdMaxTypeAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_TYPE_ASC', + AuthorizationsByFromIdMaxTypeDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_TYPE_DESC', + AuthorizationsByFromIdMaxUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_UPDATED_BLOCK_ID_ASC', + AuthorizationsByFromIdMaxUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_MAX_UPDATED_BLOCK_ID_DESC', + AuthorizationsByFromIdMinBlockRangeAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_BLOCK_RANGE_ASC', + AuthorizationsByFromIdMinBlockRangeDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_BLOCK_RANGE_DESC', + AuthorizationsByFromIdMinCreatedAtAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_CREATED_AT_ASC', + AuthorizationsByFromIdMinCreatedAtDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_CREATED_AT_DESC', + AuthorizationsByFromIdMinCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_CREATED_BLOCK_ID_ASC', + AuthorizationsByFromIdMinCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_CREATED_BLOCK_ID_DESC', + AuthorizationsByFromIdMinDataAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_DATA_ASC', + AuthorizationsByFromIdMinDataDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_DATA_DESC', + AuthorizationsByFromIdMinExpiryAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_EXPIRY_ASC', + AuthorizationsByFromIdMinExpiryDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_EXPIRY_DESC', + AuthorizationsByFromIdMinFromIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_FROM_ID_ASC', + AuthorizationsByFromIdMinFromIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_FROM_ID_DESC', + AuthorizationsByFromIdMinIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_ID_ASC', + AuthorizationsByFromIdMinIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_ID_DESC', + AuthorizationsByFromIdMinStatusAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_STATUS_ASC', + AuthorizationsByFromIdMinStatusDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_STATUS_DESC', + AuthorizationsByFromIdMinToIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_TO_ID_ASC', + AuthorizationsByFromIdMinToIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_TO_ID_DESC', + AuthorizationsByFromIdMinToKeyAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_TO_KEY_ASC', + AuthorizationsByFromIdMinToKeyDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_TO_KEY_DESC', + AuthorizationsByFromIdMinTypeAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_TYPE_ASC', + AuthorizationsByFromIdMinTypeDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_TYPE_DESC', + AuthorizationsByFromIdMinUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_UPDATED_BLOCK_ID_ASC', + AuthorizationsByFromIdMinUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_MIN_UPDATED_BLOCK_ID_DESC', + AuthorizationsByFromIdStddevPopulationBlockRangeAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AuthorizationsByFromIdStddevPopulationBlockRangeDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AuthorizationsByFromIdStddevPopulationCreatedAtAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AuthorizationsByFromIdStddevPopulationCreatedAtDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AuthorizationsByFromIdStddevPopulationCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AuthorizationsByFromIdStddevPopulationCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AuthorizationsByFromIdStddevPopulationDataAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_DATA_ASC', + AuthorizationsByFromIdStddevPopulationDataDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_DATA_DESC', + AuthorizationsByFromIdStddevPopulationExpiryAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_EXPIRY_ASC', + AuthorizationsByFromIdStddevPopulationExpiryDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_EXPIRY_DESC', + AuthorizationsByFromIdStddevPopulationFromIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_ASC', + AuthorizationsByFromIdStddevPopulationFromIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_DESC', + AuthorizationsByFromIdStddevPopulationIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_ID_ASC', + AuthorizationsByFromIdStddevPopulationIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_ID_DESC', + AuthorizationsByFromIdStddevPopulationStatusAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_STATUS_ASC', + AuthorizationsByFromIdStddevPopulationStatusDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_STATUS_DESC', + AuthorizationsByFromIdStddevPopulationToIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_TO_ID_ASC', + AuthorizationsByFromIdStddevPopulationToIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_TO_ID_DESC', + AuthorizationsByFromIdStddevPopulationToKeyAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_TO_KEY_ASC', + AuthorizationsByFromIdStddevPopulationToKeyDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_TO_KEY_DESC', + AuthorizationsByFromIdStddevPopulationTypeAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_TYPE_ASC', + AuthorizationsByFromIdStddevPopulationTypeDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_TYPE_DESC', + AuthorizationsByFromIdStddevPopulationUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AuthorizationsByFromIdStddevPopulationUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AuthorizationsByFromIdStddevSampleBlockRangeAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AuthorizationsByFromIdStddevSampleBlockRangeDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AuthorizationsByFromIdStddevSampleCreatedAtAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AuthorizationsByFromIdStddevSampleCreatedAtDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AuthorizationsByFromIdStddevSampleCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AuthorizationsByFromIdStddevSampleCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AuthorizationsByFromIdStddevSampleDataAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_DATA_ASC', + AuthorizationsByFromIdStddevSampleDataDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_DATA_DESC', + AuthorizationsByFromIdStddevSampleExpiryAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_EXPIRY_ASC', + AuthorizationsByFromIdStddevSampleExpiryDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_EXPIRY_DESC', + AuthorizationsByFromIdStddevSampleFromIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_ASC', + AuthorizationsByFromIdStddevSampleFromIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_DESC', + AuthorizationsByFromIdStddevSampleIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_ID_ASC', + AuthorizationsByFromIdStddevSampleIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_ID_DESC', + AuthorizationsByFromIdStddevSampleStatusAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_STATUS_ASC', + AuthorizationsByFromIdStddevSampleStatusDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_STATUS_DESC', + AuthorizationsByFromIdStddevSampleToIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_ASC', + AuthorizationsByFromIdStddevSampleToIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_DESC', + AuthorizationsByFromIdStddevSampleToKeyAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_TO_KEY_ASC', + AuthorizationsByFromIdStddevSampleToKeyDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_TO_KEY_DESC', + AuthorizationsByFromIdStddevSampleTypeAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_TYPE_ASC', + AuthorizationsByFromIdStddevSampleTypeDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_TYPE_DESC', + AuthorizationsByFromIdStddevSampleUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AuthorizationsByFromIdStddevSampleUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AuthorizationsByFromIdSumBlockRangeAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_BLOCK_RANGE_ASC', + AuthorizationsByFromIdSumBlockRangeDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_BLOCK_RANGE_DESC', + AuthorizationsByFromIdSumCreatedAtAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_CREATED_AT_ASC', + AuthorizationsByFromIdSumCreatedAtDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_CREATED_AT_DESC', + AuthorizationsByFromIdSumCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_CREATED_BLOCK_ID_ASC', + AuthorizationsByFromIdSumCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_CREATED_BLOCK_ID_DESC', + AuthorizationsByFromIdSumDataAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_DATA_ASC', + AuthorizationsByFromIdSumDataDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_DATA_DESC', + AuthorizationsByFromIdSumExpiryAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_EXPIRY_ASC', + AuthorizationsByFromIdSumExpiryDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_EXPIRY_DESC', + AuthorizationsByFromIdSumFromIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_FROM_ID_ASC', + AuthorizationsByFromIdSumFromIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_FROM_ID_DESC', + AuthorizationsByFromIdSumIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_ID_ASC', + AuthorizationsByFromIdSumIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_ID_DESC', + AuthorizationsByFromIdSumStatusAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_STATUS_ASC', + AuthorizationsByFromIdSumStatusDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_STATUS_DESC', + AuthorizationsByFromIdSumToIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_TO_ID_ASC', + AuthorizationsByFromIdSumToIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_TO_ID_DESC', + AuthorizationsByFromIdSumToKeyAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_TO_KEY_ASC', + AuthorizationsByFromIdSumToKeyDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_TO_KEY_DESC', + AuthorizationsByFromIdSumTypeAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_TYPE_ASC', + AuthorizationsByFromIdSumTypeDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_TYPE_DESC', + AuthorizationsByFromIdSumUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_UPDATED_BLOCK_ID_ASC', + AuthorizationsByFromIdSumUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_SUM_UPDATED_BLOCK_ID_DESC', + AuthorizationsByFromIdVariancePopulationBlockRangeAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AuthorizationsByFromIdVariancePopulationBlockRangeDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AuthorizationsByFromIdVariancePopulationCreatedAtAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AuthorizationsByFromIdVariancePopulationCreatedAtDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AuthorizationsByFromIdVariancePopulationCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AuthorizationsByFromIdVariancePopulationCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AuthorizationsByFromIdVariancePopulationDataAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_DATA_ASC', + AuthorizationsByFromIdVariancePopulationDataDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_DATA_DESC', + AuthorizationsByFromIdVariancePopulationExpiryAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_EXPIRY_ASC', + AuthorizationsByFromIdVariancePopulationExpiryDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_EXPIRY_DESC', + AuthorizationsByFromIdVariancePopulationFromIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_ASC', + AuthorizationsByFromIdVariancePopulationFromIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_DESC', + AuthorizationsByFromIdVariancePopulationIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_ID_ASC', + AuthorizationsByFromIdVariancePopulationIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_ID_DESC', + AuthorizationsByFromIdVariancePopulationStatusAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_STATUS_ASC', + AuthorizationsByFromIdVariancePopulationStatusDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_STATUS_DESC', + AuthorizationsByFromIdVariancePopulationToIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_ASC', + AuthorizationsByFromIdVariancePopulationToIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_DESC', + AuthorizationsByFromIdVariancePopulationToKeyAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_TO_KEY_ASC', + AuthorizationsByFromIdVariancePopulationToKeyDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_TO_KEY_DESC', + AuthorizationsByFromIdVariancePopulationTypeAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_TYPE_ASC', + AuthorizationsByFromIdVariancePopulationTypeDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_TYPE_DESC', + AuthorizationsByFromIdVariancePopulationUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AuthorizationsByFromIdVariancePopulationUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AuthorizationsByFromIdVarianceSampleBlockRangeAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AuthorizationsByFromIdVarianceSampleBlockRangeDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AuthorizationsByFromIdVarianceSampleCreatedAtAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AuthorizationsByFromIdVarianceSampleCreatedAtDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AuthorizationsByFromIdVarianceSampleCreatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AuthorizationsByFromIdVarianceSampleCreatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AuthorizationsByFromIdVarianceSampleDataAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_DATA_ASC', + AuthorizationsByFromIdVarianceSampleDataDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_DATA_DESC', + AuthorizationsByFromIdVarianceSampleExpiryAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_EXPIRY_ASC', + AuthorizationsByFromIdVarianceSampleExpiryDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_EXPIRY_DESC', + AuthorizationsByFromIdVarianceSampleFromIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + AuthorizationsByFromIdVarianceSampleFromIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + AuthorizationsByFromIdVarianceSampleIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_ID_ASC', + AuthorizationsByFromIdVarianceSampleIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_ID_DESC', + AuthorizationsByFromIdVarianceSampleStatusAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_STATUS_ASC', + AuthorizationsByFromIdVarianceSampleStatusDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_STATUS_DESC', + AuthorizationsByFromIdVarianceSampleToIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_ASC', + AuthorizationsByFromIdVarianceSampleToIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_DESC', + AuthorizationsByFromIdVarianceSampleToKeyAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_TO_KEY_ASC', + AuthorizationsByFromIdVarianceSampleToKeyDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_TO_KEY_DESC', + AuthorizationsByFromIdVarianceSampleTypeAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_TYPE_ASC', + AuthorizationsByFromIdVarianceSampleTypeDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_TYPE_DESC', + AuthorizationsByFromIdVarianceSampleUpdatedBlockIdAsc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AuthorizationsByFromIdVarianceSampleUpdatedBlockIdDesc = 'AUTHORIZATIONS_BY_FROM_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + BridgeEventsAverageAmountAsc = 'BRIDGE_EVENTS_AVERAGE_AMOUNT_ASC', + BridgeEventsAverageAmountDesc = 'BRIDGE_EVENTS_AVERAGE_AMOUNT_DESC', + BridgeEventsAverageBlockRangeAsc = 'BRIDGE_EVENTS_AVERAGE_BLOCK_RANGE_ASC', + BridgeEventsAverageBlockRangeDesc = 'BRIDGE_EVENTS_AVERAGE_BLOCK_RANGE_DESC', + BridgeEventsAverageCreatedAtAsc = 'BRIDGE_EVENTS_AVERAGE_CREATED_AT_ASC', + BridgeEventsAverageCreatedAtDesc = 'BRIDGE_EVENTS_AVERAGE_CREATED_AT_DESC', + BridgeEventsAverageCreatedBlockIdAsc = 'BRIDGE_EVENTS_AVERAGE_CREATED_BLOCK_ID_ASC', + BridgeEventsAverageCreatedBlockIdDesc = 'BRIDGE_EVENTS_AVERAGE_CREATED_BLOCK_ID_DESC', + BridgeEventsAverageDatetimeAsc = 'BRIDGE_EVENTS_AVERAGE_DATETIME_ASC', + BridgeEventsAverageDatetimeDesc = 'BRIDGE_EVENTS_AVERAGE_DATETIME_DESC', + BridgeEventsAverageEventIdxAsc = 'BRIDGE_EVENTS_AVERAGE_EVENT_IDX_ASC', + BridgeEventsAverageEventIdxDesc = 'BRIDGE_EVENTS_AVERAGE_EVENT_IDX_DESC', + BridgeEventsAverageIdentityIdAsc = 'BRIDGE_EVENTS_AVERAGE_IDENTITY_ID_ASC', + BridgeEventsAverageIdentityIdDesc = 'BRIDGE_EVENTS_AVERAGE_IDENTITY_ID_DESC', + BridgeEventsAverageIdAsc = 'BRIDGE_EVENTS_AVERAGE_ID_ASC', + BridgeEventsAverageIdDesc = 'BRIDGE_EVENTS_AVERAGE_ID_DESC', + BridgeEventsAverageRecipientAsc = 'BRIDGE_EVENTS_AVERAGE_RECIPIENT_ASC', + BridgeEventsAverageRecipientDesc = 'BRIDGE_EVENTS_AVERAGE_RECIPIENT_DESC', + BridgeEventsAverageTxHashAsc = 'BRIDGE_EVENTS_AVERAGE_TX_HASH_ASC', + BridgeEventsAverageTxHashDesc = 'BRIDGE_EVENTS_AVERAGE_TX_HASH_DESC', + BridgeEventsAverageUpdatedBlockIdAsc = 'BRIDGE_EVENTS_AVERAGE_UPDATED_BLOCK_ID_ASC', + BridgeEventsAverageUpdatedBlockIdDesc = 'BRIDGE_EVENTS_AVERAGE_UPDATED_BLOCK_ID_DESC', + BridgeEventsCountAsc = 'BRIDGE_EVENTS_COUNT_ASC', + BridgeEventsCountDesc = 'BRIDGE_EVENTS_COUNT_DESC', + BridgeEventsDistinctCountAmountAsc = 'BRIDGE_EVENTS_DISTINCT_COUNT_AMOUNT_ASC', + BridgeEventsDistinctCountAmountDesc = 'BRIDGE_EVENTS_DISTINCT_COUNT_AMOUNT_DESC', + BridgeEventsDistinctCountBlockRangeAsc = 'BRIDGE_EVENTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + BridgeEventsDistinctCountBlockRangeDesc = 'BRIDGE_EVENTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + BridgeEventsDistinctCountCreatedAtAsc = 'BRIDGE_EVENTS_DISTINCT_COUNT_CREATED_AT_ASC', + BridgeEventsDistinctCountCreatedAtDesc = 'BRIDGE_EVENTS_DISTINCT_COUNT_CREATED_AT_DESC', + BridgeEventsDistinctCountCreatedBlockIdAsc = 'BRIDGE_EVENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + BridgeEventsDistinctCountCreatedBlockIdDesc = 'BRIDGE_EVENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + BridgeEventsDistinctCountDatetimeAsc = 'BRIDGE_EVENTS_DISTINCT_COUNT_DATETIME_ASC', + BridgeEventsDistinctCountDatetimeDesc = 'BRIDGE_EVENTS_DISTINCT_COUNT_DATETIME_DESC', + BridgeEventsDistinctCountEventIdxAsc = 'BRIDGE_EVENTS_DISTINCT_COUNT_EVENT_IDX_ASC', + BridgeEventsDistinctCountEventIdxDesc = 'BRIDGE_EVENTS_DISTINCT_COUNT_EVENT_IDX_DESC', + BridgeEventsDistinctCountIdentityIdAsc = 'BRIDGE_EVENTS_DISTINCT_COUNT_IDENTITY_ID_ASC', + BridgeEventsDistinctCountIdentityIdDesc = 'BRIDGE_EVENTS_DISTINCT_COUNT_IDENTITY_ID_DESC', + BridgeEventsDistinctCountIdAsc = 'BRIDGE_EVENTS_DISTINCT_COUNT_ID_ASC', + BridgeEventsDistinctCountIdDesc = 'BRIDGE_EVENTS_DISTINCT_COUNT_ID_DESC', + BridgeEventsDistinctCountRecipientAsc = 'BRIDGE_EVENTS_DISTINCT_COUNT_RECIPIENT_ASC', + BridgeEventsDistinctCountRecipientDesc = 'BRIDGE_EVENTS_DISTINCT_COUNT_RECIPIENT_DESC', + BridgeEventsDistinctCountTxHashAsc = 'BRIDGE_EVENTS_DISTINCT_COUNT_TX_HASH_ASC', + BridgeEventsDistinctCountTxHashDesc = 'BRIDGE_EVENTS_DISTINCT_COUNT_TX_HASH_DESC', + BridgeEventsDistinctCountUpdatedBlockIdAsc = 'BRIDGE_EVENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + BridgeEventsDistinctCountUpdatedBlockIdDesc = 'BRIDGE_EVENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + BridgeEventsMaxAmountAsc = 'BRIDGE_EVENTS_MAX_AMOUNT_ASC', + BridgeEventsMaxAmountDesc = 'BRIDGE_EVENTS_MAX_AMOUNT_DESC', + BridgeEventsMaxBlockRangeAsc = 'BRIDGE_EVENTS_MAX_BLOCK_RANGE_ASC', + BridgeEventsMaxBlockRangeDesc = 'BRIDGE_EVENTS_MAX_BLOCK_RANGE_DESC', + BridgeEventsMaxCreatedAtAsc = 'BRIDGE_EVENTS_MAX_CREATED_AT_ASC', + BridgeEventsMaxCreatedAtDesc = 'BRIDGE_EVENTS_MAX_CREATED_AT_DESC', + BridgeEventsMaxCreatedBlockIdAsc = 'BRIDGE_EVENTS_MAX_CREATED_BLOCK_ID_ASC', + BridgeEventsMaxCreatedBlockIdDesc = 'BRIDGE_EVENTS_MAX_CREATED_BLOCK_ID_DESC', + BridgeEventsMaxDatetimeAsc = 'BRIDGE_EVENTS_MAX_DATETIME_ASC', + BridgeEventsMaxDatetimeDesc = 'BRIDGE_EVENTS_MAX_DATETIME_DESC', + BridgeEventsMaxEventIdxAsc = 'BRIDGE_EVENTS_MAX_EVENT_IDX_ASC', + BridgeEventsMaxEventIdxDesc = 'BRIDGE_EVENTS_MAX_EVENT_IDX_DESC', + BridgeEventsMaxIdentityIdAsc = 'BRIDGE_EVENTS_MAX_IDENTITY_ID_ASC', + BridgeEventsMaxIdentityIdDesc = 'BRIDGE_EVENTS_MAX_IDENTITY_ID_DESC', + BridgeEventsMaxIdAsc = 'BRIDGE_EVENTS_MAX_ID_ASC', + BridgeEventsMaxIdDesc = 'BRIDGE_EVENTS_MAX_ID_DESC', + BridgeEventsMaxRecipientAsc = 'BRIDGE_EVENTS_MAX_RECIPIENT_ASC', + BridgeEventsMaxRecipientDesc = 'BRIDGE_EVENTS_MAX_RECIPIENT_DESC', + BridgeEventsMaxTxHashAsc = 'BRIDGE_EVENTS_MAX_TX_HASH_ASC', + BridgeEventsMaxTxHashDesc = 'BRIDGE_EVENTS_MAX_TX_HASH_DESC', + BridgeEventsMaxUpdatedBlockIdAsc = 'BRIDGE_EVENTS_MAX_UPDATED_BLOCK_ID_ASC', + BridgeEventsMaxUpdatedBlockIdDesc = 'BRIDGE_EVENTS_MAX_UPDATED_BLOCK_ID_DESC', + BridgeEventsMinAmountAsc = 'BRIDGE_EVENTS_MIN_AMOUNT_ASC', + BridgeEventsMinAmountDesc = 'BRIDGE_EVENTS_MIN_AMOUNT_DESC', + BridgeEventsMinBlockRangeAsc = 'BRIDGE_EVENTS_MIN_BLOCK_RANGE_ASC', + BridgeEventsMinBlockRangeDesc = 'BRIDGE_EVENTS_MIN_BLOCK_RANGE_DESC', + BridgeEventsMinCreatedAtAsc = 'BRIDGE_EVENTS_MIN_CREATED_AT_ASC', + BridgeEventsMinCreatedAtDesc = 'BRIDGE_EVENTS_MIN_CREATED_AT_DESC', + BridgeEventsMinCreatedBlockIdAsc = 'BRIDGE_EVENTS_MIN_CREATED_BLOCK_ID_ASC', + BridgeEventsMinCreatedBlockIdDesc = 'BRIDGE_EVENTS_MIN_CREATED_BLOCK_ID_DESC', + BridgeEventsMinDatetimeAsc = 'BRIDGE_EVENTS_MIN_DATETIME_ASC', + BridgeEventsMinDatetimeDesc = 'BRIDGE_EVENTS_MIN_DATETIME_DESC', + BridgeEventsMinEventIdxAsc = 'BRIDGE_EVENTS_MIN_EVENT_IDX_ASC', + BridgeEventsMinEventIdxDesc = 'BRIDGE_EVENTS_MIN_EVENT_IDX_DESC', + BridgeEventsMinIdentityIdAsc = 'BRIDGE_EVENTS_MIN_IDENTITY_ID_ASC', + BridgeEventsMinIdentityIdDesc = 'BRIDGE_EVENTS_MIN_IDENTITY_ID_DESC', + BridgeEventsMinIdAsc = 'BRIDGE_EVENTS_MIN_ID_ASC', + BridgeEventsMinIdDesc = 'BRIDGE_EVENTS_MIN_ID_DESC', + BridgeEventsMinRecipientAsc = 'BRIDGE_EVENTS_MIN_RECIPIENT_ASC', + BridgeEventsMinRecipientDesc = 'BRIDGE_EVENTS_MIN_RECIPIENT_DESC', + BridgeEventsMinTxHashAsc = 'BRIDGE_EVENTS_MIN_TX_HASH_ASC', + BridgeEventsMinTxHashDesc = 'BRIDGE_EVENTS_MIN_TX_HASH_DESC', + BridgeEventsMinUpdatedBlockIdAsc = 'BRIDGE_EVENTS_MIN_UPDATED_BLOCK_ID_ASC', + BridgeEventsMinUpdatedBlockIdDesc = 'BRIDGE_EVENTS_MIN_UPDATED_BLOCK_ID_DESC', + BridgeEventsStddevPopulationAmountAsc = 'BRIDGE_EVENTS_STDDEV_POPULATION_AMOUNT_ASC', + BridgeEventsStddevPopulationAmountDesc = 'BRIDGE_EVENTS_STDDEV_POPULATION_AMOUNT_DESC', + BridgeEventsStddevPopulationBlockRangeAsc = 'BRIDGE_EVENTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + BridgeEventsStddevPopulationBlockRangeDesc = 'BRIDGE_EVENTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + BridgeEventsStddevPopulationCreatedAtAsc = 'BRIDGE_EVENTS_STDDEV_POPULATION_CREATED_AT_ASC', + BridgeEventsStddevPopulationCreatedAtDesc = 'BRIDGE_EVENTS_STDDEV_POPULATION_CREATED_AT_DESC', + BridgeEventsStddevPopulationCreatedBlockIdAsc = 'BRIDGE_EVENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + BridgeEventsStddevPopulationCreatedBlockIdDesc = 'BRIDGE_EVENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + BridgeEventsStddevPopulationDatetimeAsc = 'BRIDGE_EVENTS_STDDEV_POPULATION_DATETIME_ASC', + BridgeEventsStddevPopulationDatetimeDesc = 'BRIDGE_EVENTS_STDDEV_POPULATION_DATETIME_DESC', + BridgeEventsStddevPopulationEventIdxAsc = 'BRIDGE_EVENTS_STDDEV_POPULATION_EVENT_IDX_ASC', + BridgeEventsStddevPopulationEventIdxDesc = 'BRIDGE_EVENTS_STDDEV_POPULATION_EVENT_IDX_DESC', + BridgeEventsStddevPopulationIdentityIdAsc = 'BRIDGE_EVENTS_STDDEV_POPULATION_IDENTITY_ID_ASC', + BridgeEventsStddevPopulationIdentityIdDesc = 'BRIDGE_EVENTS_STDDEV_POPULATION_IDENTITY_ID_DESC', + BridgeEventsStddevPopulationIdAsc = 'BRIDGE_EVENTS_STDDEV_POPULATION_ID_ASC', + BridgeEventsStddevPopulationIdDesc = 'BRIDGE_EVENTS_STDDEV_POPULATION_ID_DESC', + BridgeEventsStddevPopulationRecipientAsc = 'BRIDGE_EVENTS_STDDEV_POPULATION_RECIPIENT_ASC', + BridgeEventsStddevPopulationRecipientDesc = 'BRIDGE_EVENTS_STDDEV_POPULATION_RECIPIENT_DESC', + BridgeEventsStddevPopulationTxHashAsc = 'BRIDGE_EVENTS_STDDEV_POPULATION_TX_HASH_ASC', + BridgeEventsStddevPopulationTxHashDesc = 'BRIDGE_EVENTS_STDDEV_POPULATION_TX_HASH_DESC', + BridgeEventsStddevPopulationUpdatedBlockIdAsc = 'BRIDGE_EVENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + BridgeEventsStddevPopulationUpdatedBlockIdDesc = 'BRIDGE_EVENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + BridgeEventsStddevSampleAmountAsc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_AMOUNT_ASC', + BridgeEventsStddevSampleAmountDesc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_AMOUNT_DESC', + BridgeEventsStddevSampleBlockRangeAsc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + BridgeEventsStddevSampleBlockRangeDesc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + BridgeEventsStddevSampleCreatedAtAsc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_CREATED_AT_ASC', + BridgeEventsStddevSampleCreatedAtDesc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_CREATED_AT_DESC', + BridgeEventsStddevSampleCreatedBlockIdAsc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + BridgeEventsStddevSampleCreatedBlockIdDesc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + BridgeEventsStddevSampleDatetimeAsc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_DATETIME_ASC', + BridgeEventsStddevSampleDatetimeDesc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_DATETIME_DESC', + BridgeEventsStddevSampleEventIdxAsc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_EVENT_IDX_ASC', + BridgeEventsStddevSampleEventIdxDesc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_EVENT_IDX_DESC', + BridgeEventsStddevSampleIdentityIdAsc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + BridgeEventsStddevSampleIdentityIdDesc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + BridgeEventsStddevSampleIdAsc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_ID_ASC', + BridgeEventsStddevSampleIdDesc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_ID_DESC', + BridgeEventsStddevSampleRecipientAsc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_RECIPIENT_ASC', + BridgeEventsStddevSampleRecipientDesc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_RECIPIENT_DESC', + BridgeEventsStddevSampleTxHashAsc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_TX_HASH_ASC', + BridgeEventsStddevSampleTxHashDesc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_TX_HASH_DESC', + BridgeEventsStddevSampleUpdatedBlockIdAsc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + BridgeEventsStddevSampleUpdatedBlockIdDesc = 'BRIDGE_EVENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + BridgeEventsSumAmountAsc = 'BRIDGE_EVENTS_SUM_AMOUNT_ASC', + BridgeEventsSumAmountDesc = 'BRIDGE_EVENTS_SUM_AMOUNT_DESC', + BridgeEventsSumBlockRangeAsc = 'BRIDGE_EVENTS_SUM_BLOCK_RANGE_ASC', + BridgeEventsSumBlockRangeDesc = 'BRIDGE_EVENTS_SUM_BLOCK_RANGE_DESC', + BridgeEventsSumCreatedAtAsc = 'BRIDGE_EVENTS_SUM_CREATED_AT_ASC', + BridgeEventsSumCreatedAtDesc = 'BRIDGE_EVENTS_SUM_CREATED_AT_DESC', + BridgeEventsSumCreatedBlockIdAsc = 'BRIDGE_EVENTS_SUM_CREATED_BLOCK_ID_ASC', + BridgeEventsSumCreatedBlockIdDesc = 'BRIDGE_EVENTS_SUM_CREATED_BLOCK_ID_DESC', + BridgeEventsSumDatetimeAsc = 'BRIDGE_EVENTS_SUM_DATETIME_ASC', + BridgeEventsSumDatetimeDesc = 'BRIDGE_EVENTS_SUM_DATETIME_DESC', + BridgeEventsSumEventIdxAsc = 'BRIDGE_EVENTS_SUM_EVENT_IDX_ASC', + BridgeEventsSumEventIdxDesc = 'BRIDGE_EVENTS_SUM_EVENT_IDX_DESC', + BridgeEventsSumIdentityIdAsc = 'BRIDGE_EVENTS_SUM_IDENTITY_ID_ASC', + BridgeEventsSumIdentityIdDesc = 'BRIDGE_EVENTS_SUM_IDENTITY_ID_DESC', + BridgeEventsSumIdAsc = 'BRIDGE_EVENTS_SUM_ID_ASC', + BridgeEventsSumIdDesc = 'BRIDGE_EVENTS_SUM_ID_DESC', + BridgeEventsSumRecipientAsc = 'BRIDGE_EVENTS_SUM_RECIPIENT_ASC', + BridgeEventsSumRecipientDesc = 'BRIDGE_EVENTS_SUM_RECIPIENT_DESC', + BridgeEventsSumTxHashAsc = 'BRIDGE_EVENTS_SUM_TX_HASH_ASC', + BridgeEventsSumTxHashDesc = 'BRIDGE_EVENTS_SUM_TX_HASH_DESC', + BridgeEventsSumUpdatedBlockIdAsc = 'BRIDGE_EVENTS_SUM_UPDATED_BLOCK_ID_ASC', + BridgeEventsSumUpdatedBlockIdDesc = 'BRIDGE_EVENTS_SUM_UPDATED_BLOCK_ID_DESC', + BridgeEventsVariancePopulationAmountAsc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_AMOUNT_ASC', + BridgeEventsVariancePopulationAmountDesc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_AMOUNT_DESC', + BridgeEventsVariancePopulationBlockRangeAsc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + BridgeEventsVariancePopulationBlockRangeDesc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + BridgeEventsVariancePopulationCreatedAtAsc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_CREATED_AT_ASC', + BridgeEventsVariancePopulationCreatedAtDesc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_CREATED_AT_DESC', + BridgeEventsVariancePopulationCreatedBlockIdAsc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + BridgeEventsVariancePopulationCreatedBlockIdDesc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + BridgeEventsVariancePopulationDatetimeAsc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_DATETIME_ASC', + BridgeEventsVariancePopulationDatetimeDesc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_DATETIME_DESC', + BridgeEventsVariancePopulationEventIdxAsc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_EVENT_IDX_ASC', + BridgeEventsVariancePopulationEventIdxDesc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_EVENT_IDX_DESC', + BridgeEventsVariancePopulationIdentityIdAsc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + BridgeEventsVariancePopulationIdentityIdDesc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + BridgeEventsVariancePopulationIdAsc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_ID_ASC', + BridgeEventsVariancePopulationIdDesc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_ID_DESC', + BridgeEventsVariancePopulationRecipientAsc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_RECIPIENT_ASC', + BridgeEventsVariancePopulationRecipientDesc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_RECIPIENT_DESC', + BridgeEventsVariancePopulationTxHashAsc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_TX_HASH_ASC', + BridgeEventsVariancePopulationTxHashDesc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_TX_HASH_DESC', + BridgeEventsVariancePopulationUpdatedBlockIdAsc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + BridgeEventsVariancePopulationUpdatedBlockIdDesc = 'BRIDGE_EVENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + BridgeEventsVarianceSampleAmountAsc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_AMOUNT_ASC', + BridgeEventsVarianceSampleAmountDesc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_AMOUNT_DESC', + BridgeEventsVarianceSampleBlockRangeAsc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + BridgeEventsVarianceSampleBlockRangeDesc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + BridgeEventsVarianceSampleCreatedAtAsc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + BridgeEventsVarianceSampleCreatedAtDesc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + BridgeEventsVarianceSampleCreatedBlockIdAsc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + BridgeEventsVarianceSampleCreatedBlockIdDesc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + BridgeEventsVarianceSampleDatetimeAsc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_DATETIME_ASC', + BridgeEventsVarianceSampleDatetimeDesc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_DATETIME_DESC', + BridgeEventsVarianceSampleEventIdxAsc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + BridgeEventsVarianceSampleEventIdxDesc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + BridgeEventsVarianceSampleIdentityIdAsc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + BridgeEventsVarianceSampleIdentityIdDesc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + BridgeEventsVarianceSampleIdAsc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_ID_ASC', + BridgeEventsVarianceSampleIdDesc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_ID_DESC', + BridgeEventsVarianceSampleRecipientAsc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_RECIPIENT_ASC', + BridgeEventsVarianceSampleRecipientDesc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_RECIPIENT_DESC', + BridgeEventsVarianceSampleTxHashAsc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_TX_HASH_ASC', + BridgeEventsVarianceSampleTxHashDesc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_TX_HASH_DESC', + BridgeEventsVarianceSampleUpdatedBlockIdAsc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + BridgeEventsVarianceSampleUpdatedBlockIdDesc = 'BRIDGE_EVENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ChildrenAverageBlockRangeAsc = 'CHILDREN_AVERAGE_BLOCK_RANGE_ASC', + ChildrenAverageBlockRangeDesc = 'CHILDREN_AVERAGE_BLOCK_RANGE_DESC', + ChildrenAverageChildIdAsc = 'CHILDREN_AVERAGE_CHILD_ID_ASC', + ChildrenAverageChildIdDesc = 'CHILDREN_AVERAGE_CHILD_ID_DESC', + ChildrenAverageCreatedAtAsc = 'CHILDREN_AVERAGE_CREATED_AT_ASC', + ChildrenAverageCreatedAtDesc = 'CHILDREN_AVERAGE_CREATED_AT_DESC', + ChildrenAverageCreatedBlockIdAsc = 'CHILDREN_AVERAGE_CREATED_BLOCK_ID_ASC', + ChildrenAverageCreatedBlockIdDesc = 'CHILDREN_AVERAGE_CREATED_BLOCK_ID_DESC', + ChildrenAverageIdAsc = 'CHILDREN_AVERAGE_ID_ASC', + ChildrenAverageIdDesc = 'CHILDREN_AVERAGE_ID_DESC', + ChildrenAverageParentIdAsc = 'CHILDREN_AVERAGE_PARENT_ID_ASC', + ChildrenAverageParentIdDesc = 'CHILDREN_AVERAGE_PARENT_ID_DESC', + ChildrenAverageUpdatedBlockIdAsc = 'CHILDREN_AVERAGE_UPDATED_BLOCK_ID_ASC', + ChildrenAverageUpdatedBlockIdDesc = 'CHILDREN_AVERAGE_UPDATED_BLOCK_ID_DESC', + ChildrenCountAsc = 'CHILDREN_COUNT_ASC', + ChildrenCountDesc = 'CHILDREN_COUNT_DESC', + ChildrenDistinctCountBlockRangeAsc = 'CHILDREN_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ChildrenDistinctCountBlockRangeDesc = 'CHILDREN_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ChildrenDistinctCountChildIdAsc = 'CHILDREN_DISTINCT_COUNT_CHILD_ID_ASC', + ChildrenDistinctCountChildIdDesc = 'CHILDREN_DISTINCT_COUNT_CHILD_ID_DESC', + ChildrenDistinctCountCreatedAtAsc = 'CHILDREN_DISTINCT_COUNT_CREATED_AT_ASC', + ChildrenDistinctCountCreatedAtDesc = 'CHILDREN_DISTINCT_COUNT_CREATED_AT_DESC', + ChildrenDistinctCountCreatedBlockIdAsc = 'CHILDREN_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ChildrenDistinctCountCreatedBlockIdDesc = 'CHILDREN_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ChildrenDistinctCountIdAsc = 'CHILDREN_DISTINCT_COUNT_ID_ASC', + ChildrenDistinctCountIdDesc = 'CHILDREN_DISTINCT_COUNT_ID_DESC', + ChildrenDistinctCountParentIdAsc = 'CHILDREN_DISTINCT_COUNT_PARENT_ID_ASC', + ChildrenDistinctCountParentIdDesc = 'CHILDREN_DISTINCT_COUNT_PARENT_ID_DESC', + ChildrenDistinctCountUpdatedBlockIdAsc = 'CHILDREN_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ChildrenDistinctCountUpdatedBlockIdDesc = 'CHILDREN_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ChildrenMaxBlockRangeAsc = 'CHILDREN_MAX_BLOCK_RANGE_ASC', + ChildrenMaxBlockRangeDesc = 'CHILDREN_MAX_BLOCK_RANGE_DESC', + ChildrenMaxChildIdAsc = 'CHILDREN_MAX_CHILD_ID_ASC', + ChildrenMaxChildIdDesc = 'CHILDREN_MAX_CHILD_ID_DESC', + ChildrenMaxCreatedAtAsc = 'CHILDREN_MAX_CREATED_AT_ASC', + ChildrenMaxCreatedAtDesc = 'CHILDREN_MAX_CREATED_AT_DESC', + ChildrenMaxCreatedBlockIdAsc = 'CHILDREN_MAX_CREATED_BLOCK_ID_ASC', + ChildrenMaxCreatedBlockIdDesc = 'CHILDREN_MAX_CREATED_BLOCK_ID_DESC', + ChildrenMaxIdAsc = 'CHILDREN_MAX_ID_ASC', + ChildrenMaxIdDesc = 'CHILDREN_MAX_ID_DESC', + ChildrenMaxParentIdAsc = 'CHILDREN_MAX_PARENT_ID_ASC', + ChildrenMaxParentIdDesc = 'CHILDREN_MAX_PARENT_ID_DESC', + ChildrenMaxUpdatedBlockIdAsc = 'CHILDREN_MAX_UPDATED_BLOCK_ID_ASC', + ChildrenMaxUpdatedBlockIdDesc = 'CHILDREN_MAX_UPDATED_BLOCK_ID_DESC', + ChildrenMinBlockRangeAsc = 'CHILDREN_MIN_BLOCK_RANGE_ASC', + ChildrenMinBlockRangeDesc = 'CHILDREN_MIN_BLOCK_RANGE_DESC', + ChildrenMinChildIdAsc = 'CHILDREN_MIN_CHILD_ID_ASC', + ChildrenMinChildIdDesc = 'CHILDREN_MIN_CHILD_ID_DESC', + ChildrenMinCreatedAtAsc = 'CHILDREN_MIN_CREATED_AT_ASC', + ChildrenMinCreatedAtDesc = 'CHILDREN_MIN_CREATED_AT_DESC', + ChildrenMinCreatedBlockIdAsc = 'CHILDREN_MIN_CREATED_BLOCK_ID_ASC', + ChildrenMinCreatedBlockIdDesc = 'CHILDREN_MIN_CREATED_BLOCK_ID_DESC', + ChildrenMinIdAsc = 'CHILDREN_MIN_ID_ASC', + ChildrenMinIdDesc = 'CHILDREN_MIN_ID_DESC', + ChildrenMinParentIdAsc = 'CHILDREN_MIN_PARENT_ID_ASC', + ChildrenMinParentIdDesc = 'CHILDREN_MIN_PARENT_ID_DESC', + ChildrenMinUpdatedBlockIdAsc = 'CHILDREN_MIN_UPDATED_BLOCK_ID_ASC', + ChildrenMinUpdatedBlockIdDesc = 'CHILDREN_MIN_UPDATED_BLOCK_ID_DESC', + ChildrenStddevPopulationBlockRangeAsc = 'CHILDREN_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ChildrenStddevPopulationBlockRangeDesc = 'CHILDREN_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ChildrenStddevPopulationChildIdAsc = 'CHILDREN_STDDEV_POPULATION_CHILD_ID_ASC', + ChildrenStddevPopulationChildIdDesc = 'CHILDREN_STDDEV_POPULATION_CHILD_ID_DESC', + ChildrenStddevPopulationCreatedAtAsc = 'CHILDREN_STDDEV_POPULATION_CREATED_AT_ASC', + ChildrenStddevPopulationCreatedAtDesc = 'CHILDREN_STDDEV_POPULATION_CREATED_AT_DESC', + ChildrenStddevPopulationCreatedBlockIdAsc = 'CHILDREN_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ChildrenStddevPopulationCreatedBlockIdDesc = 'CHILDREN_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ChildrenStddevPopulationIdAsc = 'CHILDREN_STDDEV_POPULATION_ID_ASC', + ChildrenStddevPopulationIdDesc = 'CHILDREN_STDDEV_POPULATION_ID_DESC', + ChildrenStddevPopulationParentIdAsc = 'CHILDREN_STDDEV_POPULATION_PARENT_ID_ASC', + ChildrenStddevPopulationParentIdDesc = 'CHILDREN_STDDEV_POPULATION_PARENT_ID_DESC', + ChildrenStddevPopulationUpdatedBlockIdAsc = 'CHILDREN_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ChildrenStddevPopulationUpdatedBlockIdDesc = 'CHILDREN_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ChildrenStddevSampleBlockRangeAsc = 'CHILDREN_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ChildrenStddevSampleBlockRangeDesc = 'CHILDREN_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ChildrenStddevSampleChildIdAsc = 'CHILDREN_STDDEV_SAMPLE_CHILD_ID_ASC', + ChildrenStddevSampleChildIdDesc = 'CHILDREN_STDDEV_SAMPLE_CHILD_ID_DESC', + ChildrenStddevSampleCreatedAtAsc = 'CHILDREN_STDDEV_SAMPLE_CREATED_AT_ASC', + ChildrenStddevSampleCreatedAtDesc = 'CHILDREN_STDDEV_SAMPLE_CREATED_AT_DESC', + ChildrenStddevSampleCreatedBlockIdAsc = 'CHILDREN_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ChildrenStddevSampleCreatedBlockIdDesc = 'CHILDREN_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ChildrenStddevSampleIdAsc = 'CHILDREN_STDDEV_SAMPLE_ID_ASC', + ChildrenStddevSampleIdDesc = 'CHILDREN_STDDEV_SAMPLE_ID_DESC', + ChildrenStddevSampleParentIdAsc = 'CHILDREN_STDDEV_SAMPLE_PARENT_ID_ASC', + ChildrenStddevSampleParentIdDesc = 'CHILDREN_STDDEV_SAMPLE_PARENT_ID_DESC', + ChildrenStddevSampleUpdatedBlockIdAsc = 'CHILDREN_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ChildrenStddevSampleUpdatedBlockIdDesc = 'CHILDREN_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ChildrenSumBlockRangeAsc = 'CHILDREN_SUM_BLOCK_RANGE_ASC', + ChildrenSumBlockRangeDesc = 'CHILDREN_SUM_BLOCK_RANGE_DESC', + ChildrenSumChildIdAsc = 'CHILDREN_SUM_CHILD_ID_ASC', + ChildrenSumChildIdDesc = 'CHILDREN_SUM_CHILD_ID_DESC', + ChildrenSumCreatedAtAsc = 'CHILDREN_SUM_CREATED_AT_ASC', + ChildrenSumCreatedAtDesc = 'CHILDREN_SUM_CREATED_AT_DESC', + ChildrenSumCreatedBlockIdAsc = 'CHILDREN_SUM_CREATED_BLOCK_ID_ASC', + ChildrenSumCreatedBlockIdDesc = 'CHILDREN_SUM_CREATED_BLOCK_ID_DESC', + ChildrenSumIdAsc = 'CHILDREN_SUM_ID_ASC', + ChildrenSumIdDesc = 'CHILDREN_SUM_ID_DESC', + ChildrenSumParentIdAsc = 'CHILDREN_SUM_PARENT_ID_ASC', + ChildrenSumParentIdDesc = 'CHILDREN_SUM_PARENT_ID_DESC', + ChildrenSumUpdatedBlockIdAsc = 'CHILDREN_SUM_UPDATED_BLOCK_ID_ASC', + ChildrenSumUpdatedBlockIdDesc = 'CHILDREN_SUM_UPDATED_BLOCK_ID_DESC', + ChildrenVariancePopulationBlockRangeAsc = 'CHILDREN_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ChildrenVariancePopulationBlockRangeDesc = 'CHILDREN_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ChildrenVariancePopulationChildIdAsc = 'CHILDREN_VARIANCE_POPULATION_CHILD_ID_ASC', + ChildrenVariancePopulationChildIdDesc = 'CHILDREN_VARIANCE_POPULATION_CHILD_ID_DESC', + ChildrenVariancePopulationCreatedAtAsc = 'CHILDREN_VARIANCE_POPULATION_CREATED_AT_ASC', + ChildrenVariancePopulationCreatedAtDesc = 'CHILDREN_VARIANCE_POPULATION_CREATED_AT_DESC', + ChildrenVariancePopulationCreatedBlockIdAsc = 'CHILDREN_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ChildrenVariancePopulationCreatedBlockIdDesc = 'CHILDREN_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ChildrenVariancePopulationIdAsc = 'CHILDREN_VARIANCE_POPULATION_ID_ASC', + ChildrenVariancePopulationIdDesc = 'CHILDREN_VARIANCE_POPULATION_ID_DESC', + ChildrenVariancePopulationParentIdAsc = 'CHILDREN_VARIANCE_POPULATION_PARENT_ID_ASC', + ChildrenVariancePopulationParentIdDesc = 'CHILDREN_VARIANCE_POPULATION_PARENT_ID_DESC', + ChildrenVariancePopulationUpdatedBlockIdAsc = 'CHILDREN_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ChildrenVariancePopulationUpdatedBlockIdDesc = 'CHILDREN_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ChildrenVarianceSampleBlockRangeAsc = 'CHILDREN_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ChildrenVarianceSampleBlockRangeDesc = 'CHILDREN_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ChildrenVarianceSampleChildIdAsc = 'CHILDREN_VARIANCE_SAMPLE_CHILD_ID_ASC', + ChildrenVarianceSampleChildIdDesc = 'CHILDREN_VARIANCE_SAMPLE_CHILD_ID_DESC', + ChildrenVarianceSampleCreatedAtAsc = 'CHILDREN_VARIANCE_SAMPLE_CREATED_AT_ASC', + ChildrenVarianceSampleCreatedAtDesc = 'CHILDREN_VARIANCE_SAMPLE_CREATED_AT_DESC', + ChildrenVarianceSampleCreatedBlockIdAsc = 'CHILDREN_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ChildrenVarianceSampleCreatedBlockIdDesc = 'CHILDREN_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ChildrenVarianceSampleIdAsc = 'CHILDREN_VARIANCE_SAMPLE_ID_ASC', + ChildrenVarianceSampleIdDesc = 'CHILDREN_VARIANCE_SAMPLE_ID_DESC', + ChildrenVarianceSampleParentIdAsc = 'CHILDREN_VARIANCE_SAMPLE_PARENT_ID_ASC', + ChildrenVarianceSampleParentIdDesc = 'CHILDREN_VARIANCE_SAMPLE_PARENT_ID_DESC', + ChildrenVarianceSampleUpdatedBlockIdAsc = 'CHILDREN_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ChildrenVarianceSampleUpdatedBlockIdDesc = 'CHILDREN_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimsByIssuerIdAverageBlockRangeAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_BLOCK_RANGE_ASC', + ClaimsByIssuerIdAverageBlockRangeDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_BLOCK_RANGE_DESC', + ClaimsByIssuerIdAverageCddIdAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_CDD_ID_ASC', + ClaimsByIssuerIdAverageCddIdDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_CDD_ID_DESC', + ClaimsByIssuerIdAverageCreatedAtAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_CREATED_AT_ASC', + ClaimsByIssuerIdAverageCreatedAtDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_CREATED_AT_DESC', + ClaimsByIssuerIdAverageCreatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ClaimsByIssuerIdAverageCreatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ClaimsByIssuerIdAverageCustomClaimTypeIdAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByIssuerIdAverageCustomClaimTypeIdDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByIssuerIdAverageEventIdxAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_EVENT_IDX_ASC', + ClaimsByIssuerIdAverageEventIdxDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_EVENT_IDX_DESC', + ClaimsByIssuerIdAverageExpiryAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_EXPIRY_ASC', + ClaimsByIssuerIdAverageExpiryDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_EXPIRY_DESC', + ClaimsByIssuerIdAverageFilterExpiryAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_FILTER_EXPIRY_ASC', + ClaimsByIssuerIdAverageFilterExpiryDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_FILTER_EXPIRY_DESC', + ClaimsByIssuerIdAverageIdAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_ID_ASC', + ClaimsByIssuerIdAverageIdDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_ID_DESC', + ClaimsByIssuerIdAverageIssuanceDateAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_ISSUANCE_DATE_ASC', + ClaimsByIssuerIdAverageIssuanceDateDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_ISSUANCE_DATE_DESC', + ClaimsByIssuerIdAverageIssuerIdAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_ISSUER_ID_ASC', + ClaimsByIssuerIdAverageIssuerIdDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_ISSUER_ID_DESC', + ClaimsByIssuerIdAverageJurisdictionAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_JURISDICTION_ASC', + ClaimsByIssuerIdAverageJurisdictionDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_JURISDICTION_DESC', + ClaimsByIssuerIdAverageLastUpdateDateAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_LAST_UPDATE_DATE_ASC', + ClaimsByIssuerIdAverageLastUpdateDateDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_LAST_UPDATE_DATE_DESC', + ClaimsByIssuerIdAverageRevokeDateAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_REVOKE_DATE_ASC', + ClaimsByIssuerIdAverageRevokeDateDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_REVOKE_DATE_DESC', + ClaimsByIssuerIdAverageScopeAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_SCOPE_ASC', + ClaimsByIssuerIdAverageScopeDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_SCOPE_DESC', + ClaimsByIssuerIdAverageTargetIdAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_TARGET_ID_ASC', + ClaimsByIssuerIdAverageTargetIdDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_TARGET_ID_DESC', + ClaimsByIssuerIdAverageTypeAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_TYPE_ASC', + ClaimsByIssuerIdAverageTypeDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_TYPE_DESC', + ClaimsByIssuerIdAverageUpdatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ClaimsByIssuerIdAverageUpdatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ClaimsByIssuerIdCountAsc = 'CLAIMS_BY_ISSUER_ID_COUNT_ASC', + ClaimsByIssuerIdCountDesc = 'CLAIMS_BY_ISSUER_ID_COUNT_DESC', + ClaimsByIssuerIdDistinctCountBlockRangeAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ClaimsByIssuerIdDistinctCountBlockRangeDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ClaimsByIssuerIdDistinctCountCddIdAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_CDD_ID_ASC', + ClaimsByIssuerIdDistinctCountCddIdDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_CDD_ID_DESC', + ClaimsByIssuerIdDistinctCountCreatedAtAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ClaimsByIssuerIdDistinctCountCreatedAtDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ClaimsByIssuerIdDistinctCountCreatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ClaimsByIssuerIdDistinctCountCreatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ClaimsByIssuerIdDistinctCountCustomClaimTypeIdAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByIssuerIdDistinctCountCustomClaimTypeIdDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByIssuerIdDistinctCountEventIdxAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ClaimsByIssuerIdDistinctCountEventIdxDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ClaimsByIssuerIdDistinctCountExpiryAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_EXPIRY_ASC', + ClaimsByIssuerIdDistinctCountExpiryDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_EXPIRY_DESC', + ClaimsByIssuerIdDistinctCountFilterExpiryAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_FILTER_EXPIRY_ASC', + ClaimsByIssuerIdDistinctCountFilterExpiryDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_FILTER_EXPIRY_DESC', + ClaimsByIssuerIdDistinctCountIdAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_ID_ASC', + ClaimsByIssuerIdDistinctCountIdDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_ID_DESC', + ClaimsByIssuerIdDistinctCountIssuanceDateAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_ISSUANCE_DATE_ASC', + ClaimsByIssuerIdDistinctCountIssuanceDateDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_ISSUANCE_DATE_DESC', + ClaimsByIssuerIdDistinctCountIssuerIdAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_ISSUER_ID_ASC', + ClaimsByIssuerIdDistinctCountIssuerIdDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_ISSUER_ID_DESC', + ClaimsByIssuerIdDistinctCountJurisdictionAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_JURISDICTION_ASC', + ClaimsByIssuerIdDistinctCountJurisdictionDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_JURISDICTION_DESC', + ClaimsByIssuerIdDistinctCountLastUpdateDateAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_LAST_UPDATE_DATE_ASC', + ClaimsByIssuerIdDistinctCountLastUpdateDateDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_LAST_UPDATE_DATE_DESC', + ClaimsByIssuerIdDistinctCountRevokeDateAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_REVOKE_DATE_ASC', + ClaimsByIssuerIdDistinctCountRevokeDateDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_REVOKE_DATE_DESC', + ClaimsByIssuerIdDistinctCountScopeAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_SCOPE_ASC', + ClaimsByIssuerIdDistinctCountScopeDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_SCOPE_DESC', + ClaimsByIssuerIdDistinctCountTargetIdAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_TARGET_ID_ASC', + ClaimsByIssuerIdDistinctCountTargetIdDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_TARGET_ID_DESC', + ClaimsByIssuerIdDistinctCountTypeAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_TYPE_ASC', + ClaimsByIssuerIdDistinctCountTypeDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_TYPE_DESC', + ClaimsByIssuerIdDistinctCountUpdatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ClaimsByIssuerIdDistinctCountUpdatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ClaimsByIssuerIdMaxBlockRangeAsc = 'CLAIMS_BY_ISSUER_ID_MAX_BLOCK_RANGE_ASC', + ClaimsByIssuerIdMaxBlockRangeDesc = 'CLAIMS_BY_ISSUER_ID_MAX_BLOCK_RANGE_DESC', + ClaimsByIssuerIdMaxCddIdAsc = 'CLAIMS_BY_ISSUER_ID_MAX_CDD_ID_ASC', + ClaimsByIssuerIdMaxCddIdDesc = 'CLAIMS_BY_ISSUER_ID_MAX_CDD_ID_DESC', + ClaimsByIssuerIdMaxCreatedAtAsc = 'CLAIMS_BY_ISSUER_ID_MAX_CREATED_AT_ASC', + ClaimsByIssuerIdMaxCreatedAtDesc = 'CLAIMS_BY_ISSUER_ID_MAX_CREATED_AT_DESC', + ClaimsByIssuerIdMaxCreatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_MAX_CREATED_BLOCK_ID_ASC', + ClaimsByIssuerIdMaxCreatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_MAX_CREATED_BLOCK_ID_DESC', + ClaimsByIssuerIdMaxCustomClaimTypeIdAsc = 'CLAIMS_BY_ISSUER_ID_MAX_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByIssuerIdMaxCustomClaimTypeIdDesc = 'CLAIMS_BY_ISSUER_ID_MAX_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByIssuerIdMaxEventIdxAsc = 'CLAIMS_BY_ISSUER_ID_MAX_EVENT_IDX_ASC', + ClaimsByIssuerIdMaxEventIdxDesc = 'CLAIMS_BY_ISSUER_ID_MAX_EVENT_IDX_DESC', + ClaimsByIssuerIdMaxExpiryAsc = 'CLAIMS_BY_ISSUER_ID_MAX_EXPIRY_ASC', + ClaimsByIssuerIdMaxExpiryDesc = 'CLAIMS_BY_ISSUER_ID_MAX_EXPIRY_DESC', + ClaimsByIssuerIdMaxFilterExpiryAsc = 'CLAIMS_BY_ISSUER_ID_MAX_FILTER_EXPIRY_ASC', + ClaimsByIssuerIdMaxFilterExpiryDesc = 'CLAIMS_BY_ISSUER_ID_MAX_FILTER_EXPIRY_DESC', + ClaimsByIssuerIdMaxIdAsc = 'CLAIMS_BY_ISSUER_ID_MAX_ID_ASC', + ClaimsByIssuerIdMaxIdDesc = 'CLAIMS_BY_ISSUER_ID_MAX_ID_DESC', + ClaimsByIssuerIdMaxIssuanceDateAsc = 'CLAIMS_BY_ISSUER_ID_MAX_ISSUANCE_DATE_ASC', + ClaimsByIssuerIdMaxIssuanceDateDesc = 'CLAIMS_BY_ISSUER_ID_MAX_ISSUANCE_DATE_DESC', + ClaimsByIssuerIdMaxIssuerIdAsc = 'CLAIMS_BY_ISSUER_ID_MAX_ISSUER_ID_ASC', + ClaimsByIssuerIdMaxIssuerIdDesc = 'CLAIMS_BY_ISSUER_ID_MAX_ISSUER_ID_DESC', + ClaimsByIssuerIdMaxJurisdictionAsc = 'CLAIMS_BY_ISSUER_ID_MAX_JURISDICTION_ASC', + ClaimsByIssuerIdMaxJurisdictionDesc = 'CLAIMS_BY_ISSUER_ID_MAX_JURISDICTION_DESC', + ClaimsByIssuerIdMaxLastUpdateDateAsc = 'CLAIMS_BY_ISSUER_ID_MAX_LAST_UPDATE_DATE_ASC', + ClaimsByIssuerIdMaxLastUpdateDateDesc = 'CLAIMS_BY_ISSUER_ID_MAX_LAST_UPDATE_DATE_DESC', + ClaimsByIssuerIdMaxRevokeDateAsc = 'CLAIMS_BY_ISSUER_ID_MAX_REVOKE_DATE_ASC', + ClaimsByIssuerIdMaxRevokeDateDesc = 'CLAIMS_BY_ISSUER_ID_MAX_REVOKE_DATE_DESC', + ClaimsByIssuerIdMaxScopeAsc = 'CLAIMS_BY_ISSUER_ID_MAX_SCOPE_ASC', + ClaimsByIssuerIdMaxScopeDesc = 'CLAIMS_BY_ISSUER_ID_MAX_SCOPE_DESC', + ClaimsByIssuerIdMaxTargetIdAsc = 'CLAIMS_BY_ISSUER_ID_MAX_TARGET_ID_ASC', + ClaimsByIssuerIdMaxTargetIdDesc = 'CLAIMS_BY_ISSUER_ID_MAX_TARGET_ID_DESC', + ClaimsByIssuerIdMaxTypeAsc = 'CLAIMS_BY_ISSUER_ID_MAX_TYPE_ASC', + ClaimsByIssuerIdMaxTypeDesc = 'CLAIMS_BY_ISSUER_ID_MAX_TYPE_DESC', + ClaimsByIssuerIdMaxUpdatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_MAX_UPDATED_BLOCK_ID_ASC', + ClaimsByIssuerIdMaxUpdatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_MAX_UPDATED_BLOCK_ID_DESC', + ClaimsByIssuerIdMinBlockRangeAsc = 'CLAIMS_BY_ISSUER_ID_MIN_BLOCK_RANGE_ASC', + ClaimsByIssuerIdMinBlockRangeDesc = 'CLAIMS_BY_ISSUER_ID_MIN_BLOCK_RANGE_DESC', + ClaimsByIssuerIdMinCddIdAsc = 'CLAIMS_BY_ISSUER_ID_MIN_CDD_ID_ASC', + ClaimsByIssuerIdMinCddIdDesc = 'CLAIMS_BY_ISSUER_ID_MIN_CDD_ID_DESC', + ClaimsByIssuerIdMinCreatedAtAsc = 'CLAIMS_BY_ISSUER_ID_MIN_CREATED_AT_ASC', + ClaimsByIssuerIdMinCreatedAtDesc = 'CLAIMS_BY_ISSUER_ID_MIN_CREATED_AT_DESC', + ClaimsByIssuerIdMinCreatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_MIN_CREATED_BLOCK_ID_ASC', + ClaimsByIssuerIdMinCreatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_MIN_CREATED_BLOCK_ID_DESC', + ClaimsByIssuerIdMinCustomClaimTypeIdAsc = 'CLAIMS_BY_ISSUER_ID_MIN_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByIssuerIdMinCustomClaimTypeIdDesc = 'CLAIMS_BY_ISSUER_ID_MIN_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByIssuerIdMinEventIdxAsc = 'CLAIMS_BY_ISSUER_ID_MIN_EVENT_IDX_ASC', + ClaimsByIssuerIdMinEventIdxDesc = 'CLAIMS_BY_ISSUER_ID_MIN_EVENT_IDX_DESC', + ClaimsByIssuerIdMinExpiryAsc = 'CLAIMS_BY_ISSUER_ID_MIN_EXPIRY_ASC', + ClaimsByIssuerIdMinExpiryDesc = 'CLAIMS_BY_ISSUER_ID_MIN_EXPIRY_DESC', + ClaimsByIssuerIdMinFilterExpiryAsc = 'CLAIMS_BY_ISSUER_ID_MIN_FILTER_EXPIRY_ASC', + ClaimsByIssuerIdMinFilterExpiryDesc = 'CLAIMS_BY_ISSUER_ID_MIN_FILTER_EXPIRY_DESC', + ClaimsByIssuerIdMinIdAsc = 'CLAIMS_BY_ISSUER_ID_MIN_ID_ASC', + ClaimsByIssuerIdMinIdDesc = 'CLAIMS_BY_ISSUER_ID_MIN_ID_DESC', + ClaimsByIssuerIdMinIssuanceDateAsc = 'CLAIMS_BY_ISSUER_ID_MIN_ISSUANCE_DATE_ASC', + ClaimsByIssuerIdMinIssuanceDateDesc = 'CLAIMS_BY_ISSUER_ID_MIN_ISSUANCE_DATE_DESC', + ClaimsByIssuerIdMinIssuerIdAsc = 'CLAIMS_BY_ISSUER_ID_MIN_ISSUER_ID_ASC', + ClaimsByIssuerIdMinIssuerIdDesc = 'CLAIMS_BY_ISSUER_ID_MIN_ISSUER_ID_DESC', + ClaimsByIssuerIdMinJurisdictionAsc = 'CLAIMS_BY_ISSUER_ID_MIN_JURISDICTION_ASC', + ClaimsByIssuerIdMinJurisdictionDesc = 'CLAIMS_BY_ISSUER_ID_MIN_JURISDICTION_DESC', + ClaimsByIssuerIdMinLastUpdateDateAsc = 'CLAIMS_BY_ISSUER_ID_MIN_LAST_UPDATE_DATE_ASC', + ClaimsByIssuerIdMinLastUpdateDateDesc = 'CLAIMS_BY_ISSUER_ID_MIN_LAST_UPDATE_DATE_DESC', + ClaimsByIssuerIdMinRevokeDateAsc = 'CLAIMS_BY_ISSUER_ID_MIN_REVOKE_DATE_ASC', + ClaimsByIssuerIdMinRevokeDateDesc = 'CLAIMS_BY_ISSUER_ID_MIN_REVOKE_DATE_DESC', + ClaimsByIssuerIdMinScopeAsc = 'CLAIMS_BY_ISSUER_ID_MIN_SCOPE_ASC', + ClaimsByIssuerIdMinScopeDesc = 'CLAIMS_BY_ISSUER_ID_MIN_SCOPE_DESC', + ClaimsByIssuerIdMinTargetIdAsc = 'CLAIMS_BY_ISSUER_ID_MIN_TARGET_ID_ASC', + ClaimsByIssuerIdMinTargetIdDesc = 'CLAIMS_BY_ISSUER_ID_MIN_TARGET_ID_DESC', + ClaimsByIssuerIdMinTypeAsc = 'CLAIMS_BY_ISSUER_ID_MIN_TYPE_ASC', + ClaimsByIssuerIdMinTypeDesc = 'CLAIMS_BY_ISSUER_ID_MIN_TYPE_DESC', + ClaimsByIssuerIdMinUpdatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_MIN_UPDATED_BLOCK_ID_ASC', + ClaimsByIssuerIdMinUpdatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_MIN_UPDATED_BLOCK_ID_DESC', + ClaimsByIssuerIdStddevPopulationBlockRangeAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ClaimsByIssuerIdStddevPopulationBlockRangeDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ClaimsByIssuerIdStddevPopulationCddIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_CDD_ID_ASC', + ClaimsByIssuerIdStddevPopulationCddIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_CDD_ID_DESC', + ClaimsByIssuerIdStddevPopulationCreatedAtAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ClaimsByIssuerIdStddevPopulationCreatedAtDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ClaimsByIssuerIdStddevPopulationCreatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimsByIssuerIdStddevPopulationCreatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimsByIssuerIdStddevPopulationCustomClaimTypeIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByIssuerIdStddevPopulationCustomClaimTypeIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByIssuerIdStddevPopulationEventIdxAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ClaimsByIssuerIdStddevPopulationEventIdxDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ClaimsByIssuerIdStddevPopulationExpiryAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_EXPIRY_ASC', + ClaimsByIssuerIdStddevPopulationExpiryDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_EXPIRY_DESC', + ClaimsByIssuerIdStddevPopulationFilterExpiryAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_FILTER_EXPIRY_ASC', + ClaimsByIssuerIdStddevPopulationFilterExpiryDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_FILTER_EXPIRY_DESC', + ClaimsByIssuerIdStddevPopulationIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_ID_ASC', + ClaimsByIssuerIdStddevPopulationIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_ID_DESC', + ClaimsByIssuerIdStddevPopulationIssuanceDateAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_ISSUANCE_DATE_ASC', + ClaimsByIssuerIdStddevPopulationIssuanceDateDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_ISSUANCE_DATE_DESC', + ClaimsByIssuerIdStddevPopulationIssuerIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_ISSUER_ID_ASC', + ClaimsByIssuerIdStddevPopulationIssuerIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_ISSUER_ID_DESC', + ClaimsByIssuerIdStddevPopulationJurisdictionAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_JURISDICTION_ASC', + ClaimsByIssuerIdStddevPopulationJurisdictionDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_JURISDICTION_DESC', + ClaimsByIssuerIdStddevPopulationLastUpdateDateAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_LAST_UPDATE_DATE_ASC', + ClaimsByIssuerIdStddevPopulationLastUpdateDateDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_LAST_UPDATE_DATE_DESC', + ClaimsByIssuerIdStddevPopulationRevokeDateAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_REVOKE_DATE_ASC', + ClaimsByIssuerIdStddevPopulationRevokeDateDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_REVOKE_DATE_DESC', + ClaimsByIssuerIdStddevPopulationScopeAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_SCOPE_ASC', + ClaimsByIssuerIdStddevPopulationScopeDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_SCOPE_DESC', + ClaimsByIssuerIdStddevPopulationTargetIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_TARGET_ID_ASC', + ClaimsByIssuerIdStddevPopulationTargetIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_TARGET_ID_DESC', + ClaimsByIssuerIdStddevPopulationTypeAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_TYPE_ASC', + ClaimsByIssuerIdStddevPopulationTypeDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_TYPE_DESC', + ClaimsByIssuerIdStddevPopulationUpdatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimsByIssuerIdStddevPopulationUpdatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimsByIssuerIdStddevSampleBlockRangeAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ClaimsByIssuerIdStddevSampleBlockRangeDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ClaimsByIssuerIdStddevSampleCddIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_CDD_ID_ASC', + ClaimsByIssuerIdStddevSampleCddIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_CDD_ID_DESC', + ClaimsByIssuerIdStddevSampleCreatedAtAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ClaimsByIssuerIdStddevSampleCreatedAtDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ClaimsByIssuerIdStddevSampleCreatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimsByIssuerIdStddevSampleCreatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimsByIssuerIdStddevSampleCustomClaimTypeIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByIssuerIdStddevSampleCustomClaimTypeIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByIssuerIdStddevSampleEventIdxAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ClaimsByIssuerIdStddevSampleEventIdxDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ClaimsByIssuerIdStddevSampleExpiryAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_EXPIRY_ASC', + ClaimsByIssuerIdStddevSampleExpiryDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_EXPIRY_DESC', + ClaimsByIssuerIdStddevSampleFilterExpiryAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_FILTER_EXPIRY_ASC', + ClaimsByIssuerIdStddevSampleFilterExpiryDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_FILTER_EXPIRY_DESC', + ClaimsByIssuerIdStddevSampleIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_ID_ASC', + ClaimsByIssuerIdStddevSampleIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_ID_DESC', + ClaimsByIssuerIdStddevSampleIssuanceDateAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_ISSUANCE_DATE_ASC', + ClaimsByIssuerIdStddevSampleIssuanceDateDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_ISSUANCE_DATE_DESC', + ClaimsByIssuerIdStddevSampleIssuerIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_ISSUER_ID_ASC', + ClaimsByIssuerIdStddevSampleIssuerIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_ISSUER_ID_DESC', + ClaimsByIssuerIdStddevSampleJurisdictionAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_JURISDICTION_ASC', + ClaimsByIssuerIdStddevSampleJurisdictionDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_JURISDICTION_DESC', + ClaimsByIssuerIdStddevSampleLastUpdateDateAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_LAST_UPDATE_DATE_ASC', + ClaimsByIssuerIdStddevSampleLastUpdateDateDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_LAST_UPDATE_DATE_DESC', + ClaimsByIssuerIdStddevSampleRevokeDateAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_REVOKE_DATE_ASC', + ClaimsByIssuerIdStddevSampleRevokeDateDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_REVOKE_DATE_DESC', + ClaimsByIssuerIdStddevSampleScopeAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_SCOPE_ASC', + ClaimsByIssuerIdStddevSampleScopeDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_SCOPE_DESC', + ClaimsByIssuerIdStddevSampleTargetIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_TARGET_ID_ASC', + ClaimsByIssuerIdStddevSampleTargetIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_TARGET_ID_DESC', + ClaimsByIssuerIdStddevSampleTypeAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_TYPE_ASC', + ClaimsByIssuerIdStddevSampleTypeDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_TYPE_DESC', + ClaimsByIssuerIdStddevSampleUpdatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimsByIssuerIdStddevSampleUpdatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimsByIssuerIdSumBlockRangeAsc = 'CLAIMS_BY_ISSUER_ID_SUM_BLOCK_RANGE_ASC', + ClaimsByIssuerIdSumBlockRangeDesc = 'CLAIMS_BY_ISSUER_ID_SUM_BLOCK_RANGE_DESC', + ClaimsByIssuerIdSumCddIdAsc = 'CLAIMS_BY_ISSUER_ID_SUM_CDD_ID_ASC', + ClaimsByIssuerIdSumCddIdDesc = 'CLAIMS_BY_ISSUER_ID_SUM_CDD_ID_DESC', + ClaimsByIssuerIdSumCreatedAtAsc = 'CLAIMS_BY_ISSUER_ID_SUM_CREATED_AT_ASC', + ClaimsByIssuerIdSumCreatedAtDesc = 'CLAIMS_BY_ISSUER_ID_SUM_CREATED_AT_DESC', + ClaimsByIssuerIdSumCreatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_SUM_CREATED_BLOCK_ID_ASC', + ClaimsByIssuerIdSumCreatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_SUM_CREATED_BLOCK_ID_DESC', + ClaimsByIssuerIdSumCustomClaimTypeIdAsc = 'CLAIMS_BY_ISSUER_ID_SUM_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByIssuerIdSumCustomClaimTypeIdDesc = 'CLAIMS_BY_ISSUER_ID_SUM_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByIssuerIdSumEventIdxAsc = 'CLAIMS_BY_ISSUER_ID_SUM_EVENT_IDX_ASC', + ClaimsByIssuerIdSumEventIdxDesc = 'CLAIMS_BY_ISSUER_ID_SUM_EVENT_IDX_DESC', + ClaimsByIssuerIdSumExpiryAsc = 'CLAIMS_BY_ISSUER_ID_SUM_EXPIRY_ASC', + ClaimsByIssuerIdSumExpiryDesc = 'CLAIMS_BY_ISSUER_ID_SUM_EXPIRY_DESC', + ClaimsByIssuerIdSumFilterExpiryAsc = 'CLAIMS_BY_ISSUER_ID_SUM_FILTER_EXPIRY_ASC', + ClaimsByIssuerIdSumFilterExpiryDesc = 'CLAIMS_BY_ISSUER_ID_SUM_FILTER_EXPIRY_DESC', + ClaimsByIssuerIdSumIdAsc = 'CLAIMS_BY_ISSUER_ID_SUM_ID_ASC', + ClaimsByIssuerIdSumIdDesc = 'CLAIMS_BY_ISSUER_ID_SUM_ID_DESC', + ClaimsByIssuerIdSumIssuanceDateAsc = 'CLAIMS_BY_ISSUER_ID_SUM_ISSUANCE_DATE_ASC', + ClaimsByIssuerIdSumIssuanceDateDesc = 'CLAIMS_BY_ISSUER_ID_SUM_ISSUANCE_DATE_DESC', + ClaimsByIssuerIdSumIssuerIdAsc = 'CLAIMS_BY_ISSUER_ID_SUM_ISSUER_ID_ASC', + ClaimsByIssuerIdSumIssuerIdDesc = 'CLAIMS_BY_ISSUER_ID_SUM_ISSUER_ID_DESC', + ClaimsByIssuerIdSumJurisdictionAsc = 'CLAIMS_BY_ISSUER_ID_SUM_JURISDICTION_ASC', + ClaimsByIssuerIdSumJurisdictionDesc = 'CLAIMS_BY_ISSUER_ID_SUM_JURISDICTION_DESC', + ClaimsByIssuerIdSumLastUpdateDateAsc = 'CLAIMS_BY_ISSUER_ID_SUM_LAST_UPDATE_DATE_ASC', + ClaimsByIssuerIdSumLastUpdateDateDesc = 'CLAIMS_BY_ISSUER_ID_SUM_LAST_UPDATE_DATE_DESC', + ClaimsByIssuerIdSumRevokeDateAsc = 'CLAIMS_BY_ISSUER_ID_SUM_REVOKE_DATE_ASC', + ClaimsByIssuerIdSumRevokeDateDesc = 'CLAIMS_BY_ISSUER_ID_SUM_REVOKE_DATE_DESC', + ClaimsByIssuerIdSumScopeAsc = 'CLAIMS_BY_ISSUER_ID_SUM_SCOPE_ASC', + ClaimsByIssuerIdSumScopeDesc = 'CLAIMS_BY_ISSUER_ID_SUM_SCOPE_DESC', + ClaimsByIssuerIdSumTargetIdAsc = 'CLAIMS_BY_ISSUER_ID_SUM_TARGET_ID_ASC', + ClaimsByIssuerIdSumTargetIdDesc = 'CLAIMS_BY_ISSUER_ID_SUM_TARGET_ID_DESC', + ClaimsByIssuerIdSumTypeAsc = 'CLAIMS_BY_ISSUER_ID_SUM_TYPE_ASC', + ClaimsByIssuerIdSumTypeDesc = 'CLAIMS_BY_ISSUER_ID_SUM_TYPE_DESC', + ClaimsByIssuerIdSumUpdatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_SUM_UPDATED_BLOCK_ID_ASC', + ClaimsByIssuerIdSumUpdatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_SUM_UPDATED_BLOCK_ID_DESC', + ClaimsByIssuerIdVariancePopulationBlockRangeAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ClaimsByIssuerIdVariancePopulationBlockRangeDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ClaimsByIssuerIdVariancePopulationCddIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_CDD_ID_ASC', + ClaimsByIssuerIdVariancePopulationCddIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_CDD_ID_DESC', + ClaimsByIssuerIdVariancePopulationCreatedAtAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ClaimsByIssuerIdVariancePopulationCreatedAtDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ClaimsByIssuerIdVariancePopulationCreatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimsByIssuerIdVariancePopulationCreatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimsByIssuerIdVariancePopulationCustomClaimTypeIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByIssuerIdVariancePopulationCustomClaimTypeIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByIssuerIdVariancePopulationEventIdxAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ClaimsByIssuerIdVariancePopulationEventIdxDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ClaimsByIssuerIdVariancePopulationExpiryAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_EXPIRY_ASC', + ClaimsByIssuerIdVariancePopulationExpiryDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_EXPIRY_DESC', + ClaimsByIssuerIdVariancePopulationFilterExpiryAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_FILTER_EXPIRY_ASC', + ClaimsByIssuerIdVariancePopulationFilterExpiryDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_FILTER_EXPIRY_DESC', + ClaimsByIssuerIdVariancePopulationIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_ID_ASC', + ClaimsByIssuerIdVariancePopulationIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_ID_DESC', + ClaimsByIssuerIdVariancePopulationIssuanceDateAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_ISSUANCE_DATE_ASC', + ClaimsByIssuerIdVariancePopulationIssuanceDateDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_ISSUANCE_DATE_DESC', + ClaimsByIssuerIdVariancePopulationIssuerIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_ISSUER_ID_ASC', + ClaimsByIssuerIdVariancePopulationIssuerIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_ISSUER_ID_DESC', + ClaimsByIssuerIdVariancePopulationJurisdictionAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_JURISDICTION_ASC', + ClaimsByIssuerIdVariancePopulationJurisdictionDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_JURISDICTION_DESC', + ClaimsByIssuerIdVariancePopulationLastUpdateDateAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_LAST_UPDATE_DATE_ASC', + ClaimsByIssuerIdVariancePopulationLastUpdateDateDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_LAST_UPDATE_DATE_DESC', + ClaimsByIssuerIdVariancePopulationRevokeDateAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_REVOKE_DATE_ASC', + ClaimsByIssuerIdVariancePopulationRevokeDateDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_REVOKE_DATE_DESC', + ClaimsByIssuerIdVariancePopulationScopeAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_SCOPE_ASC', + ClaimsByIssuerIdVariancePopulationScopeDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_SCOPE_DESC', + ClaimsByIssuerIdVariancePopulationTargetIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_TARGET_ID_ASC', + ClaimsByIssuerIdVariancePopulationTargetIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_TARGET_ID_DESC', + ClaimsByIssuerIdVariancePopulationTypeAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_TYPE_ASC', + ClaimsByIssuerIdVariancePopulationTypeDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_TYPE_DESC', + ClaimsByIssuerIdVariancePopulationUpdatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimsByIssuerIdVariancePopulationUpdatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimsByIssuerIdVarianceSampleBlockRangeAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ClaimsByIssuerIdVarianceSampleBlockRangeDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ClaimsByIssuerIdVarianceSampleCddIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_CDD_ID_ASC', + ClaimsByIssuerIdVarianceSampleCddIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_CDD_ID_DESC', + ClaimsByIssuerIdVarianceSampleCreatedAtAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ClaimsByIssuerIdVarianceSampleCreatedAtDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ClaimsByIssuerIdVarianceSampleCreatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimsByIssuerIdVarianceSampleCreatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimsByIssuerIdVarianceSampleCustomClaimTypeIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByIssuerIdVarianceSampleCustomClaimTypeIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByIssuerIdVarianceSampleEventIdxAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ClaimsByIssuerIdVarianceSampleEventIdxDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ClaimsByIssuerIdVarianceSampleExpiryAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_EXPIRY_ASC', + ClaimsByIssuerIdVarianceSampleExpiryDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_EXPIRY_DESC', + ClaimsByIssuerIdVarianceSampleFilterExpiryAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_FILTER_EXPIRY_ASC', + ClaimsByIssuerIdVarianceSampleFilterExpiryDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_FILTER_EXPIRY_DESC', + ClaimsByIssuerIdVarianceSampleIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_ID_ASC', + ClaimsByIssuerIdVarianceSampleIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_ID_DESC', + ClaimsByIssuerIdVarianceSampleIssuanceDateAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_ISSUANCE_DATE_ASC', + ClaimsByIssuerIdVarianceSampleIssuanceDateDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_ISSUANCE_DATE_DESC', + ClaimsByIssuerIdVarianceSampleIssuerIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_ISSUER_ID_ASC', + ClaimsByIssuerIdVarianceSampleIssuerIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_ISSUER_ID_DESC', + ClaimsByIssuerIdVarianceSampleJurisdictionAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_JURISDICTION_ASC', + ClaimsByIssuerIdVarianceSampleJurisdictionDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_JURISDICTION_DESC', + ClaimsByIssuerIdVarianceSampleLastUpdateDateAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_LAST_UPDATE_DATE_ASC', + ClaimsByIssuerIdVarianceSampleLastUpdateDateDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_LAST_UPDATE_DATE_DESC', + ClaimsByIssuerIdVarianceSampleRevokeDateAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_REVOKE_DATE_ASC', + ClaimsByIssuerIdVarianceSampleRevokeDateDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_REVOKE_DATE_DESC', + ClaimsByIssuerIdVarianceSampleScopeAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_SCOPE_ASC', + ClaimsByIssuerIdVarianceSampleScopeDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_SCOPE_DESC', + ClaimsByIssuerIdVarianceSampleTargetIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_TARGET_ID_ASC', + ClaimsByIssuerIdVarianceSampleTargetIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_TARGET_ID_DESC', + ClaimsByIssuerIdVarianceSampleTypeAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_TYPE_ASC', + ClaimsByIssuerIdVarianceSampleTypeDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_TYPE_DESC', + ClaimsByIssuerIdVarianceSampleUpdatedBlockIdAsc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimsByIssuerIdVarianceSampleUpdatedBlockIdDesc = 'CLAIMS_BY_ISSUER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimsByTargetIdAverageBlockRangeAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_BLOCK_RANGE_ASC', + ClaimsByTargetIdAverageBlockRangeDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_BLOCK_RANGE_DESC', + ClaimsByTargetIdAverageCddIdAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_CDD_ID_ASC', + ClaimsByTargetIdAverageCddIdDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_CDD_ID_DESC', + ClaimsByTargetIdAverageCreatedAtAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_CREATED_AT_ASC', + ClaimsByTargetIdAverageCreatedAtDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_CREATED_AT_DESC', + ClaimsByTargetIdAverageCreatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ClaimsByTargetIdAverageCreatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ClaimsByTargetIdAverageCustomClaimTypeIdAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByTargetIdAverageCustomClaimTypeIdDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByTargetIdAverageEventIdxAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_EVENT_IDX_ASC', + ClaimsByTargetIdAverageEventIdxDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_EVENT_IDX_DESC', + ClaimsByTargetIdAverageExpiryAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_EXPIRY_ASC', + ClaimsByTargetIdAverageExpiryDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_EXPIRY_DESC', + ClaimsByTargetIdAverageFilterExpiryAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_FILTER_EXPIRY_ASC', + ClaimsByTargetIdAverageFilterExpiryDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_FILTER_EXPIRY_DESC', + ClaimsByTargetIdAverageIdAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_ID_ASC', + ClaimsByTargetIdAverageIdDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_ID_DESC', + ClaimsByTargetIdAverageIssuanceDateAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_ISSUANCE_DATE_ASC', + ClaimsByTargetIdAverageIssuanceDateDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_ISSUANCE_DATE_DESC', + ClaimsByTargetIdAverageIssuerIdAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_ISSUER_ID_ASC', + ClaimsByTargetIdAverageIssuerIdDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_ISSUER_ID_DESC', + ClaimsByTargetIdAverageJurisdictionAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_JURISDICTION_ASC', + ClaimsByTargetIdAverageJurisdictionDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_JURISDICTION_DESC', + ClaimsByTargetIdAverageLastUpdateDateAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_LAST_UPDATE_DATE_ASC', + ClaimsByTargetIdAverageLastUpdateDateDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_LAST_UPDATE_DATE_DESC', + ClaimsByTargetIdAverageRevokeDateAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_REVOKE_DATE_ASC', + ClaimsByTargetIdAverageRevokeDateDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_REVOKE_DATE_DESC', + ClaimsByTargetIdAverageScopeAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_SCOPE_ASC', + ClaimsByTargetIdAverageScopeDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_SCOPE_DESC', + ClaimsByTargetIdAverageTargetIdAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_TARGET_ID_ASC', + ClaimsByTargetIdAverageTargetIdDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_TARGET_ID_DESC', + ClaimsByTargetIdAverageTypeAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_TYPE_ASC', + ClaimsByTargetIdAverageTypeDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_TYPE_DESC', + ClaimsByTargetIdAverageUpdatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ClaimsByTargetIdAverageUpdatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ClaimsByTargetIdCountAsc = 'CLAIMS_BY_TARGET_ID_COUNT_ASC', + ClaimsByTargetIdCountDesc = 'CLAIMS_BY_TARGET_ID_COUNT_DESC', + ClaimsByTargetIdDistinctCountBlockRangeAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ClaimsByTargetIdDistinctCountBlockRangeDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ClaimsByTargetIdDistinctCountCddIdAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_CDD_ID_ASC', + ClaimsByTargetIdDistinctCountCddIdDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_CDD_ID_DESC', + ClaimsByTargetIdDistinctCountCreatedAtAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ClaimsByTargetIdDistinctCountCreatedAtDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ClaimsByTargetIdDistinctCountCreatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ClaimsByTargetIdDistinctCountCreatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ClaimsByTargetIdDistinctCountCustomClaimTypeIdAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByTargetIdDistinctCountCustomClaimTypeIdDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByTargetIdDistinctCountEventIdxAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ClaimsByTargetIdDistinctCountEventIdxDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ClaimsByTargetIdDistinctCountExpiryAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_EXPIRY_ASC', + ClaimsByTargetIdDistinctCountExpiryDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_EXPIRY_DESC', + ClaimsByTargetIdDistinctCountFilterExpiryAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_FILTER_EXPIRY_ASC', + ClaimsByTargetIdDistinctCountFilterExpiryDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_FILTER_EXPIRY_DESC', + ClaimsByTargetIdDistinctCountIdAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_ID_ASC', + ClaimsByTargetIdDistinctCountIdDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_ID_DESC', + ClaimsByTargetIdDistinctCountIssuanceDateAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_ISSUANCE_DATE_ASC', + ClaimsByTargetIdDistinctCountIssuanceDateDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_ISSUANCE_DATE_DESC', + ClaimsByTargetIdDistinctCountIssuerIdAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_ISSUER_ID_ASC', + ClaimsByTargetIdDistinctCountIssuerIdDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_ISSUER_ID_DESC', + ClaimsByTargetIdDistinctCountJurisdictionAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_JURISDICTION_ASC', + ClaimsByTargetIdDistinctCountJurisdictionDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_JURISDICTION_DESC', + ClaimsByTargetIdDistinctCountLastUpdateDateAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_LAST_UPDATE_DATE_ASC', + ClaimsByTargetIdDistinctCountLastUpdateDateDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_LAST_UPDATE_DATE_DESC', + ClaimsByTargetIdDistinctCountRevokeDateAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_REVOKE_DATE_ASC', + ClaimsByTargetIdDistinctCountRevokeDateDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_REVOKE_DATE_DESC', + ClaimsByTargetIdDistinctCountScopeAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_SCOPE_ASC', + ClaimsByTargetIdDistinctCountScopeDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_SCOPE_DESC', + ClaimsByTargetIdDistinctCountTargetIdAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_TARGET_ID_ASC', + ClaimsByTargetIdDistinctCountTargetIdDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_TARGET_ID_DESC', + ClaimsByTargetIdDistinctCountTypeAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_TYPE_ASC', + ClaimsByTargetIdDistinctCountTypeDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_TYPE_DESC', + ClaimsByTargetIdDistinctCountUpdatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ClaimsByTargetIdDistinctCountUpdatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ClaimsByTargetIdMaxBlockRangeAsc = 'CLAIMS_BY_TARGET_ID_MAX_BLOCK_RANGE_ASC', + ClaimsByTargetIdMaxBlockRangeDesc = 'CLAIMS_BY_TARGET_ID_MAX_BLOCK_RANGE_DESC', + ClaimsByTargetIdMaxCddIdAsc = 'CLAIMS_BY_TARGET_ID_MAX_CDD_ID_ASC', + ClaimsByTargetIdMaxCddIdDesc = 'CLAIMS_BY_TARGET_ID_MAX_CDD_ID_DESC', + ClaimsByTargetIdMaxCreatedAtAsc = 'CLAIMS_BY_TARGET_ID_MAX_CREATED_AT_ASC', + ClaimsByTargetIdMaxCreatedAtDesc = 'CLAIMS_BY_TARGET_ID_MAX_CREATED_AT_DESC', + ClaimsByTargetIdMaxCreatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_MAX_CREATED_BLOCK_ID_ASC', + ClaimsByTargetIdMaxCreatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_MAX_CREATED_BLOCK_ID_DESC', + ClaimsByTargetIdMaxCustomClaimTypeIdAsc = 'CLAIMS_BY_TARGET_ID_MAX_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByTargetIdMaxCustomClaimTypeIdDesc = 'CLAIMS_BY_TARGET_ID_MAX_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByTargetIdMaxEventIdxAsc = 'CLAIMS_BY_TARGET_ID_MAX_EVENT_IDX_ASC', + ClaimsByTargetIdMaxEventIdxDesc = 'CLAIMS_BY_TARGET_ID_MAX_EVENT_IDX_DESC', + ClaimsByTargetIdMaxExpiryAsc = 'CLAIMS_BY_TARGET_ID_MAX_EXPIRY_ASC', + ClaimsByTargetIdMaxExpiryDesc = 'CLAIMS_BY_TARGET_ID_MAX_EXPIRY_DESC', + ClaimsByTargetIdMaxFilterExpiryAsc = 'CLAIMS_BY_TARGET_ID_MAX_FILTER_EXPIRY_ASC', + ClaimsByTargetIdMaxFilterExpiryDesc = 'CLAIMS_BY_TARGET_ID_MAX_FILTER_EXPIRY_DESC', + ClaimsByTargetIdMaxIdAsc = 'CLAIMS_BY_TARGET_ID_MAX_ID_ASC', + ClaimsByTargetIdMaxIdDesc = 'CLAIMS_BY_TARGET_ID_MAX_ID_DESC', + ClaimsByTargetIdMaxIssuanceDateAsc = 'CLAIMS_BY_TARGET_ID_MAX_ISSUANCE_DATE_ASC', + ClaimsByTargetIdMaxIssuanceDateDesc = 'CLAIMS_BY_TARGET_ID_MAX_ISSUANCE_DATE_DESC', + ClaimsByTargetIdMaxIssuerIdAsc = 'CLAIMS_BY_TARGET_ID_MAX_ISSUER_ID_ASC', + ClaimsByTargetIdMaxIssuerIdDesc = 'CLAIMS_BY_TARGET_ID_MAX_ISSUER_ID_DESC', + ClaimsByTargetIdMaxJurisdictionAsc = 'CLAIMS_BY_TARGET_ID_MAX_JURISDICTION_ASC', + ClaimsByTargetIdMaxJurisdictionDesc = 'CLAIMS_BY_TARGET_ID_MAX_JURISDICTION_DESC', + ClaimsByTargetIdMaxLastUpdateDateAsc = 'CLAIMS_BY_TARGET_ID_MAX_LAST_UPDATE_DATE_ASC', + ClaimsByTargetIdMaxLastUpdateDateDesc = 'CLAIMS_BY_TARGET_ID_MAX_LAST_UPDATE_DATE_DESC', + ClaimsByTargetIdMaxRevokeDateAsc = 'CLAIMS_BY_TARGET_ID_MAX_REVOKE_DATE_ASC', + ClaimsByTargetIdMaxRevokeDateDesc = 'CLAIMS_BY_TARGET_ID_MAX_REVOKE_DATE_DESC', + ClaimsByTargetIdMaxScopeAsc = 'CLAIMS_BY_TARGET_ID_MAX_SCOPE_ASC', + ClaimsByTargetIdMaxScopeDesc = 'CLAIMS_BY_TARGET_ID_MAX_SCOPE_DESC', + ClaimsByTargetIdMaxTargetIdAsc = 'CLAIMS_BY_TARGET_ID_MAX_TARGET_ID_ASC', + ClaimsByTargetIdMaxTargetIdDesc = 'CLAIMS_BY_TARGET_ID_MAX_TARGET_ID_DESC', + ClaimsByTargetIdMaxTypeAsc = 'CLAIMS_BY_TARGET_ID_MAX_TYPE_ASC', + ClaimsByTargetIdMaxTypeDesc = 'CLAIMS_BY_TARGET_ID_MAX_TYPE_DESC', + ClaimsByTargetIdMaxUpdatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_MAX_UPDATED_BLOCK_ID_ASC', + ClaimsByTargetIdMaxUpdatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_MAX_UPDATED_BLOCK_ID_DESC', + ClaimsByTargetIdMinBlockRangeAsc = 'CLAIMS_BY_TARGET_ID_MIN_BLOCK_RANGE_ASC', + ClaimsByTargetIdMinBlockRangeDesc = 'CLAIMS_BY_TARGET_ID_MIN_BLOCK_RANGE_DESC', + ClaimsByTargetIdMinCddIdAsc = 'CLAIMS_BY_TARGET_ID_MIN_CDD_ID_ASC', + ClaimsByTargetIdMinCddIdDesc = 'CLAIMS_BY_TARGET_ID_MIN_CDD_ID_DESC', + ClaimsByTargetIdMinCreatedAtAsc = 'CLAIMS_BY_TARGET_ID_MIN_CREATED_AT_ASC', + ClaimsByTargetIdMinCreatedAtDesc = 'CLAIMS_BY_TARGET_ID_MIN_CREATED_AT_DESC', + ClaimsByTargetIdMinCreatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_MIN_CREATED_BLOCK_ID_ASC', + ClaimsByTargetIdMinCreatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_MIN_CREATED_BLOCK_ID_DESC', + ClaimsByTargetIdMinCustomClaimTypeIdAsc = 'CLAIMS_BY_TARGET_ID_MIN_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByTargetIdMinCustomClaimTypeIdDesc = 'CLAIMS_BY_TARGET_ID_MIN_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByTargetIdMinEventIdxAsc = 'CLAIMS_BY_TARGET_ID_MIN_EVENT_IDX_ASC', + ClaimsByTargetIdMinEventIdxDesc = 'CLAIMS_BY_TARGET_ID_MIN_EVENT_IDX_DESC', + ClaimsByTargetIdMinExpiryAsc = 'CLAIMS_BY_TARGET_ID_MIN_EXPIRY_ASC', + ClaimsByTargetIdMinExpiryDesc = 'CLAIMS_BY_TARGET_ID_MIN_EXPIRY_DESC', + ClaimsByTargetIdMinFilterExpiryAsc = 'CLAIMS_BY_TARGET_ID_MIN_FILTER_EXPIRY_ASC', + ClaimsByTargetIdMinFilterExpiryDesc = 'CLAIMS_BY_TARGET_ID_MIN_FILTER_EXPIRY_DESC', + ClaimsByTargetIdMinIdAsc = 'CLAIMS_BY_TARGET_ID_MIN_ID_ASC', + ClaimsByTargetIdMinIdDesc = 'CLAIMS_BY_TARGET_ID_MIN_ID_DESC', + ClaimsByTargetIdMinIssuanceDateAsc = 'CLAIMS_BY_TARGET_ID_MIN_ISSUANCE_DATE_ASC', + ClaimsByTargetIdMinIssuanceDateDesc = 'CLAIMS_BY_TARGET_ID_MIN_ISSUANCE_DATE_DESC', + ClaimsByTargetIdMinIssuerIdAsc = 'CLAIMS_BY_TARGET_ID_MIN_ISSUER_ID_ASC', + ClaimsByTargetIdMinIssuerIdDesc = 'CLAIMS_BY_TARGET_ID_MIN_ISSUER_ID_DESC', + ClaimsByTargetIdMinJurisdictionAsc = 'CLAIMS_BY_TARGET_ID_MIN_JURISDICTION_ASC', + ClaimsByTargetIdMinJurisdictionDesc = 'CLAIMS_BY_TARGET_ID_MIN_JURISDICTION_DESC', + ClaimsByTargetIdMinLastUpdateDateAsc = 'CLAIMS_BY_TARGET_ID_MIN_LAST_UPDATE_DATE_ASC', + ClaimsByTargetIdMinLastUpdateDateDesc = 'CLAIMS_BY_TARGET_ID_MIN_LAST_UPDATE_DATE_DESC', + ClaimsByTargetIdMinRevokeDateAsc = 'CLAIMS_BY_TARGET_ID_MIN_REVOKE_DATE_ASC', + ClaimsByTargetIdMinRevokeDateDesc = 'CLAIMS_BY_TARGET_ID_MIN_REVOKE_DATE_DESC', + ClaimsByTargetIdMinScopeAsc = 'CLAIMS_BY_TARGET_ID_MIN_SCOPE_ASC', + ClaimsByTargetIdMinScopeDesc = 'CLAIMS_BY_TARGET_ID_MIN_SCOPE_DESC', + ClaimsByTargetIdMinTargetIdAsc = 'CLAIMS_BY_TARGET_ID_MIN_TARGET_ID_ASC', + ClaimsByTargetIdMinTargetIdDesc = 'CLAIMS_BY_TARGET_ID_MIN_TARGET_ID_DESC', + ClaimsByTargetIdMinTypeAsc = 'CLAIMS_BY_TARGET_ID_MIN_TYPE_ASC', + ClaimsByTargetIdMinTypeDesc = 'CLAIMS_BY_TARGET_ID_MIN_TYPE_DESC', + ClaimsByTargetIdMinUpdatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_MIN_UPDATED_BLOCK_ID_ASC', + ClaimsByTargetIdMinUpdatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_MIN_UPDATED_BLOCK_ID_DESC', + ClaimsByTargetIdStddevPopulationBlockRangeAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ClaimsByTargetIdStddevPopulationBlockRangeDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ClaimsByTargetIdStddevPopulationCddIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_CDD_ID_ASC', + ClaimsByTargetIdStddevPopulationCddIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_CDD_ID_DESC', + ClaimsByTargetIdStddevPopulationCreatedAtAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ClaimsByTargetIdStddevPopulationCreatedAtDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ClaimsByTargetIdStddevPopulationCreatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimsByTargetIdStddevPopulationCreatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimsByTargetIdStddevPopulationCustomClaimTypeIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByTargetIdStddevPopulationCustomClaimTypeIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByTargetIdStddevPopulationEventIdxAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ClaimsByTargetIdStddevPopulationEventIdxDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ClaimsByTargetIdStddevPopulationExpiryAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_EXPIRY_ASC', + ClaimsByTargetIdStddevPopulationExpiryDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_EXPIRY_DESC', + ClaimsByTargetIdStddevPopulationFilterExpiryAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_FILTER_EXPIRY_ASC', + ClaimsByTargetIdStddevPopulationFilterExpiryDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_FILTER_EXPIRY_DESC', + ClaimsByTargetIdStddevPopulationIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_ID_ASC', + ClaimsByTargetIdStddevPopulationIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_ID_DESC', + ClaimsByTargetIdStddevPopulationIssuanceDateAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_ISSUANCE_DATE_ASC', + ClaimsByTargetIdStddevPopulationIssuanceDateDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_ISSUANCE_DATE_DESC', + ClaimsByTargetIdStddevPopulationIssuerIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_ISSUER_ID_ASC', + ClaimsByTargetIdStddevPopulationIssuerIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_ISSUER_ID_DESC', + ClaimsByTargetIdStddevPopulationJurisdictionAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_JURISDICTION_ASC', + ClaimsByTargetIdStddevPopulationJurisdictionDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_JURISDICTION_DESC', + ClaimsByTargetIdStddevPopulationLastUpdateDateAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_LAST_UPDATE_DATE_ASC', + ClaimsByTargetIdStddevPopulationLastUpdateDateDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_LAST_UPDATE_DATE_DESC', + ClaimsByTargetIdStddevPopulationRevokeDateAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_REVOKE_DATE_ASC', + ClaimsByTargetIdStddevPopulationRevokeDateDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_REVOKE_DATE_DESC', + ClaimsByTargetIdStddevPopulationScopeAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_SCOPE_ASC', + ClaimsByTargetIdStddevPopulationScopeDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_SCOPE_DESC', + ClaimsByTargetIdStddevPopulationTargetIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_TARGET_ID_ASC', + ClaimsByTargetIdStddevPopulationTargetIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_TARGET_ID_DESC', + ClaimsByTargetIdStddevPopulationTypeAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_TYPE_ASC', + ClaimsByTargetIdStddevPopulationTypeDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_TYPE_DESC', + ClaimsByTargetIdStddevPopulationUpdatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimsByTargetIdStddevPopulationUpdatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimsByTargetIdStddevSampleBlockRangeAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ClaimsByTargetIdStddevSampleBlockRangeDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ClaimsByTargetIdStddevSampleCddIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_CDD_ID_ASC', + ClaimsByTargetIdStddevSampleCddIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_CDD_ID_DESC', + ClaimsByTargetIdStddevSampleCreatedAtAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ClaimsByTargetIdStddevSampleCreatedAtDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ClaimsByTargetIdStddevSampleCreatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimsByTargetIdStddevSampleCreatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimsByTargetIdStddevSampleCustomClaimTypeIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByTargetIdStddevSampleCustomClaimTypeIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByTargetIdStddevSampleEventIdxAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ClaimsByTargetIdStddevSampleEventIdxDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ClaimsByTargetIdStddevSampleExpiryAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_EXPIRY_ASC', + ClaimsByTargetIdStddevSampleExpiryDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_EXPIRY_DESC', + ClaimsByTargetIdStddevSampleFilterExpiryAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_FILTER_EXPIRY_ASC', + ClaimsByTargetIdStddevSampleFilterExpiryDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_FILTER_EXPIRY_DESC', + ClaimsByTargetIdStddevSampleIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_ID_ASC', + ClaimsByTargetIdStddevSampleIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_ID_DESC', + ClaimsByTargetIdStddevSampleIssuanceDateAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_ISSUANCE_DATE_ASC', + ClaimsByTargetIdStddevSampleIssuanceDateDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_ISSUANCE_DATE_DESC', + ClaimsByTargetIdStddevSampleIssuerIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_ISSUER_ID_ASC', + ClaimsByTargetIdStddevSampleIssuerIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_ISSUER_ID_DESC', + ClaimsByTargetIdStddevSampleJurisdictionAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_JURISDICTION_ASC', + ClaimsByTargetIdStddevSampleJurisdictionDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_JURISDICTION_DESC', + ClaimsByTargetIdStddevSampleLastUpdateDateAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_LAST_UPDATE_DATE_ASC', + ClaimsByTargetIdStddevSampleLastUpdateDateDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_LAST_UPDATE_DATE_DESC', + ClaimsByTargetIdStddevSampleRevokeDateAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_REVOKE_DATE_ASC', + ClaimsByTargetIdStddevSampleRevokeDateDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_REVOKE_DATE_DESC', + ClaimsByTargetIdStddevSampleScopeAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_SCOPE_ASC', + ClaimsByTargetIdStddevSampleScopeDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_SCOPE_DESC', + ClaimsByTargetIdStddevSampleTargetIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_TARGET_ID_ASC', + ClaimsByTargetIdStddevSampleTargetIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_TARGET_ID_DESC', + ClaimsByTargetIdStddevSampleTypeAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_TYPE_ASC', + ClaimsByTargetIdStddevSampleTypeDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_TYPE_DESC', + ClaimsByTargetIdStddevSampleUpdatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimsByTargetIdStddevSampleUpdatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ClaimsByTargetIdSumBlockRangeAsc = 'CLAIMS_BY_TARGET_ID_SUM_BLOCK_RANGE_ASC', + ClaimsByTargetIdSumBlockRangeDesc = 'CLAIMS_BY_TARGET_ID_SUM_BLOCK_RANGE_DESC', + ClaimsByTargetIdSumCddIdAsc = 'CLAIMS_BY_TARGET_ID_SUM_CDD_ID_ASC', + ClaimsByTargetIdSumCddIdDesc = 'CLAIMS_BY_TARGET_ID_SUM_CDD_ID_DESC', + ClaimsByTargetIdSumCreatedAtAsc = 'CLAIMS_BY_TARGET_ID_SUM_CREATED_AT_ASC', + ClaimsByTargetIdSumCreatedAtDesc = 'CLAIMS_BY_TARGET_ID_SUM_CREATED_AT_DESC', + ClaimsByTargetIdSumCreatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_SUM_CREATED_BLOCK_ID_ASC', + ClaimsByTargetIdSumCreatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_SUM_CREATED_BLOCK_ID_DESC', + ClaimsByTargetIdSumCustomClaimTypeIdAsc = 'CLAIMS_BY_TARGET_ID_SUM_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByTargetIdSumCustomClaimTypeIdDesc = 'CLAIMS_BY_TARGET_ID_SUM_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByTargetIdSumEventIdxAsc = 'CLAIMS_BY_TARGET_ID_SUM_EVENT_IDX_ASC', + ClaimsByTargetIdSumEventIdxDesc = 'CLAIMS_BY_TARGET_ID_SUM_EVENT_IDX_DESC', + ClaimsByTargetIdSumExpiryAsc = 'CLAIMS_BY_TARGET_ID_SUM_EXPIRY_ASC', + ClaimsByTargetIdSumExpiryDesc = 'CLAIMS_BY_TARGET_ID_SUM_EXPIRY_DESC', + ClaimsByTargetIdSumFilterExpiryAsc = 'CLAIMS_BY_TARGET_ID_SUM_FILTER_EXPIRY_ASC', + ClaimsByTargetIdSumFilterExpiryDesc = 'CLAIMS_BY_TARGET_ID_SUM_FILTER_EXPIRY_DESC', + ClaimsByTargetIdSumIdAsc = 'CLAIMS_BY_TARGET_ID_SUM_ID_ASC', + ClaimsByTargetIdSumIdDesc = 'CLAIMS_BY_TARGET_ID_SUM_ID_DESC', + ClaimsByTargetIdSumIssuanceDateAsc = 'CLAIMS_BY_TARGET_ID_SUM_ISSUANCE_DATE_ASC', + ClaimsByTargetIdSumIssuanceDateDesc = 'CLAIMS_BY_TARGET_ID_SUM_ISSUANCE_DATE_DESC', + ClaimsByTargetIdSumIssuerIdAsc = 'CLAIMS_BY_TARGET_ID_SUM_ISSUER_ID_ASC', + ClaimsByTargetIdSumIssuerIdDesc = 'CLAIMS_BY_TARGET_ID_SUM_ISSUER_ID_DESC', + ClaimsByTargetIdSumJurisdictionAsc = 'CLAIMS_BY_TARGET_ID_SUM_JURISDICTION_ASC', + ClaimsByTargetIdSumJurisdictionDesc = 'CLAIMS_BY_TARGET_ID_SUM_JURISDICTION_DESC', + ClaimsByTargetIdSumLastUpdateDateAsc = 'CLAIMS_BY_TARGET_ID_SUM_LAST_UPDATE_DATE_ASC', + ClaimsByTargetIdSumLastUpdateDateDesc = 'CLAIMS_BY_TARGET_ID_SUM_LAST_UPDATE_DATE_DESC', + ClaimsByTargetIdSumRevokeDateAsc = 'CLAIMS_BY_TARGET_ID_SUM_REVOKE_DATE_ASC', + ClaimsByTargetIdSumRevokeDateDesc = 'CLAIMS_BY_TARGET_ID_SUM_REVOKE_DATE_DESC', + ClaimsByTargetIdSumScopeAsc = 'CLAIMS_BY_TARGET_ID_SUM_SCOPE_ASC', + ClaimsByTargetIdSumScopeDesc = 'CLAIMS_BY_TARGET_ID_SUM_SCOPE_DESC', + ClaimsByTargetIdSumTargetIdAsc = 'CLAIMS_BY_TARGET_ID_SUM_TARGET_ID_ASC', + ClaimsByTargetIdSumTargetIdDesc = 'CLAIMS_BY_TARGET_ID_SUM_TARGET_ID_DESC', + ClaimsByTargetIdSumTypeAsc = 'CLAIMS_BY_TARGET_ID_SUM_TYPE_ASC', + ClaimsByTargetIdSumTypeDesc = 'CLAIMS_BY_TARGET_ID_SUM_TYPE_DESC', + ClaimsByTargetIdSumUpdatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_SUM_UPDATED_BLOCK_ID_ASC', + ClaimsByTargetIdSumUpdatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_SUM_UPDATED_BLOCK_ID_DESC', + ClaimsByTargetIdVariancePopulationBlockRangeAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ClaimsByTargetIdVariancePopulationBlockRangeDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ClaimsByTargetIdVariancePopulationCddIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_CDD_ID_ASC', + ClaimsByTargetIdVariancePopulationCddIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_CDD_ID_DESC', + ClaimsByTargetIdVariancePopulationCreatedAtAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ClaimsByTargetIdVariancePopulationCreatedAtDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ClaimsByTargetIdVariancePopulationCreatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ClaimsByTargetIdVariancePopulationCreatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ClaimsByTargetIdVariancePopulationCustomClaimTypeIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByTargetIdVariancePopulationCustomClaimTypeIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByTargetIdVariancePopulationEventIdxAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ClaimsByTargetIdVariancePopulationEventIdxDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ClaimsByTargetIdVariancePopulationExpiryAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_EXPIRY_ASC', + ClaimsByTargetIdVariancePopulationExpiryDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_EXPIRY_DESC', + ClaimsByTargetIdVariancePopulationFilterExpiryAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_FILTER_EXPIRY_ASC', + ClaimsByTargetIdVariancePopulationFilterExpiryDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_FILTER_EXPIRY_DESC', + ClaimsByTargetIdVariancePopulationIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_ID_ASC', + ClaimsByTargetIdVariancePopulationIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_ID_DESC', + ClaimsByTargetIdVariancePopulationIssuanceDateAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_ISSUANCE_DATE_ASC', + ClaimsByTargetIdVariancePopulationIssuanceDateDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_ISSUANCE_DATE_DESC', + ClaimsByTargetIdVariancePopulationIssuerIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_ISSUER_ID_ASC', + ClaimsByTargetIdVariancePopulationIssuerIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_ISSUER_ID_DESC', + ClaimsByTargetIdVariancePopulationJurisdictionAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_JURISDICTION_ASC', + ClaimsByTargetIdVariancePopulationJurisdictionDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_JURISDICTION_DESC', + ClaimsByTargetIdVariancePopulationLastUpdateDateAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_LAST_UPDATE_DATE_ASC', + ClaimsByTargetIdVariancePopulationLastUpdateDateDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_LAST_UPDATE_DATE_DESC', + ClaimsByTargetIdVariancePopulationRevokeDateAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_REVOKE_DATE_ASC', + ClaimsByTargetIdVariancePopulationRevokeDateDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_REVOKE_DATE_DESC', + ClaimsByTargetIdVariancePopulationScopeAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_SCOPE_ASC', + ClaimsByTargetIdVariancePopulationScopeDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_SCOPE_DESC', + ClaimsByTargetIdVariancePopulationTargetIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_TARGET_ID_ASC', + ClaimsByTargetIdVariancePopulationTargetIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_TARGET_ID_DESC', + ClaimsByTargetIdVariancePopulationTypeAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_TYPE_ASC', + ClaimsByTargetIdVariancePopulationTypeDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_TYPE_DESC', + ClaimsByTargetIdVariancePopulationUpdatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ClaimsByTargetIdVariancePopulationUpdatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ClaimsByTargetIdVarianceSampleBlockRangeAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ClaimsByTargetIdVarianceSampleBlockRangeDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ClaimsByTargetIdVarianceSampleCddIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_CDD_ID_ASC', + ClaimsByTargetIdVarianceSampleCddIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_CDD_ID_DESC', + ClaimsByTargetIdVarianceSampleCreatedAtAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ClaimsByTargetIdVarianceSampleCreatedAtDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ClaimsByTargetIdVarianceSampleCreatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ClaimsByTargetIdVarianceSampleCreatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ClaimsByTargetIdVarianceSampleCustomClaimTypeIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + ClaimsByTargetIdVarianceSampleCustomClaimTypeIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + ClaimsByTargetIdVarianceSampleEventIdxAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ClaimsByTargetIdVarianceSampleEventIdxDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ClaimsByTargetIdVarianceSampleExpiryAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_EXPIRY_ASC', + ClaimsByTargetIdVarianceSampleExpiryDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_EXPIRY_DESC', + ClaimsByTargetIdVarianceSampleFilterExpiryAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_FILTER_EXPIRY_ASC', + ClaimsByTargetIdVarianceSampleFilterExpiryDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_FILTER_EXPIRY_DESC', + ClaimsByTargetIdVarianceSampleIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_ID_ASC', + ClaimsByTargetIdVarianceSampleIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_ID_DESC', + ClaimsByTargetIdVarianceSampleIssuanceDateAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_ISSUANCE_DATE_ASC', + ClaimsByTargetIdVarianceSampleIssuanceDateDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_ISSUANCE_DATE_DESC', + ClaimsByTargetIdVarianceSampleIssuerIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_ISSUER_ID_ASC', + ClaimsByTargetIdVarianceSampleIssuerIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_ISSUER_ID_DESC', + ClaimsByTargetIdVarianceSampleJurisdictionAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_JURISDICTION_ASC', + ClaimsByTargetIdVarianceSampleJurisdictionDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_JURISDICTION_DESC', + ClaimsByTargetIdVarianceSampleLastUpdateDateAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_LAST_UPDATE_DATE_ASC', + ClaimsByTargetIdVarianceSampleLastUpdateDateDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_LAST_UPDATE_DATE_DESC', + ClaimsByTargetIdVarianceSampleRevokeDateAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_REVOKE_DATE_ASC', + ClaimsByTargetIdVarianceSampleRevokeDateDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_REVOKE_DATE_DESC', + ClaimsByTargetIdVarianceSampleScopeAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_SCOPE_ASC', + ClaimsByTargetIdVarianceSampleScopeDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_SCOPE_DESC', + ClaimsByTargetIdVarianceSampleTargetIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_TARGET_ID_ASC', + ClaimsByTargetIdVarianceSampleTargetIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_TARGET_ID_DESC', + ClaimsByTargetIdVarianceSampleTypeAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_TYPE_ASC', + ClaimsByTargetIdVarianceSampleTypeDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_TYPE_DESC', + ClaimsByTargetIdVarianceSampleUpdatedBlockIdAsc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ClaimsByTargetIdVarianceSampleUpdatedBlockIdDesc = 'CLAIMS_BY_TARGET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdAverageAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_ACCOUNT_ASC', + ConfidentialAccountsByCreatorIdAverageAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_ACCOUNT_DESC', + ConfidentialAccountsByCreatorIdAverageBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatorIdAverageBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatorIdAverageCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAccountsByCreatorIdAverageCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAccountsByCreatorIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdAverageCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_ASC', + ConfidentialAccountsByCreatorIdAverageCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_DESC', + ConfidentialAccountsByCreatorIdAverageEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAccountsByCreatorIdAverageEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAccountsByCreatorIdAverageFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatorIdAverageFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatorIdAverageIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_ID_ASC', + ConfidentialAccountsByCreatorIdAverageIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_ID_DESC', + ConfidentialAccountsByCreatorIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdCountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_COUNT_ASC', + ConfidentialAccountsByCreatorIdCountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_COUNT_DESC', + ConfidentialAccountsByCreatorIdDistinctCountAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_ACCOUNT_ASC', + ConfidentialAccountsByCreatorIdDistinctCountAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_ACCOUNT_DESC', + ConfidentialAccountsByCreatorIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatorIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatorIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAccountsByCreatorIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAccountsByCreatorIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdDistinctCountCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + ConfidentialAccountsByCreatorIdDistinctCountCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + ConfidentialAccountsByCreatorIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAccountsByCreatorIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAccountsByCreatorIdDistinctCountFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatorIdDistinctCountFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatorIdDistinctCountIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAccountsByCreatorIdDistinctCountIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAccountsByCreatorIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdMaxAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_ACCOUNT_ASC', + ConfidentialAccountsByCreatorIdMaxAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_ACCOUNT_DESC', + ConfidentialAccountsByCreatorIdMaxBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatorIdMaxBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatorIdMaxCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_CREATED_AT_ASC', + ConfidentialAccountsByCreatorIdMaxCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_CREATED_AT_DESC', + ConfidentialAccountsByCreatorIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdMaxCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_CREATOR_ID_ASC', + ConfidentialAccountsByCreatorIdMaxCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_CREATOR_ID_DESC', + ConfidentialAccountsByCreatorIdMaxEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_EVENT_IDX_ASC', + ConfidentialAccountsByCreatorIdMaxEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_EVENT_IDX_DESC', + ConfidentialAccountsByCreatorIdMaxFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatorIdMaxFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatorIdMaxIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_ID_ASC', + ConfidentialAccountsByCreatorIdMaxIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_ID_DESC', + ConfidentialAccountsByCreatorIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdMinAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_ACCOUNT_ASC', + ConfidentialAccountsByCreatorIdMinAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_ACCOUNT_DESC', + ConfidentialAccountsByCreatorIdMinBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatorIdMinBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatorIdMinCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_CREATED_AT_ASC', + ConfidentialAccountsByCreatorIdMinCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_CREATED_AT_DESC', + ConfidentialAccountsByCreatorIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdMinCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_CREATOR_ID_ASC', + ConfidentialAccountsByCreatorIdMinCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_CREATOR_ID_DESC', + ConfidentialAccountsByCreatorIdMinEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_EVENT_IDX_ASC', + ConfidentialAccountsByCreatorIdMinEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_EVENT_IDX_DESC', + ConfidentialAccountsByCreatorIdMinFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatorIdMinFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatorIdMinIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_ID_ASC', + ConfidentialAccountsByCreatorIdMinIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_ID_DESC', + ConfidentialAccountsByCreatorIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdStddevPopulationAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_ACCOUNT_ASC', + ConfidentialAccountsByCreatorIdStddevPopulationAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_ACCOUNT_DESC', + ConfidentialAccountsByCreatorIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatorIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatorIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAccountsByCreatorIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAccountsByCreatorIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdStddevPopulationCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + ConfidentialAccountsByCreatorIdStddevPopulationCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + ConfidentialAccountsByCreatorIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAccountsByCreatorIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAccountsByCreatorIdStddevPopulationFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatorIdStddevPopulationFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatorIdStddevPopulationIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAccountsByCreatorIdStddevPopulationIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAccountsByCreatorIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdStddevSampleAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_ACCOUNT_ASC', + ConfidentialAccountsByCreatorIdStddevSampleAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_ACCOUNT_DESC', + ConfidentialAccountsByCreatorIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatorIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatorIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAccountsByCreatorIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAccountsByCreatorIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdStddevSampleCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + ConfidentialAccountsByCreatorIdStddevSampleCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + ConfidentialAccountsByCreatorIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAccountsByCreatorIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAccountsByCreatorIdStddevSampleFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatorIdStddevSampleFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatorIdStddevSampleIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAccountsByCreatorIdStddevSampleIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAccountsByCreatorIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdSumAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_ACCOUNT_ASC', + ConfidentialAccountsByCreatorIdSumAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_ACCOUNT_DESC', + ConfidentialAccountsByCreatorIdSumBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatorIdSumBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatorIdSumCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_CREATED_AT_ASC', + ConfidentialAccountsByCreatorIdSumCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_CREATED_AT_DESC', + ConfidentialAccountsByCreatorIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdSumCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_CREATOR_ID_ASC', + ConfidentialAccountsByCreatorIdSumCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_CREATOR_ID_DESC', + ConfidentialAccountsByCreatorIdSumEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_EVENT_IDX_ASC', + ConfidentialAccountsByCreatorIdSumEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_EVENT_IDX_DESC', + ConfidentialAccountsByCreatorIdSumFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatorIdSumFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatorIdSumIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_ID_ASC', + ConfidentialAccountsByCreatorIdSumIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_ID_DESC', + ConfidentialAccountsByCreatorIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdVariancePopulationAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_ACCOUNT_ASC', + ConfidentialAccountsByCreatorIdVariancePopulationAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_ACCOUNT_DESC', + ConfidentialAccountsByCreatorIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatorIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatorIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAccountsByCreatorIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAccountsByCreatorIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdVariancePopulationCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + ConfidentialAccountsByCreatorIdVariancePopulationCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + ConfidentialAccountsByCreatorIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAccountsByCreatorIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAccountsByCreatorIdVariancePopulationFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatorIdVariancePopulationFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatorIdVariancePopulationIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAccountsByCreatorIdVariancePopulationIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAccountsByCreatorIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdVarianceSampleAccountAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_ACCOUNT_ASC', + ConfidentialAccountsByCreatorIdVarianceSampleAccountDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_ACCOUNT_DESC', + ConfidentialAccountsByCreatorIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAccountsByCreatorIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAccountsByCreatorIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAccountsByCreatorIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAccountsByCreatorIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAccountsByCreatorIdVarianceSampleCreatorIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + ConfidentialAccountsByCreatorIdVarianceSampleCreatorIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + ConfidentialAccountsByCreatorIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAccountsByCreatorIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAccountsByCreatorIdVarianceSampleFrozenForAssetAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_FROZEN_FOR_ASSET_ASC', + ConfidentialAccountsByCreatorIdVarianceSampleFrozenForAssetDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_FROZEN_FOR_ASSET_DESC', + ConfidentialAccountsByCreatorIdVarianceSampleIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAccountsByCreatorIdVarianceSampleIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAccountsByCreatorIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAccountsByCreatorIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ACCOUNTS_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdAverageAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatorIdAverageAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatorIdAverageAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_ASSET_ID_ASC', + ConfidentialAssetsByCreatorIdAverageAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_ASSET_ID_DESC', + ConfidentialAssetsByCreatorIdAverageAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_AUDITORS_ASC', + ConfidentialAssetsByCreatorIdAverageAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_AUDITORS_DESC', + ConfidentialAssetsByCreatorIdAverageBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatorIdAverageBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatorIdAverageCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialAssetsByCreatorIdAverageCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialAssetsByCreatorIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdAverageCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_ASC', + ConfidentialAssetsByCreatorIdAverageCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_DESC', + ConfidentialAssetsByCreatorIdAverageDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_DATA_ASC', + ConfidentialAssetsByCreatorIdAverageDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_DATA_DESC', + ConfidentialAssetsByCreatorIdAverageEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialAssetsByCreatorIdAverageEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialAssetsByCreatorIdAverageIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_ID_ASC', + ConfidentialAssetsByCreatorIdAverageIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_ID_DESC', + ConfidentialAssetsByCreatorIdAverageIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_IS_FROZEN_ASC', + ConfidentialAssetsByCreatorIdAverageIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_IS_FROZEN_DESC', + ConfidentialAssetsByCreatorIdAverageMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_MEDIATORS_ASC', + ConfidentialAssetsByCreatorIdAverageMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_MEDIATORS_DESC', + ConfidentialAssetsByCreatorIdAverageTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_TICKER_ASC', + ConfidentialAssetsByCreatorIdAverageTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_TICKER_DESC', + ConfidentialAssetsByCreatorIdAverageTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatorIdAverageTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatorIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdAverageVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatorIdAverageVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_AVERAGE_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatorIdCountAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_COUNT_ASC', + ConfidentialAssetsByCreatorIdCountDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_COUNT_DESC', + ConfidentialAssetsByCreatorIdDistinctCountAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatorIdDistinctCountAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatorIdDistinctCountAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_ASSET_ID_ASC', + ConfidentialAssetsByCreatorIdDistinctCountAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_ASSET_ID_DESC', + ConfidentialAssetsByCreatorIdDistinctCountAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_AUDITORS_ASC', + ConfidentialAssetsByCreatorIdDistinctCountAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_AUDITORS_DESC', + ConfidentialAssetsByCreatorIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatorIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatorIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialAssetsByCreatorIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialAssetsByCreatorIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdDistinctCountCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + ConfidentialAssetsByCreatorIdDistinctCountCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + ConfidentialAssetsByCreatorIdDistinctCountDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_DATA_ASC', + ConfidentialAssetsByCreatorIdDistinctCountDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_DATA_DESC', + ConfidentialAssetsByCreatorIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialAssetsByCreatorIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialAssetsByCreatorIdDistinctCountIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialAssetsByCreatorIdDistinctCountIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialAssetsByCreatorIdDistinctCountIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_IS_FROZEN_ASC', + ConfidentialAssetsByCreatorIdDistinctCountIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_IS_FROZEN_DESC', + ConfidentialAssetsByCreatorIdDistinctCountMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_MEDIATORS_ASC', + ConfidentialAssetsByCreatorIdDistinctCountMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_MEDIATORS_DESC', + ConfidentialAssetsByCreatorIdDistinctCountTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_TICKER_ASC', + ConfidentialAssetsByCreatorIdDistinctCountTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_TICKER_DESC', + ConfidentialAssetsByCreatorIdDistinctCountTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatorIdDistinctCountTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatorIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdDistinctCountVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatorIdDistinctCountVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_DISTINCT_COUNT_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatorIdMaxAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatorIdMaxAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatorIdMaxAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_ASSET_ID_ASC', + ConfidentialAssetsByCreatorIdMaxAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_ASSET_ID_DESC', + ConfidentialAssetsByCreatorIdMaxAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_AUDITORS_ASC', + ConfidentialAssetsByCreatorIdMaxAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_AUDITORS_DESC', + ConfidentialAssetsByCreatorIdMaxBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatorIdMaxBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatorIdMaxCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_CREATED_AT_ASC', + ConfidentialAssetsByCreatorIdMaxCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_CREATED_AT_DESC', + ConfidentialAssetsByCreatorIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdMaxCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_CREATOR_ID_ASC', + ConfidentialAssetsByCreatorIdMaxCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_CREATOR_ID_DESC', + ConfidentialAssetsByCreatorIdMaxDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_DATA_ASC', + ConfidentialAssetsByCreatorIdMaxDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_DATA_DESC', + ConfidentialAssetsByCreatorIdMaxEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_EVENT_IDX_ASC', + ConfidentialAssetsByCreatorIdMaxEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_EVENT_IDX_DESC', + ConfidentialAssetsByCreatorIdMaxIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_ID_ASC', + ConfidentialAssetsByCreatorIdMaxIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_ID_DESC', + ConfidentialAssetsByCreatorIdMaxIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_IS_FROZEN_ASC', + ConfidentialAssetsByCreatorIdMaxIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_IS_FROZEN_DESC', + ConfidentialAssetsByCreatorIdMaxMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_MEDIATORS_ASC', + ConfidentialAssetsByCreatorIdMaxMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_MEDIATORS_DESC', + ConfidentialAssetsByCreatorIdMaxTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_TICKER_ASC', + ConfidentialAssetsByCreatorIdMaxTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_TICKER_DESC', + ConfidentialAssetsByCreatorIdMaxTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatorIdMaxTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatorIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdMaxVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatorIdMaxVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MAX_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatorIdMinAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatorIdMinAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatorIdMinAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_ASSET_ID_ASC', + ConfidentialAssetsByCreatorIdMinAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_ASSET_ID_DESC', + ConfidentialAssetsByCreatorIdMinAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_AUDITORS_ASC', + ConfidentialAssetsByCreatorIdMinAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_AUDITORS_DESC', + ConfidentialAssetsByCreatorIdMinBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatorIdMinBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatorIdMinCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_CREATED_AT_ASC', + ConfidentialAssetsByCreatorIdMinCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_CREATED_AT_DESC', + ConfidentialAssetsByCreatorIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdMinCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_CREATOR_ID_ASC', + ConfidentialAssetsByCreatorIdMinCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_CREATOR_ID_DESC', + ConfidentialAssetsByCreatorIdMinDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_DATA_ASC', + ConfidentialAssetsByCreatorIdMinDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_DATA_DESC', + ConfidentialAssetsByCreatorIdMinEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_EVENT_IDX_ASC', + ConfidentialAssetsByCreatorIdMinEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_EVENT_IDX_DESC', + ConfidentialAssetsByCreatorIdMinIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_ID_ASC', + ConfidentialAssetsByCreatorIdMinIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_ID_DESC', + ConfidentialAssetsByCreatorIdMinIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_IS_FROZEN_ASC', + ConfidentialAssetsByCreatorIdMinIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_IS_FROZEN_DESC', + ConfidentialAssetsByCreatorIdMinMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_MEDIATORS_ASC', + ConfidentialAssetsByCreatorIdMinMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_MEDIATORS_DESC', + ConfidentialAssetsByCreatorIdMinTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_TICKER_ASC', + ConfidentialAssetsByCreatorIdMinTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_TICKER_DESC', + ConfidentialAssetsByCreatorIdMinTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatorIdMinTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatorIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdMinVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatorIdMinVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_MIN_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_ASSET_ID_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_ASSET_ID_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_AUDITORS_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_AUDITORS_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_DATA_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_DATA_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_IS_FROZEN_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_IS_FROZEN_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_MEDIATORS_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_MEDIATORS_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_TICKER_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_TICKER_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdStddevPopulationVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatorIdStddevPopulationVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_POPULATION_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatorIdStddevSampleAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatorIdStddevSampleAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatorIdStddevSampleAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetsByCreatorIdStddevSampleAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetsByCreatorIdStddevSampleAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_AUDITORS_ASC', + ConfidentialAssetsByCreatorIdStddevSampleAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_AUDITORS_DESC', + ConfidentialAssetsByCreatorIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatorIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatorIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetsByCreatorIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetsByCreatorIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdStddevSampleCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + ConfidentialAssetsByCreatorIdStddevSampleCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + ConfidentialAssetsByCreatorIdStddevSampleDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_DATA_ASC', + ConfidentialAssetsByCreatorIdStddevSampleDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_DATA_DESC', + ConfidentialAssetsByCreatorIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetsByCreatorIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetsByCreatorIdStddevSampleIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialAssetsByCreatorIdStddevSampleIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialAssetsByCreatorIdStddevSampleIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_IS_FROZEN_ASC', + ConfidentialAssetsByCreatorIdStddevSampleIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_IS_FROZEN_DESC', + ConfidentialAssetsByCreatorIdStddevSampleMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_MEDIATORS_ASC', + ConfidentialAssetsByCreatorIdStddevSampleMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_MEDIATORS_DESC', + ConfidentialAssetsByCreatorIdStddevSampleTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_TICKER_ASC', + ConfidentialAssetsByCreatorIdStddevSampleTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_TICKER_DESC', + ConfidentialAssetsByCreatorIdStddevSampleTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatorIdStddevSampleTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatorIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdStddevSampleVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatorIdStddevSampleVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_STDDEV_SAMPLE_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatorIdSumAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatorIdSumAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatorIdSumAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_ASSET_ID_ASC', + ConfidentialAssetsByCreatorIdSumAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_ASSET_ID_DESC', + ConfidentialAssetsByCreatorIdSumAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_AUDITORS_ASC', + ConfidentialAssetsByCreatorIdSumAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_AUDITORS_DESC', + ConfidentialAssetsByCreatorIdSumBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatorIdSumBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatorIdSumCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_CREATED_AT_ASC', + ConfidentialAssetsByCreatorIdSumCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_CREATED_AT_DESC', + ConfidentialAssetsByCreatorIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdSumCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_CREATOR_ID_ASC', + ConfidentialAssetsByCreatorIdSumCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_CREATOR_ID_DESC', + ConfidentialAssetsByCreatorIdSumDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_DATA_ASC', + ConfidentialAssetsByCreatorIdSumDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_DATA_DESC', + ConfidentialAssetsByCreatorIdSumEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_EVENT_IDX_ASC', + ConfidentialAssetsByCreatorIdSumEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_EVENT_IDX_DESC', + ConfidentialAssetsByCreatorIdSumIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_ID_ASC', + ConfidentialAssetsByCreatorIdSumIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_ID_DESC', + ConfidentialAssetsByCreatorIdSumIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_IS_FROZEN_ASC', + ConfidentialAssetsByCreatorIdSumIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_IS_FROZEN_DESC', + ConfidentialAssetsByCreatorIdSumMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_MEDIATORS_ASC', + ConfidentialAssetsByCreatorIdSumMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_MEDIATORS_DESC', + ConfidentialAssetsByCreatorIdSumTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_TICKER_ASC', + ConfidentialAssetsByCreatorIdSumTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_TICKER_DESC', + ConfidentialAssetsByCreatorIdSumTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatorIdSumTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatorIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdSumVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatorIdSumVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_SUM_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_AUDITORS_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_AUDITORS_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_DATA_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_DATA_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_IS_FROZEN_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_IS_FROZEN_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_MEDIATORS_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_MEDIATORS_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_TICKER_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_TICKER_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdVariancePopulationVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatorIdVariancePopulationVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_POPULATION_VENUE_FILTERING_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleAllowedVenuesAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_ALLOWED_VENUES_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleAllowedVenuesDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_ALLOWED_VENUES_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleAssetIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleAssetIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleAuditorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_AUDITORS_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleAuditorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_AUDITORS_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleCreatorIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleCreatorIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleDataAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_DATA_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleDataDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_DATA_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleIsFrozenAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_IS_FROZEN_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleIsFrozenDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_IS_FROZEN_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleMediatorsAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_MEDIATORS_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleMediatorsDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_MEDIATORS_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleTickerAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_TICKER_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleTickerDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_TICKER_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleTotalSupplyAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleTotalSupplyDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_TOTAL_SUPPLY_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialAssetsByCreatorIdVarianceSampleVenueFilteringAsc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_VENUE_FILTERING_ASC', + ConfidentialAssetsByCreatorIdVarianceSampleVenueFilteringDesc = 'CONFIDENTIAL_ASSETS_BY_CREATOR_ID_VARIANCE_SAMPLE_VENUE_FILTERING_DESC', + ConfidentialTransactionAffirmationsAverageAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsAverageAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsAverageBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsAverageBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsAverageCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsAverageCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsAverageCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsAverageCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsAverageEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsAverageEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsAverageIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsAverageIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsAverageIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_ID_ASC', + ConfidentialTransactionAffirmationsAverageIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_ID_DESC', + ConfidentialTransactionAffirmationsAverageLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsAverageLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsAveragePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_PARTY_ASC', + ConfidentialTransactionAffirmationsAveragePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_PARTY_DESC', + ConfidentialTransactionAffirmationsAverageProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_PROOFS_ASC', + ConfidentialTransactionAffirmationsAverageProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_PROOFS_DESC', + ConfidentialTransactionAffirmationsAverageStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_STATUS_ASC', + ConfidentialTransactionAffirmationsAverageStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_STATUS_DESC', + ConfidentialTransactionAffirmationsAverageTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsAverageTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsCountAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_COUNT_ASC', + ConfidentialTransactionAffirmationsCountDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_COUNT_DESC', + ConfidentialTransactionAffirmationsDistinctCountAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsDistinctCountAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsDistinctCountBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsDistinctCountBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsDistinctCountCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsDistinctCountCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsDistinctCountEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsDistinctCountEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsDistinctCountIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsDistinctCountIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsDistinctCountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_ID_ASC', + ConfidentialTransactionAffirmationsDistinctCountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_ID_DESC', + ConfidentialTransactionAffirmationsDistinctCountLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_LEG_ID_ASC', + ConfidentialTransactionAffirmationsDistinctCountLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_LEG_ID_DESC', + ConfidentialTransactionAffirmationsDistinctCountPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_PARTY_ASC', + ConfidentialTransactionAffirmationsDistinctCountPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_PARTY_DESC', + ConfidentialTransactionAffirmationsDistinctCountProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_PROOFS_ASC', + ConfidentialTransactionAffirmationsDistinctCountProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_PROOFS_DESC', + ConfidentialTransactionAffirmationsDistinctCountStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_STATUS_ASC', + ConfidentialTransactionAffirmationsDistinctCountStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_STATUS_DESC', + ConfidentialTransactionAffirmationsDistinctCountTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsDistinctCountTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsMaxAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsMaxAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsMaxBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsMaxBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsMaxCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsMaxCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsMaxCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsMaxCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsMaxEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsMaxEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsMaxIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsMaxIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsMaxIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_ID_ASC', + ConfidentialTransactionAffirmationsMaxIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_ID_DESC', + ConfidentialTransactionAffirmationsMaxLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_LEG_ID_ASC', + ConfidentialTransactionAffirmationsMaxLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_LEG_ID_DESC', + ConfidentialTransactionAffirmationsMaxPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_PARTY_ASC', + ConfidentialTransactionAffirmationsMaxPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_PARTY_DESC', + ConfidentialTransactionAffirmationsMaxProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_PROOFS_ASC', + ConfidentialTransactionAffirmationsMaxProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_PROOFS_DESC', + ConfidentialTransactionAffirmationsMaxStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_STATUS_ASC', + ConfidentialTransactionAffirmationsMaxStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_STATUS_DESC', + ConfidentialTransactionAffirmationsMaxTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsMaxTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsMinAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsMinAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsMinBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsMinBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsMinCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsMinCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsMinCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsMinCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsMinEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsMinEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsMinIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsMinIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsMinIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_ID_ASC', + ConfidentialTransactionAffirmationsMinIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_ID_DESC', + ConfidentialTransactionAffirmationsMinLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_LEG_ID_ASC', + ConfidentialTransactionAffirmationsMinLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_LEG_ID_DESC', + ConfidentialTransactionAffirmationsMinPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_PARTY_ASC', + ConfidentialTransactionAffirmationsMinPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_PARTY_DESC', + ConfidentialTransactionAffirmationsMinProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_PROOFS_ASC', + ConfidentialTransactionAffirmationsMinProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_PROOFS_DESC', + ConfidentialTransactionAffirmationsMinStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_STATUS_ASC', + ConfidentialTransactionAffirmationsMinStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_STATUS_DESC', + ConfidentialTransactionAffirmationsMinTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsMinTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsMinUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsMinUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsStddevPopulationAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsStddevPopulationAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsStddevPopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsStddevPopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsStddevPopulationIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsStddevPopulationIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsStddevPopulationIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_ID_ASC', + ConfidentialTransactionAffirmationsStddevPopulationIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_ID_DESC', + ConfidentialTransactionAffirmationsStddevPopulationLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_LEG_ID_ASC', + ConfidentialTransactionAffirmationsStddevPopulationLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_LEG_ID_DESC', + ConfidentialTransactionAffirmationsStddevPopulationPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_PARTY_ASC', + ConfidentialTransactionAffirmationsStddevPopulationPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_PARTY_DESC', + ConfidentialTransactionAffirmationsStddevPopulationProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_PROOFS_ASC', + ConfidentialTransactionAffirmationsStddevPopulationProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_PROOFS_DESC', + ConfidentialTransactionAffirmationsStddevPopulationStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_STATUS_ASC', + ConfidentialTransactionAffirmationsStddevPopulationStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_STATUS_DESC', + ConfidentialTransactionAffirmationsStddevPopulationTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsStddevPopulationTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsStddevSampleAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsStddevSampleAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsStddevSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsStddevSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsStddevSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsStddevSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsStddevSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsStddevSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsStddevSampleIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsStddevSampleIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsStddevSampleIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_ID_ASC', + ConfidentialTransactionAffirmationsStddevSampleIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_ID_DESC', + ConfidentialTransactionAffirmationsStddevSampleLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsStddevSampleLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsStddevSamplePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_PARTY_ASC', + ConfidentialTransactionAffirmationsStddevSamplePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_PARTY_DESC', + ConfidentialTransactionAffirmationsStddevSampleProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_PROOFS_ASC', + ConfidentialTransactionAffirmationsStddevSampleProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_PROOFS_DESC', + ConfidentialTransactionAffirmationsStddevSampleStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_STATUS_ASC', + ConfidentialTransactionAffirmationsStddevSampleStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_STATUS_DESC', + ConfidentialTransactionAffirmationsStddevSampleTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsStddevSampleTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsSumAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsSumAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsSumBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsSumBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsSumCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsSumCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsSumCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsSumCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsSumEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsSumEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsSumIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsSumIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsSumIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_ID_ASC', + ConfidentialTransactionAffirmationsSumIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_ID_DESC', + ConfidentialTransactionAffirmationsSumLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_LEG_ID_ASC', + ConfidentialTransactionAffirmationsSumLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_LEG_ID_DESC', + ConfidentialTransactionAffirmationsSumPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_PARTY_ASC', + ConfidentialTransactionAffirmationsSumPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_PARTY_DESC', + ConfidentialTransactionAffirmationsSumProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_PROOFS_ASC', + ConfidentialTransactionAffirmationsSumProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_PROOFS_DESC', + ConfidentialTransactionAffirmationsSumStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_STATUS_ASC', + ConfidentialTransactionAffirmationsSumStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_STATUS_DESC', + ConfidentialTransactionAffirmationsSumTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsSumTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsSumUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsSumUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsVariancePopulationAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsVariancePopulationAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsVariancePopulationEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsVariancePopulationEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsVariancePopulationIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsVariancePopulationIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsVariancePopulationIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_ID_ASC', + ConfidentialTransactionAffirmationsVariancePopulationIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_ID_DESC', + ConfidentialTransactionAffirmationsVariancePopulationLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_LEG_ID_ASC', + ConfidentialTransactionAffirmationsVariancePopulationLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_LEG_ID_DESC', + ConfidentialTransactionAffirmationsVariancePopulationPartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_PARTY_ASC', + ConfidentialTransactionAffirmationsVariancePopulationPartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_PARTY_DESC', + ConfidentialTransactionAffirmationsVariancePopulationProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_PROOFS_ASC', + ConfidentialTransactionAffirmationsVariancePopulationProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_PROOFS_DESC', + ConfidentialTransactionAffirmationsVariancePopulationStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_STATUS_ASC', + ConfidentialTransactionAffirmationsVariancePopulationStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_STATUS_DESC', + ConfidentialTransactionAffirmationsVariancePopulationTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsVariancePopulationTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsVarianceSampleAccountIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_ACCOUNT_ID_ASC', + ConfidentialTransactionAffirmationsVarianceSampleAccountIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_ACCOUNT_ID_DESC', + ConfidentialTransactionAffirmationsVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialTransactionAffirmationsVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialTransactionAffirmationsVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialTransactionAffirmationsVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialTransactionAffirmationsVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialTransactionAffirmationsVarianceSampleEventIdxAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialTransactionAffirmationsVarianceSampleEventIdxDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialTransactionAffirmationsVarianceSampleIdentityIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + ConfidentialTransactionAffirmationsVarianceSampleIdentityIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + ConfidentialTransactionAffirmationsVarianceSampleIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_ID_ASC', + ConfidentialTransactionAffirmationsVarianceSampleIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_ID_DESC', + ConfidentialTransactionAffirmationsVarianceSampleLegIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_LEG_ID_ASC', + ConfidentialTransactionAffirmationsVarianceSampleLegIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_LEG_ID_DESC', + ConfidentialTransactionAffirmationsVarianceSamplePartyAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_PARTY_ASC', + ConfidentialTransactionAffirmationsVarianceSamplePartyDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_PARTY_DESC', + ConfidentialTransactionAffirmationsVarianceSampleProofsAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_PROOFS_ASC', + ConfidentialTransactionAffirmationsVarianceSampleProofsDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_PROOFS_DESC', + ConfidentialTransactionAffirmationsVarianceSampleStatusAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_STATUS_ASC', + ConfidentialTransactionAffirmationsVarianceSampleStatusDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_STATUS_DESC', + ConfidentialTransactionAffirmationsVarianceSampleTransactionIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + ConfidentialTransactionAffirmationsVarianceSampleTransactionIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + ConfidentialTransactionAffirmationsVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialTransactionAffirmationsVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_TRANSACTION_AFFIRMATIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdAverageBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatorIdAverageBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatorIdAverageCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_CREATED_AT_ASC', + ConfidentialVenuesByCreatorIdAverageCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_CREATED_AT_DESC', + ConfidentialVenuesByCreatorIdAverageCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdAverageCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdAverageCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_CREATOR_ID_ASC', + ConfidentialVenuesByCreatorIdAverageCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_CREATOR_ID_DESC', + ConfidentialVenuesByCreatorIdAverageEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_EVENT_IDX_ASC', + ConfidentialVenuesByCreatorIdAverageEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_EVENT_IDX_DESC', + ConfidentialVenuesByCreatorIdAverageIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_ID_ASC', + ConfidentialVenuesByCreatorIdAverageIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_ID_DESC', + ConfidentialVenuesByCreatorIdAverageUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdAverageUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdAverageVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_VENUE_ID_ASC', + ConfidentialVenuesByCreatorIdAverageVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_AVERAGE_VENUE_ID_DESC', + ConfidentialVenuesByCreatorIdCountAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_COUNT_ASC', + ConfidentialVenuesByCreatorIdCountDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_COUNT_DESC', + ConfidentialVenuesByCreatorIdDistinctCountBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatorIdDistinctCountBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatorIdDistinctCountCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ConfidentialVenuesByCreatorIdDistinctCountCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ConfidentialVenuesByCreatorIdDistinctCountCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdDistinctCountCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdDistinctCountCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + ConfidentialVenuesByCreatorIdDistinctCountCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + ConfidentialVenuesByCreatorIdDistinctCountEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + ConfidentialVenuesByCreatorIdDistinctCountEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + ConfidentialVenuesByCreatorIdDistinctCountIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_ID_ASC', + ConfidentialVenuesByCreatorIdDistinctCountIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_ID_DESC', + ConfidentialVenuesByCreatorIdDistinctCountUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdDistinctCountUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdDistinctCountVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_VENUE_ID_ASC', + ConfidentialVenuesByCreatorIdDistinctCountVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_DISTINCT_COUNT_VENUE_ID_DESC', + ConfidentialVenuesByCreatorIdMaxBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatorIdMaxBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatorIdMaxCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_CREATED_AT_ASC', + ConfidentialVenuesByCreatorIdMaxCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_CREATED_AT_DESC', + ConfidentialVenuesByCreatorIdMaxCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdMaxCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdMaxCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_CREATOR_ID_ASC', + ConfidentialVenuesByCreatorIdMaxCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_CREATOR_ID_DESC', + ConfidentialVenuesByCreatorIdMaxEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_EVENT_IDX_ASC', + ConfidentialVenuesByCreatorIdMaxEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_EVENT_IDX_DESC', + ConfidentialVenuesByCreatorIdMaxIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_ID_ASC', + ConfidentialVenuesByCreatorIdMaxIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_ID_DESC', + ConfidentialVenuesByCreatorIdMaxUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdMaxUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdMaxVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_VENUE_ID_ASC', + ConfidentialVenuesByCreatorIdMaxVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MAX_VENUE_ID_DESC', + ConfidentialVenuesByCreatorIdMinBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatorIdMinBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatorIdMinCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_CREATED_AT_ASC', + ConfidentialVenuesByCreatorIdMinCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_CREATED_AT_DESC', + ConfidentialVenuesByCreatorIdMinCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdMinCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdMinCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_CREATOR_ID_ASC', + ConfidentialVenuesByCreatorIdMinCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_CREATOR_ID_DESC', + ConfidentialVenuesByCreatorIdMinEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_EVENT_IDX_ASC', + ConfidentialVenuesByCreatorIdMinEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_EVENT_IDX_DESC', + ConfidentialVenuesByCreatorIdMinIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_ID_ASC', + ConfidentialVenuesByCreatorIdMinIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_ID_DESC', + ConfidentialVenuesByCreatorIdMinUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdMinUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdMinVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_VENUE_ID_ASC', + ConfidentialVenuesByCreatorIdMinVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_MIN_VENUE_ID_DESC', + ConfidentialVenuesByCreatorIdStddevPopulationBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatorIdStddevPopulationBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatorIdStddevPopulationCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ConfidentialVenuesByCreatorIdStddevPopulationCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ConfidentialVenuesByCreatorIdStddevPopulationCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdStddevPopulationCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdStddevPopulationCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + ConfidentialVenuesByCreatorIdStddevPopulationCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + ConfidentialVenuesByCreatorIdStddevPopulationEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + ConfidentialVenuesByCreatorIdStddevPopulationEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + ConfidentialVenuesByCreatorIdStddevPopulationIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_ID_ASC', + ConfidentialVenuesByCreatorIdStddevPopulationIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_ID_DESC', + ConfidentialVenuesByCreatorIdStddevPopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdStddevPopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdStddevPopulationVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_VENUE_ID_ASC', + ConfidentialVenuesByCreatorIdStddevPopulationVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_POPULATION_VENUE_ID_DESC', + ConfidentialVenuesByCreatorIdStddevSampleBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatorIdStddevSampleBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatorIdStddevSampleCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ConfidentialVenuesByCreatorIdStddevSampleCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ConfidentialVenuesByCreatorIdStddevSampleCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdStddevSampleCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdStddevSampleCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + ConfidentialVenuesByCreatorIdStddevSampleCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + ConfidentialVenuesByCreatorIdStddevSampleEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + ConfidentialVenuesByCreatorIdStddevSampleEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + ConfidentialVenuesByCreatorIdStddevSampleIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_ID_ASC', + ConfidentialVenuesByCreatorIdStddevSampleIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_ID_DESC', + ConfidentialVenuesByCreatorIdStddevSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdStddevSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdStddevSampleVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + ConfidentialVenuesByCreatorIdStddevSampleVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + ConfidentialVenuesByCreatorIdSumBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatorIdSumBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatorIdSumCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_CREATED_AT_ASC', + ConfidentialVenuesByCreatorIdSumCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_CREATED_AT_DESC', + ConfidentialVenuesByCreatorIdSumCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdSumCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdSumCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_CREATOR_ID_ASC', + ConfidentialVenuesByCreatorIdSumCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_CREATOR_ID_DESC', + ConfidentialVenuesByCreatorIdSumEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_EVENT_IDX_ASC', + ConfidentialVenuesByCreatorIdSumEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_EVENT_IDX_DESC', + ConfidentialVenuesByCreatorIdSumIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_ID_ASC', + ConfidentialVenuesByCreatorIdSumIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_ID_DESC', + ConfidentialVenuesByCreatorIdSumUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdSumUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdSumVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_VENUE_ID_ASC', + ConfidentialVenuesByCreatorIdSumVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_SUM_VENUE_ID_DESC', + ConfidentialVenuesByCreatorIdVariancePopulationBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatorIdVariancePopulationBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatorIdVariancePopulationCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ConfidentialVenuesByCreatorIdVariancePopulationCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ConfidentialVenuesByCreatorIdVariancePopulationCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdVariancePopulationCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdVariancePopulationCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + ConfidentialVenuesByCreatorIdVariancePopulationCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + ConfidentialVenuesByCreatorIdVariancePopulationEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + ConfidentialVenuesByCreatorIdVariancePopulationEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + ConfidentialVenuesByCreatorIdVariancePopulationIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_ID_ASC', + ConfidentialVenuesByCreatorIdVariancePopulationIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_ID_DESC', + ConfidentialVenuesByCreatorIdVariancePopulationUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdVariancePopulationUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdVariancePopulationVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + ConfidentialVenuesByCreatorIdVariancePopulationVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + ConfidentialVenuesByCreatorIdVarianceSampleBlockRangeAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ConfidentialVenuesByCreatorIdVarianceSampleBlockRangeDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ConfidentialVenuesByCreatorIdVarianceSampleCreatedAtAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ConfidentialVenuesByCreatorIdVarianceSampleCreatedAtDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ConfidentialVenuesByCreatorIdVarianceSampleCreatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdVarianceSampleCreatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdVarianceSampleCreatorIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + ConfidentialVenuesByCreatorIdVarianceSampleCreatorIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + ConfidentialVenuesByCreatorIdVarianceSampleEventIdxAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ConfidentialVenuesByCreatorIdVarianceSampleEventIdxDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ConfidentialVenuesByCreatorIdVarianceSampleIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_ASC', + ConfidentialVenuesByCreatorIdVarianceSampleIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_DESC', + ConfidentialVenuesByCreatorIdVarianceSampleUpdatedBlockIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ConfidentialVenuesByCreatorIdVarianceSampleUpdatedBlockIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ConfidentialVenuesByCreatorIdVarianceSampleVenueIdAsc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + ConfidentialVenuesByCreatorIdVarianceSampleVenueIdDesc = 'CONFIDENTIAL_VENUES_BY_CREATOR_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + CustomClaimTypesAverageBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_AVERAGE_BLOCK_RANGE_ASC', + CustomClaimTypesAverageBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_AVERAGE_BLOCK_RANGE_DESC', + CustomClaimTypesAverageCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_AVERAGE_CREATED_AT_ASC', + CustomClaimTypesAverageCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_AVERAGE_CREATED_AT_DESC', + CustomClaimTypesAverageCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_AVERAGE_CREATED_BLOCK_ID_ASC', + CustomClaimTypesAverageCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_AVERAGE_CREATED_BLOCK_ID_DESC', + CustomClaimTypesAverageIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_AVERAGE_IDENTITY_ID_ASC', + CustomClaimTypesAverageIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_AVERAGE_IDENTITY_ID_DESC', + CustomClaimTypesAverageIdAsc = 'CUSTOM_CLAIM_TYPES_AVERAGE_ID_ASC', + CustomClaimTypesAverageIdDesc = 'CUSTOM_CLAIM_TYPES_AVERAGE_ID_DESC', + CustomClaimTypesAverageNameAsc = 'CUSTOM_CLAIM_TYPES_AVERAGE_NAME_ASC', + CustomClaimTypesAverageNameDesc = 'CUSTOM_CLAIM_TYPES_AVERAGE_NAME_DESC', + CustomClaimTypesAverageUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_AVERAGE_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesAverageUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_AVERAGE_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesCountAsc = 'CUSTOM_CLAIM_TYPES_COUNT_ASC', + CustomClaimTypesCountDesc = 'CUSTOM_CLAIM_TYPES_COUNT_DESC', + CustomClaimTypesDistinctCountBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + CustomClaimTypesDistinctCountBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + CustomClaimTypesDistinctCountCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_CREATED_AT_ASC', + CustomClaimTypesDistinctCountCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_CREATED_AT_DESC', + CustomClaimTypesDistinctCountCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + CustomClaimTypesDistinctCountCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + CustomClaimTypesDistinctCountIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_IDENTITY_ID_ASC', + CustomClaimTypesDistinctCountIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_IDENTITY_ID_DESC', + CustomClaimTypesDistinctCountIdAsc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_ID_ASC', + CustomClaimTypesDistinctCountIdDesc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_ID_DESC', + CustomClaimTypesDistinctCountNameAsc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_NAME_ASC', + CustomClaimTypesDistinctCountNameDesc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_NAME_DESC', + CustomClaimTypesDistinctCountUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesDistinctCountUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesMaxBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_MAX_BLOCK_RANGE_ASC', + CustomClaimTypesMaxBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_MAX_BLOCK_RANGE_DESC', + CustomClaimTypesMaxCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_MAX_CREATED_AT_ASC', + CustomClaimTypesMaxCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_MAX_CREATED_AT_DESC', + CustomClaimTypesMaxCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_MAX_CREATED_BLOCK_ID_ASC', + CustomClaimTypesMaxCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_MAX_CREATED_BLOCK_ID_DESC', + CustomClaimTypesMaxIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_MAX_IDENTITY_ID_ASC', + CustomClaimTypesMaxIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_MAX_IDENTITY_ID_DESC', + CustomClaimTypesMaxIdAsc = 'CUSTOM_CLAIM_TYPES_MAX_ID_ASC', + CustomClaimTypesMaxIdDesc = 'CUSTOM_CLAIM_TYPES_MAX_ID_DESC', + CustomClaimTypesMaxNameAsc = 'CUSTOM_CLAIM_TYPES_MAX_NAME_ASC', + CustomClaimTypesMaxNameDesc = 'CUSTOM_CLAIM_TYPES_MAX_NAME_DESC', + CustomClaimTypesMaxUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_MAX_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesMaxUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_MAX_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesMinBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_MIN_BLOCK_RANGE_ASC', + CustomClaimTypesMinBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_MIN_BLOCK_RANGE_DESC', + CustomClaimTypesMinCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_MIN_CREATED_AT_ASC', + CustomClaimTypesMinCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_MIN_CREATED_AT_DESC', + CustomClaimTypesMinCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_MIN_CREATED_BLOCK_ID_ASC', + CustomClaimTypesMinCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_MIN_CREATED_BLOCK_ID_DESC', + CustomClaimTypesMinIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_MIN_IDENTITY_ID_ASC', + CustomClaimTypesMinIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_MIN_IDENTITY_ID_DESC', + CustomClaimTypesMinIdAsc = 'CUSTOM_CLAIM_TYPES_MIN_ID_ASC', + CustomClaimTypesMinIdDesc = 'CUSTOM_CLAIM_TYPES_MIN_ID_DESC', + CustomClaimTypesMinNameAsc = 'CUSTOM_CLAIM_TYPES_MIN_NAME_ASC', + CustomClaimTypesMinNameDesc = 'CUSTOM_CLAIM_TYPES_MIN_NAME_DESC', + CustomClaimTypesMinUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_MIN_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesMinUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_MIN_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesStddevPopulationBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + CustomClaimTypesStddevPopulationBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + CustomClaimTypesStddevPopulationCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_CREATED_AT_ASC', + CustomClaimTypesStddevPopulationCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_CREATED_AT_DESC', + CustomClaimTypesStddevPopulationCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + CustomClaimTypesStddevPopulationCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + CustomClaimTypesStddevPopulationIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_IDENTITY_ID_ASC', + CustomClaimTypesStddevPopulationIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_IDENTITY_ID_DESC', + CustomClaimTypesStddevPopulationIdAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_ID_ASC', + CustomClaimTypesStddevPopulationIdDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_ID_DESC', + CustomClaimTypesStddevPopulationNameAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_NAME_ASC', + CustomClaimTypesStddevPopulationNameDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_NAME_DESC', + CustomClaimTypesStddevPopulationUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesStddevPopulationUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesStddevSampleBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + CustomClaimTypesStddevSampleBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + CustomClaimTypesStddevSampleCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_CREATED_AT_ASC', + CustomClaimTypesStddevSampleCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_CREATED_AT_DESC', + CustomClaimTypesStddevSampleCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + CustomClaimTypesStddevSampleCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + CustomClaimTypesStddevSampleIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_IDENTITY_ID_ASC', + CustomClaimTypesStddevSampleIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_IDENTITY_ID_DESC', + CustomClaimTypesStddevSampleIdAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_ID_ASC', + CustomClaimTypesStddevSampleIdDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_ID_DESC', + CustomClaimTypesStddevSampleNameAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_NAME_ASC', + CustomClaimTypesStddevSampleNameDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_NAME_DESC', + CustomClaimTypesStddevSampleUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesStddevSampleUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesSumBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_SUM_BLOCK_RANGE_ASC', + CustomClaimTypesSumBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_SUM_BLOCK_RANGE_DESC', + CustomClaimTypesSumCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_SUM_CREATED_AT_ASC', + CustomClaimTypesSumCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_SUM_CREATED_AT_DESC', + CustomClaimTypesSumCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_SUM_CREATED_BLOCK_ID_ASC', + CustomClaimTypesSumCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_SUM_CREATED_BLOCK_ID_DESC', + CustomClaimTypesSumIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_SUM_IDENTITY_ID_ASC', + CustomClaimTypesSumIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_SUM_IDENTITY_ID_DESC', + CustomClaimTypesSumIdAsc = 'CUSTOM_CLAIM_TYPES_SUM_ID_ASC', + CustomClaimTypesSumIdDesc = 'CUSTOM_CLAIM_TYPES_SUM_ID_DESC', + CustomClaimTypesSumNameAsc = 'CUSTOM_CLAIM_TYPES_SUM_NAME_ASC', + CustomClaimTypesSumNameDesc = 'CUSTOM_CLAIM_TYPES_SUM_NAME_DESC', + CustomClaimTypesSumUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_SUM_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesSumUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_SUM_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesVariancePopulationBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + CustomClaimTypesVariancePopulationBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + CustomClaimTypesVariancePopulationCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_CREATED_AT_ASC', + CustomClaimTypesVariancePopulationCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_CREATED_AT_DESC', + CustomClaimTypesVariancePopulationCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + CustomClaimTypesVariancePopulationCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + CustomClaimTypesVariancePopulationIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_IDENTITY_ID_ASC', + CustomClaimTypesVariancePopulationIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_IDENTITY_ID_DESC', + CustomClaimTypesVariancePopulationIdAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_ID_ASC', + CustomClaimTypesVariancePopulationIdDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_ID_DESC', + CustomClaimTypesVariancePopulationNameAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_NAME_ASC', + CustomClaimTypesVariancePopulationNameDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_NAME_DESC', + CustomClaimTypesVariancePopulationUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesVariancePopulationUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + CustomClaimTypesVarianceSampleBlockRangeAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + CustomClaimTypesVarianceSampleBlockRangeDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + CustomClaimTypesVarianceSampleCreatedAtAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_CREATED_AT_ASC', + CustomClaimTypesVarianceSampleCreatedAtDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_CREATED_AT_DESC', + CustomClaimTypesVarianceSampleCreatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + CustomClaimTypesVarianceSampleCreatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + CustomClaimTypesVarianceSampleIdentityIdAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + CustomClaimTypesVarianceSampleIdentityIdDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + CustomClaimTypesVarianceSampleIdAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_ID_ASC', + CustomClaimTypesVarianceSampleIdDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_ID_DESC', + CustomClaimTypesVarianceSampleNameAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_NAME_ASC', + CustomClaimTypesVarianceSampleNameDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_NAME_DESC', + CustomClaimTypesVarianceSampleUpdatedBlockIdAsc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + CustomClaimTypesVarianceSampleUpdatedBlockIdDesc = 'CUSTOM_CLAIM_TYPES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + DidAsc = 'DID_ASC', + DidDesc = 'DID_DESC', + DistributionsAverageAmountAsc = 'DISTRIBUTIONS_AVERAGE_AMOUNT_ASC', + DistributionsAverageAmountDesc = 'DISTRIBUTIONS_AVERAGE_AMOUNT_DESC', + DistributionsAverageAssetIdAsc = 'DISTRIBUTIONS_AVERAGE_ASSET_ID_ASC', + DistributionsAverageAssetIdDesc = 'DISTRIBUTIONS_AVERAGE_ASSET_ID_DESC', + DistributionsAverageBlockRangeAsc = 'DISTRIBUTIONS_AVERAGE_BLOCK_RANGE_ASC', + DistributionsAverageBlockRangeDesc = 'DISTRIBUTIONS_AVERAGE_BLOCK_RANGE_DESC', + DistributionsAverageCreatedAtAsc = 'DISTRIBUTIONS_AVERAGE_CREATED_AT_ASC', + DistributionsAverageCreatedAtDesc = 'DISTRIBUTIONS_AVERAGE_CREATED_AT_DESC', + DistributionsAverageCreatedBlockIdAsc = 'DISTRIBUTIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + DistributionsAverageCreatedBlockIdDesc = 'DISTRIBUTIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + DistributionsAverageCurrencyAsc = 'DISTRIBUTIONS_AVERAGE_CURRENCY_ASC', + DistributionsAverageCurrencyDesc = 'DISTRIBUTIONS_AVERAGE_CURRENCY_DESC', + DistributionsAverageExpiresAtAsc = 'DISTRIBUTIONS_AVERAGE_EXPIRES_AT_ASC', + DistributionsAverageExpiresAtDesc = 'DISTRIBUTIONS_AVERAGE_EXPIRES_AT_DESC', + DistributionsAverageIdentityIdAsc = 'DISTRIBUTIONS_AVERAGE_IDENTITY_ID_ASC', + DistributionsAverageIdentityIdDesc = 'DISTRIBUTIONS_AVERAGE_IDENTITY_ID_DESC', + DistributionsAverageIdAsc = 'DISTRIBUTIONS_AVERAGE_ID_ASC', + DistributionsAverageIdDesc = 'DISTRIBUTIONS_AVERAGE_ID_DESC', + DistributionsAverageLocalIdAsc = 'DISTRIBUTIONS_AVERAGE_LOCAL_ID_ASC', + DistributionsAverageLocalIdDesc = 'DISTRIBUTIONS_AVERAGE_LOCAL_ID_DESC', + DistributionsAveragePaymentAtAsc = 'DISTRIBUTIONS_AVERAGE_PAYMENT_AT_ASC', + DistributionsAveragePaymentAtDesc = 'DISTRIBUTIONS_AVERAGE_PAYMENT_AT_DESC', + DistributionsAveragePerShareAsc = 'DISTRIBUTIONS_AVERAGE_PER_SHARE_ASC', + DistributionsAveragePerShareDesc = 'DISTRIBUTIONS_AVERAGE_PER_SHARE_DESC', + DistributionsAveragePortfolioIdAsc = 'DISTRIBUTIONS_AVERAGE_PORTFOLIO_ID_ASC', + DistributionsAveragePortfolioIdDesc = 'DISTRIBUTIONS_AVERAGE_PORTFOLIO_ID_DESC', + DistributionsAverageRemainingAsc = 'DISTRIBUTIONS_AVERAGE_REMAINING_ASC', + DistributionsAverageRemainingDesc = 'DISTRIBUTIONS_AVERAGE_REMAINING_DESC', + DistributionsAverageTaxesAsc = 'DISTRIBUTIONS_AVERAGE_TAXES_ASC', + DistributionsAverageTaxesDesc = 'DISTRIBUTIONS_AVERAGE_TAXES_DESC', + DistributionsAverageUpdatedBlockIdAsc = 'DISTRIBUTIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + DistributionsAverageUpdatedBlockIdDesc = 'DISTRIBUTIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + DistributionsCountAsc = 'DISTRIBUTIONS_COUNT_ASC', + DistributionsCountDesc = 'DISTRIBUTIONS_COUNT_DESC', + DistributionsDistinctCountAmountAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_AMOUNT_ASC', + DistributionsDistinctCountAmountDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_AMOUNT_DESC', + DistributionsDistinctCountAssetIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_ASSET_ID_ASC', + DistributionsDistinctCountAssetIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_ASSET_ID_DESC', + DistributionsDistinctCountBlockRangeAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + DistributionsDistinctCountBlockRangeDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + DistributionsDistinctCountCreatedAtAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_AT_ASC', + DistributionsDistinctCountCreatedAtDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_AT_DESC', + DistributionsDistinctCountCreatedBlockIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + DistributionsDistinctCountCreatedBlockIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + DistributionsDistinctCountCurrencyAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_CURRENCY_ASC', + DistributionsDistinctCountCurrencyDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_CURRENCY_DESC', + DistributionsDistinctCountExpiresAtAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_EXPIRES_AT_ASC', + DistributionsDistinctCountExpiresAtDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_EXPIRES_AT_DESC', + DistributionsDistinctCountIdentityIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_IDENTITY_ID_ASC', + DistributionsDistinctCountIdentityIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_IDENTITY_ID_DESC', + DistributionsDistinctCountIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_ID_ASC', + DistributionsDistinctCountIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_ID_DESC', + DistributionsDistinctCountLocalIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_LOCAL_ID_ASC', + DistributionsDistinctCountLocalIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_LOCAL_ID_DESC', + DistributionsDistinctCountPaymentAtAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_PAYMENT_AT_ASC', + DistributionsDistinctCountPaymentAtDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_PAYMENT_AT_DESC', + DistributionsDistinctCountPerShareAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_PER_SHARE_ASC', + DistributionsDistinctCountPerShareDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_PER_SHARE_DESC', + DistributionsDistinctCountPortfolioIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_PORTFOLIO_ID_ASC', + DistributionsDistinctCountPortfolioIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_PORTFOLIO_ID_DESC', + DistributionsDistinctCountRemainingAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_REMAINING_ASC', + DistributionsDistinctCountRemainingDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_REMAINING_DESC', + DistributionsDistinctCountTaxesAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_TAXES_ASC', + DistributionsDistinctCountTaxesDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_TAXES_DESC', + DistributionsDistinctCountUpdatedBlockIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + DistributionsDistinctCountUpdatedBlockIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + DistributionsMaxAmountAsc = 'DISTRIBUTIONS_MAX_AMOUNT_ASC', + DistributionsMaxAmountDesc = 'DISTRIBUTIONS_MAX_AMOUNT_DESC', + DistributionsMaxAssetIdAsc = 'DISTRIBUTIONS_MAX_ASSET_ID_ASC', + DistributionsMaxAssetIdDesc = 'DISTRIBUTIONS_MAX_ASSET_ID_DESC', + DistributionsMaxBlockRangeAsc = 'DISTRIBUTIONS_MAX_BLOCK_RANGE_ASC', + DistributionsMaxBlockRangeDesc = 'DISTRIBUTIONS_MAX_BLOCK_RANGE_DESC', + DistributionsMaxCreatedAtAsc = 'DISTRIBUTIONS_MAX_CREATED_AT_ASC', + DistributionsMaxCreatedAtDesc = 'DISTRIBUTIONS_MAX_CREATED_AT_DESC', + DistributionsMaxCreatedBlockIdAsc = 'DISTRIBUTIONS_MAX_CREATED_BLOCK_ID_ASC', + DistributionsMaxCreatedBlockIdDesc = 'DISTRIBUTIONS_MAX_CREATED_BLOCK_ID_DESC', + DistributionsMaxCurrencyAsc = 'DISTRIBUTIONS_MAX_CURRENCY_ASC', + DistributionsMaxCurrencyDesc = 'DISTRIBUTIONS_MAX_CURRENCY_DESC', + DistributionsMaxExpiresAtAsc = 'DISTRIBUTIONS_MAX_EXPIRES_AT_ASC', + DistributionsMaxExpiresAtDesc = 'DISTRIBUTIONS_MAX_EXPIRES_AT_DESC', + DistributionsMaxIdentityIdAsc = 'DISTRIBUTIONS_MAX_IDENTITY_ID_ASC', + DistributionsMaxIdentityIdDesc = 'DISTRIBUTIONS_MAX_IDENTITY_ID_DESC', + DistributionsMaxIdAsc = 'DISTRIBUTIONS_MAX_ID_ASC', + DistributionsMaxIdDesc = 'DISTRIBUTIONS_MAX_ID_DESC', + DistributionsMaxLocalIdAsc = 'DISTRIBUTIONS_MAX_LOCAL_ID_ASC', + DistributionsMaxLocalIdDesc = 'DISTRIBUTIONS_MAX_LOCAL_ID_DESC', + DistributionsMaxPaymentAtAsc = 'DISTRIBUTIONS_MAX_PAYMENT_AT_ASC', + DistributionsMaxPaymentAtDesc = 'DISTRIBUTIONS_MAX_PAYMENT_AT_DESC', + DistributionsMaxPerShareAsc = 'DISTRIBUTIONS_MAX_PER_SHARE_ASC', + DistributionsMaxPerShareDesc = 'DISTRIBUTIONS_MAX_PER_SHARE_DESC', + DistributionsMaxPortfolioIdAsc = 'DISTRIBUTIONS_MAX_PORTFOLIO_ID_ASC', + DistributionsMaxPortfolioIdDesc = 'DISTRIBUTIONS_MAX_PORTFOLIO_ID_DESC', + DistributionsMaxRemainingAsc = 'DISTRIBUTIONS_MAX_REMAINING_ASC', + DistributionsMaxRemainingDesc = 'DISTRIBUTIONS_MAX_REMAINING_DESC', + DistributionsMaxTaxesAsc = 'DISTRIBUTIONS_MAX_TAXES_ASC', + DistributionsMaxTaxesDesc = 'DISTRIBUTIONS_MAX_TAXES_DESC', + DistributionsMaxUpdatedBlockIdAsc = 'DISTRIBUTIONS_MAX_UPDATED_BLOCK_ID_ASC', + DistributionsMaxUpdatedBlockIdDesc = 'DISTRIBUTIONS_MAX_UPDATED_BLOCK_ID_DESC', + DistributionsMinAmountAsc = 'DISTRIBUTIONS_MIN_AMOUNT_ASC', + DistributionsMinAmountDesc = 'DISTRIBUTIONS_MIN_AMOUNT_DESC', + DistributionsMinAssetIdAsc = 'DISTRIBUTIONS_MIN_ASSET_ID_ASC', + DistributionsMinAssetIdDesc = 'DISTRIBUTIONS_MIN_ASSET_ID_DESC', + DistributionsMinBlockRangeAsc = 'DISTRIBUTIONS_MIN_BLOCK_RANGE_ASC', + DistributionsMinBlockRangeDesc = 'DISTRIBUTIONS_MIN_BLOCK_RANGE_DESC', + DistributionsMinCreatedAtAsc = 'DISTRIBUTIONS_MIN_CREATED_AT_ASC', + DistributionsMinCreatedAtDesc = 'DISTRIBUTIONS_MIN_CREATED_AT_DESC', + DistributionsMinCreatedBlockIdAsc = 'DISTRIBUTIONS_MIN_CREATED_BLOCK_ID_ASC', + DistributionsMinCreatedBlockIdDesc = 'DISTRIBUTIONS_MIN_CREATED_BLOCK_ID_DESC', + DistributionsMinCurrencyAsc = 'DISTRIBUTIONS_MIN_CURRENCY_ASC', + DistributionsMinCurrencyDesc = 'DISTRIBUTIONS_MIN_CURRENCY_DESC', + DistributionsMinExpiresAtAsc = 'DISTRIBUTIONS_MIN_EXPIRES_AT_ASC', + DistributionsMinExpiresAtDesc = 'DISTRIBUTIONS_MIN_EXPIRES_AT_DESC', + DistributionsMinIdentityIdAsc = 'DISTRIBUTIONS_MIN_IDENTITY_ID_ASC', + DistributionsMinIdentityIdDesc = 'DISTRIBUTIONS_MIN_IDENTITY_ID_DESC', + DistributionsMinIdAsc = 'DISTRIBUTIONS_MIN_ID_ASC', + DistributionsMinIdDesc = 'DISTRIBUTIONS_MIN_ID_DESC', + DistributionsMinLocalIdAsc = 'DISTRIBUTIONS_MIN_LOCAL_ID_ASC', + DistributionsMinLocalIdDesc = 'DISTRIBUTIONS_MIN_LOCAL_ID_DESC', + DistributionsMinPaymentAtAsc = 'DISTRIBUTIONS_MIN_PAYMENT_AT_ASC', + DistributionsMinPaymentAtDesc = 'DISTRIBUTIONS_MIN_PAYMENT_AT_DESC', + DistributionsMinPerShareAsc = 'DISTRIBUTIONS_MIN_PER_SHARE_ASC', + DistributionsMinPerShareDesc = 'DISTRIBUTIONS_MIN_PER_SHARE_DESC', + DistributionsMinPortfolioIdAsc = 'DISTRIBUTIONS_MIN_PORTFOLIO_ID_ASC', + DistributionsMinPortfolioIdDesc = 'DISTRIBUTIONS_MIN_PORTFOLIO_ID_DESC', + DistributionsMinRemainingAsc = 'DISTRIBUTIONS_MIN_REMAINING_ASC', + DistributionsMinRemainingDesc = 'DISTRIBUTIONS_MIN_REMAINING_DESC', + DistributionsMinTaxesAsc = 'DISTRIBUTIONS_MIN_TAXES_ASC', + DistributionsMinTaxesDesc = 'DISTRIBUTIONS_MIN_TAXES_DESC', + DistributionsMinUpdatedBlockIdAsc = 'DISTRIBUTIONS_MIN_UPDATED_BLOCK_ID_ASC', + DistributionsMinUpdatedBlockIdDesc = 'DISTRIBUTIONS_MIN_UPDATED_BLOCK_ID_DESC', + DistributionsStddevPopulationAmountAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_AMOUNT_ASC', + DistributionsStddevPopulationAmountDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_AMOUNT_DESC', + DistributionsStddevPopulationAssetIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_ASSET_ID_ASC', + DistributionsStddevPopulationAssetIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_ASSET_ID_DESC', + DistributionsStddevPopulationBlockRangeAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + DistributionsStddevPopulationBlockRangeDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + DistributionsStddevPopulationCreatedAtAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_AT_ASC', + DistributionsStddevPopulationCreatedAtDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_AT_DESC', + DistributionsStddevPopulationCreatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionsStddevPopulationCreatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionsStddevPopulationCurrencyAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_CURRENCY_ASC', + DistributionsStddevPopulationCurrencyDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_CURRENCY_DESC', + DistributionsStddevPopulationExpiresAtAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_EXPIRES_AT_ASC', + DistributionsStddevPopulationExpiresAtDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_EXPIRES_AT_DESC', + DistributionsStddevPopulationIdentityIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_IDENTITY_ID_ASC', + DistributionsStddevPopulationIdentityIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_IDENTITY_ID_DESC', + DistributionsStddevPopulationIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_ID_ASC', + DistributionsStddevPopulationIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_ID_DESC', + DistributionsStddevPopulationLocalIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_LOCAL_ID_ASC', + DistributionsStddevPopulationLocalIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_LOCAL_ID_DESC', + DistributionsStddevPopulationPaymentAtAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_PAYMENT_AT_ASC', + DistributionsStddevPopulationPaymentAtDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_PAYMENT_AT_DESC', + DistributionsStddevPopulationPerShareAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_PER_SHARE_ASC', + DistributionsStddevPopulationPerShareDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_PER_SHARE_DESC', + DistributionsStddevPopulationPortfolioIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_PORTFOLIO_ID_ASC', + DistributionsStddevPopulationPortfolioIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_PORTFOLIO_ID_DESC', + DistributionsStddevPopulationRemainingAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_REMAINING_ASC', + DistributionsStddevPopulationRemainingDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_REMAINING_DESC', + DistributionsStddevPopulationTaxesAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_TAXES_ASC', + DistributionsStddevPopulationTaxesDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_TAXES_DESC', + DistributionsStddevPopulationUpdatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionsStddevPopulationUpdatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionsStddevSampleAmountAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_AMOUNT_ASC', + DistributionsStddevSampleAmountDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_AMOUNT_DESC', + DistributionsStddevSampleAssetIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ASSET_ID_ASC', + DistributionsStddevSampleAssetIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ASSET_ID_DESC', + DistributionsStddevSampleBlockRangeAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + DistributionsStddevSampleBlockRangeDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + DistributionsStddevSampleCreatedAtAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + DistributionsStddevSampleCreatedAtDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + DistributionsStddevSampleCreatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionsStddevSampleCreatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionsStddevSampleCurrencyAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CURRENCY_ASC', + DistributionsStddevSampleCurrencyDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CURRENCY_DESC', + DistributionsStddevSampleExpiresAtAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_EXPIRES_AT_ASC', + DistributionsStddevSampleExpiresAtDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_EXPIRES_AT_DESC', + DistributionsStddevSampleIdentityIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + DistributionsStddevSampleIdentityIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + DistributionsStddevSampleIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ID_ASC', + DistributionsStddevSampleIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ID_DESC', + DistributionsStddevSampleLocalIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_LOCAL_ID_ASC', + DistributionsStddevSampleLocalIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_LOCAL_ID_DESC', + DistributionsStddevSamplePaymentAtAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PAYMENT_AT_ASC', + DistributionsStddevSamplePaymentAtDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PAYMENT_AT_DESC', + DistributionsStddevSamplePerShareAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PER_SHARE_ASC', + DistributionsStddevSamplePerShareDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PER_SHARE_DESC', + DistributionsStddevSamplePortfolioIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PORTFOLIO_ID_ASC', + DistributionsStddevSamplePortfolioIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PORTFOLIO_ID_DESC', + DistributionsStddevSampleRemainingAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_REMAINING_ASC', + DistributionsStddevSampleRemainingDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_REMAINING_DESC', + DistributionsStddevSampleTaxesAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_TAXES_ASC', + DistributionsStddevSampleTaxesDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_TAXES_DESC', + DistributionsStddevSampleUpdatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionsStddevSampleUpdatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionsSumAmountAsc = 'DISTRIBUTIONS_SUM_AMOUNT_ASC', + DistributionsSumAmountDesc = 'DISTRIBUTIONS_SUM_AMOUNT_DESC', + DistributionsSumAssetIdAsc = 'DISTRIBUTIONS_SUM_ASSET_ID_ASC', + DistributionsSumAssetIdDesc = 'DISTRIBUTIONS_SUM_ASSET_ID_DESC', + DistributionsSumBlockRangeAsc = 'DISTRIBUTIONS_SUM_BLOCK_RANGE_ASC', + DistributionsSumBlockRangeDesc = 'DISTRIBUTIONS_SUM_BLOCK_RANGE_DESC', + DistributionsSumCreatedAtAsc = 'DISTRIBUTIONS_SUM_CREATED_AT_ASC', + DistributionsSumCreatedAtDesc = 'DISTRIBUTIONS_SUM_CREATED_AT_DESC', + DistributionsSumCreatedBlockIdAsc = 'DISTRIBUTIONS_SUM_CREATED_BLOCK_ID_ASC', + DistributionsSumCreatedBlockIdDesc = 'DISTRIBUTIONS_SUM_CREATED_BLOCK_ID_DESC', + DistributionsSumCurrencyAsc = 'DISTRIBUTIONS_SUM_CURRENCY_ASC', + DistributionsSumCurrencyDesc = 'DISTRIBUTIONS_SUM_CURRENCY_DESC', + DistributionsSumExpiresAtAsc = 'DISTRIBUTIONS_SUM_EXPIRES_AT_ASC', + DistributionsSumExpiresAtDesc = 'DISTRIBUTIONS_SUM_EXPIRES_AT_DESC', + DistributionsSumIdentityIdAsc = 'DISTRIBUTIONS_SUM_IDENTITY_ID_ASC', + DistributionsSumIdentityIdDesc = 'DISTRIBUTIONS_SUM_IDENTITY_ID_DESC', + DistributionsSumIdAsc = 'DISTRIBUTIONS_SUM_ID_ASC', + DistributionsSumIdDesc = 'DISTRIBUTIONS_SUM_ID_DESC', + DistributionsSumLocalIdAsc = 'DISTRIBUTIONS_SUM_LOCAL_ID_ASC', + DistributionsSumLocalIdDesc = 'DISTRIBUTIONS_SUM_LOCAL_ID_DESC', + DistributionsSumPaymentAtAsc = 'DISTRIBUTIONS_SUM_PAYMENT_AT_ASC', + DistributionsSumPaymentAtDesc = 'DISTRIBUTIONS_SUM_PAYMENT_AT_DESC', + DistributionsSumPerShareAsc = 'DISTRIBUTIONS_SUM_PER_SHARE_ASC', + DistributionsSumPerShareDesc = 'DISTRIBUTIONS_SUM_PER_SHARE_DESC', + DistributionsSumPortfolioIdAsc = 'DISTRIBUTIONS_SUM_PORTFOLIO_ID_ASC', + DistributionsSumPortfolioIdDesc = 'DISTRIBUTIONS_SUM_PORTFOLIO_ID_DESC', + DistributionsSumRemainingAsc = 'DISTRIBUTIONS_SUM_REMAINING_ASC', + DistributionsSumRemainingDesc = 'DISTRIBUTIONS_SUM_REMAINING_DESC', + DistributionsSumTaxesAsc = 'DISTRIBUTIONS_SUM_TAXES_ASC', + DistributionsSumTaxesDesc = 'DISTRIBUTIONS_SUM_TAXES_DESC', + DistributionsSumUpdatedBlockIdAsc = 'DISTRIBUTIONS_SUM_UPDATED_BLOCK_ID_ASC', + DistributionsSumUpdatedBlockIdDesc = 'DISTRIBUTIONS_SUM_UPDATED_BLOCK_ID_DESC', + DistributionsVariancePopulationAmountAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_AMOUNT_ASC', + DistributionsVariancePopulationAmountDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_AMOUNT_DESC', + DistributionsVariancePopulationAssetIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ASSET_ID_ASC', + DistributionsVariancePopulationAssetIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ASSET_ID_DESC', + DistributionsVariancePopulationBlockRangeAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + DistributionsVariancePopulationBlockRangeDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + DistributionsVariancePopulationCreatedAtAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + DistributionsVariancePopulationCreatedAtDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + DistributionsVariancePopulationCreatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionsVariancePopulationCreatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionsVariancePopulationCurrencyAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CURRENCY_ASC', + DistributionsVariancePopulationCurrencyDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CURRENCY_DESC', + DistributionsVariancePopulationExpiresAtAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_EXPIRES_AT_ASC', + DistributionsVariancePopulationExpiresAtDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_EXPIRES_AT_DESC', + DistributionsVariancePopulationIdentityIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + DistributionsVariancePopulationIdentityIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + DistributionsVariancePopulationIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ID_ASC', + DistributionsVariancePopulationIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ID_DESC', + DistributionsVariancePopulationLocalIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_LOCAL_ID_ASC', + DistributionsVariancePopulationLocalIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_LOCAL_ID_DESC', + DistributionsVariancePopulationPaymentAtAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PAYMENT_AT_ASC', + DistributionsVariancePopulationPaymentAtDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PAYMENT_AT_DESC', + DistributionsVariancePopulationPerShareAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PER_SHARE_ASC', + DistributionsVariancePopulationPerShareDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PER_SHARE_DESC', + DistributionsVariancePopulationPortfolioIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PORTFOLIO_ID_ASC', + DistributionsVariancePopulationPortfolioIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PORTFOLIO_ID_DESC', + DistributionsVariancePopulationRemainingAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_REMAINING_ASC', + DistributionsVariancePopulationRemainingDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_REMAINING_DESC', + DistributionsVariancePopulationTaxesAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_TAXES_ASC', + DistributionsVariancePopulationTaxesDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_TAXES_DESC', + DistributionsVariancePopulationUpdatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionsVariancePopulationUpdatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionsVarianceSampleAmountAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_AMOUNT_ASC', + DistributionsVarianceSampleAmountDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_AMOUNT_DESC', + DistributionsVarianceSampleAssetIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ASSET_ID_ASC', + DistributionsVarianceSampleAssetIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ASSET_ID_DESC', + DistributionsVarianceSampleBlockRangeAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + DistributionsVarianceSampleBlockRangeDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + DistributionsVarianceSampleCreatedAtAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + DistributionsVarianceSampleCreatedAtDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + DistributionsVarianceSampleCreatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionsVarianceSampleCreatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionsVarianceSampleCurrencyAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CURRENCY_ASC', + DistributionsVarianceSampleCurrencyDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CURRENCY_DESC', + DistributionsVarianceSampleExpiresAtAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_EXPIRES_AT_ASC', + DistributionsVarianceSampleExpiresAtDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_EXPIRES_AT_DESC', + DistributionsVarianceSampleIdentityIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + DistributionsVarianceSampleIdentityIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + DistributionsVarianceSampleIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ID_ASC', + DistributionsVarianceSampleIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ID_DESC', + DistributionsVarianceSampleLocalIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_LOCAL_ID_ASC', + DistributionsVarianceSampleLocalIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_LOCAL_ID_DESC', + DistributionsVarianceSamplePaymentAtAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PAYMENT_AT_ASC', + DistributionsVarianceSamplePaymentAtDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PAYMENT_AT_DESC', + DistributionsVarianceSamplePerShareAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PER_SHARE_ASC', + DistributionsVarianceSamplePerShareDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PER_SHARE_DESC', + DistributionsVarianceSamplePortfolioIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PORTFOLIO_ID_ASC', + DistributionsVarianceSamplePortfolioIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PORTFOLIO_ID_DESC', + DistributionsVarianceSampleRemainingAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_REMAINING_ASC', + DistributionsVarianceSampleRemainingDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_REMAINING_DESC', + DistributionsVarianceSampleTaxesAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_TAXES_ASC', + DistributionsVarianceSampleTaxesDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_TAXES_DESC', + DistributionsVarianceSampleUpdatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionsVarianceSampleUpdatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdAverageAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByTargetIdAverageAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByTargetIdAverageAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_AMOUNT_ASC', + DistributionPaymentsByTargetIdAverageAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_AMOUNT_DESC', + DistributionPaymentsByTargetIdAverageBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_BLOCK_RANGE_ASC', + DistributionPaymentsByTargetIdAverageBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_BLOCK_RANGE_DESC', + DistributionPaymentsByTargetIdAverageCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_CREATED_AT_ASC', + DistributionPaymentsByTargetIdAverageCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_CREATED_AT_DESC', + DistributionPaymentsByTargetIdAverageCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdAverageCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdAverageDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_DATETIME_ASC', + DistributionPaymentsByTargetIdAverageDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_DATETIME_DESC', + DistributionPaymentsByTargetIdAverageDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_DISTRIBUTION_ID_ASC', + DistributionPaymentsByTargetIdAverageDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_DISTRIBUTION_ID_DESC', + DistributionPaymentsByTargetIdAverageEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_EVENT_ID_ASC', + DistributionPaymentsByTargetIdAverageEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_EVENT_ID_DESC', + DistributionPaymentsByTargetIdAverageIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_ID_ASC', + DistributionPaymentsByTargetIdAverageIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_ID_DESC', + DistributionPaymentsByTargetIdAverageReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_RECLAIMED_ASC', + DistributionPaymentsByTargetIdAverageReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_RECLAIMED_DESC', + DistributionPaymentsByTargetIdAverageTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_TARGET_ID_ASC', + DistributionPaymentsByTargetIdAverageTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_TARGET_ID_DESC', + DistributionPaymentsByTargetIdAverageTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_TAX_ASC', + DistributionPaymentsByTargetIdAverageTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_TAX_DESC', + DistributionPaymentsByTargetIdAverageUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdAverageUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdCountAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_COUNT_ASC', + DistributionPaymentsByTargetIdCountDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_COUNT_DESC', + DistributionPaymentsByTargetIdDistinctCountAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByTargetIdDistinctCountAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByTargetIdDistinctCountAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_AMOUNT_ASC', + DistributionPaymentsByTargetIdDistinctCountAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_AMOUNT_DESC', + DistributionPaymentsByTargetIdDistinctCountBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + DistributionPaymentsByTargetIdDistinctCountBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + DistributionPaymentsByTargetIdDistinctCountCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_CREATED_AT_ASC', + DistributionPaymentsByTargetIdDistinctCountCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_CREATED_AT_DESC', + DistributionPaymentsByTargetIdDistinctCountCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdDistinctCountCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdDistinctCountDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_DATETIME_ASC', + DistributionPaymentsByTargetIdDistinctCountDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_DATETIME_DESC', + DistributionPaymentsByTargetIdDistinctCountDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_DISTRIBUTION_ID_ASC', + DistributionPaymentsByTargetIdDistinctCountDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_DISTRIBUTION_ID_DESC', + DistributionPaymentsByTargetIdDistinctCountEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_EVENT_ID_ASC', + DistributionPaymentsByTargetIdDistinctCountEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_EVENT_ID_DESC', + DistributionPaymentsByTargetIdDistinctCountIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_ID_ASC', + DistributionPaymentsByTargetIdDistinctCountIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_ID_DESC', + DistributionPaymentsByTargetIdDistinctCountReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_RECLAIMED_ASC', + DistributionPaymentsByTargetIdDistinctCountReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_RECLAIMED_DESC', + DistributionPaymentsByTargetIdDistinctCountTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_TARGET_ID_ASC', + DistributionPaymentsByTargetIdDistinctCountTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_TARGET_ID_DESC', + DistributionPaymentsByTargetIdDistinctCountTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_TAX_ASC', + DistributionPaymentsByTargetIdDistinctCountTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_TAX_DESC', + DistributionPaymentsByTargetIdDistinctCountUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdDistinctCountUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdMaxAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByTargetIdMaxAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByTargetIdMaxAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_AMOUNT_ASC', + DistributionPaymentsByTargetIdMaxAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_AMOUNT_DESC', + DistributionPaymentsByTargetIdMaxBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_BLOCK_RANGE_ASC', + DistributionPaymentsByTargetIdMaxBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_BLOCK_RANGE_DESC', + DistributionPaymentsByTargetIdMaxCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_CREATED_AT_ASC', + DistributionPaymentsByTargetIdMaxCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_CREATED_AT_DESC', + DistributionPaymentsByTargetIdMaxCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdMaxCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdMaxDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_DATETIME_ASC', + DistributionPaymentsByTargetIdMaxDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_DATETIME_DESC', + DistributionPaymentsByTargetIdMaxDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_DISTRIBUTION_ID_ASC', + DistributionPaymentsByTargetIdMaxDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_DISTRIBUTION_ID_DESC', + DistributionPaymentsByTargetIdMaxEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_EVENT_ID_ASC', + DistributionPaymentsByTargetIdMaxEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_EVENT_ID_DESC', + DistributionPaymentsByTargetIdMaxIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_ID_ASC', + DistributionPaymentsByTargetIdMaxIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_ID_DESC', + DistributionPaymentsByTargetIdMaxReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_RECLAIMED_ASC', + DistributionPaymentsByTargetIdMaxReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_RECLAIMED_DESC', + DistributionPaymentsByTargetIdMaxTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_TARGET_ID_ASC', + DistributionPaymentsByTargetIdMaxTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_TARGET_ID_DESC', + DistributionPaymentsByTargetIdMaxTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_TAX_ASC', + DistributionPaymentsByTargetIdMaxTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_TAX_DESC', + DistributionPaymentsByTargetIdMaxUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdMaxUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MAX_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdMinAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByTargetIdMinAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByTargetIdMinAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_AMOUNT_ASC', + DistributionPaymentsByTargetIdMinAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_AMOUNT_DESC', + DistributionPaymentsByTargetIdMinBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_BLOCK_RANGE_ASC', + DistributionPaymentsByTargetIdMinBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_BLOCK_RANGE_DESC', + DistributionPaymentsByTargetIdMinCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_CREATED_AT_ASC', + DistributionPaymentsByTargetIdMinCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_CREATED_AT_DESC', + DistributionPaymentsByTargetIdMinCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdMinCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdMinDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_DATETIME_ASC', + DistributionPaymentsByTargetIdMinDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_DATETIME_DESC', + DistributionPaymentsByTargetIdMinDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_DISTRIBUTION_ID_ASC', + DistributionPaymentsByTargetIdMinDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_DISTRIBUTION_ID_DESC', + DistributionPaymentsByTargetIdMinEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_EVENT_ID_ASC', + DistributionPaymentsByTargetIdMinEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_EVENT_ID_DESC', + DistributionPaymentsByTargetIdMinIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_ID_ASC', + DistributionPaymentsByTargetIdMinIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_ID_DESC', + DistributionPaymentsByTargetIdMinReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_RECLAIMED_ASC', + DistributionPaymentsByTargetIdMinReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_RECLAIMED_DESC', + DistributionPaymentsByTargetIdMinTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_TARGET_ID_ASC', + DistributionPaymentsByTargetIdMinTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_TARGET_ID_DESC', + DistributionPaymentsByTargetIdMinTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_TAX_ASC', + DistributionPaymentsByTargetIdMinTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_TAX_DESC', + DistributionPaymentsByTargetIdMinUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdMinUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_MIN_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdStddevPopulationAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByTargetIdStddevPopulationAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByTargetIdStddevPopulationAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_AMOUNT_ASC', + DistributionPaymentsByTargetIdStddevPopulationAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_AMOUNT_DESC', + DistributionPaymentsByTargetIdStddevPopulationBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + DistributionPaymentsByTargetIdStddevPopulationBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + DistributionPaymentsByTargetIdStddevPopulationCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_CREATED_AT_ASC', + DistributionPaymentsByTargetIdStddevPopulationCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_CREATED_AT_DESC', + DistributionPaymentsByTargetIdStddevPopulationCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdStddevPopulationCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdStddevPopulationDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_DATETIME_ASC', + DistributionPaymentsByTargetIdStddevPopulationDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_DATETIME_DESC', + DistributionPaymentsByTargetIdStddevPopulationDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_DISTRIBUTION_ID_ASC', + DistributionPaymentsByTargetIdStddevPopulationDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_DISTRIBUTION_ID_DESC', + DistributionPaymentsByTargetIdStddevPopulationEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_EVENT_ID_ASC', + DistributionPaymentsByTargetIdStddevPopulationEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_EVENT_ID_DESC', + DistributionPaymentsByTargetIdStddevPopulationIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_ID_ASC', + DistributionPaymentsByTargetIdStddevPopulationIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_ID_DESC', + DistributionPaymentsByTargetIdStddevPopulationReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_RECLAIMED_ASC', + DistributionPaymentsByTargetIdStddevPopulationReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_RECLAIMED_DESC', + DistributionPaymentsByTargetIdStddevPopulationTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_TARGET_ID_ASC', + DistributionPaymentsByTargetIdStddevPopulationTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_TARGET_ID_DESC', + DistributionPaymentsByTargetIdStddevPopulationTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_TAX_ASC', + DistributionPaymentsByTargetIdStddevPopulationTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_TAX_DESC', + DistributionPaymentsByTargetIdStddevPopulationUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdStddevPopulationUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdStddevSampleAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByTargetIdStddevSampleAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByTargetIdStddevSampleAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_AMOUNT_ASC', + DistributionPaymentsByTargetIdStddevSampleAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_AMOUNT_DESC', + DistributionPaymentsByTargetIdStddevSampleBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + DistributionPaymentsByTargetIdStddevSampleBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + DistributionPaymentsByTargetIdStddevSampleCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + DistributionPaymentsByTargetIdStddevSampleCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + DistributionPaymentsByTargetIdStddevSampleCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdStddevSampleCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdStddevSampleDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_DATETIME_ASC', + DistributionPaymentsByTargetIdStddevSampleDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_DATETIME_DESC', + DistributionPaymentsByTargetIdStddevSampleDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_DISTRIBUTION_ID_ASC', + DistributionPaymentsByTargetIdStddevSampleDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_DISTRIBUTION_ID_DESC', + DistributionPaymentsByTargetIdStddevSampleEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + DistributionPaymentsByTargetIdStddevSampleEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + DistributionPaymentsByTargetIdStddevSampleIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_ID_ASC', + DistributionPaymentsByTargetIdStddevSampleIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_ID_DESC', + DistributionPaymentsByTargetIdStddevSampleReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_RECLAIMED_ASC', + DistributionPaymentsByTargetIdStddevSampleReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_RECLAIMED_DESC', + DistributionPaymentsByTargetIdStddevSampleTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_TARGET_ID_ASC', + DistributionPaymentsByTargetIdStddevSampleTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_TARGET_ID_DESC', + DistributionPaymentsByTargetIdStddevSampleTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_TAX_ASC', + DistributionPaymentsByTargetIdStddevSampleTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_TAX_DESC', + DistributionPaymentsByTargetIdStddevSampleUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdStddevSampleUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdSumAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByTargetIdSumAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByTargetIdSumAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_AMOUNT_ASC', + DistributionPaymentsByTargetIdSumAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_AMOUNT_DESC', + DistributionPaymentsByTargetIdSumBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_BLOCK_RANGE_ASC', + DistributionPaymentsByTargetIdSumBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_BLOCK_RANGE_DESC', + DistributionPaymentsByTargetIdSumCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_CREATED_AT_ASC', + DistributionPaymentsByTargetIdSumCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_CREATED_AT_DESC', + DistributionPaymentsByTargetIdSumCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdSumCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdSumDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_DATETIME_ASC', + DistributionPaymentsByTargetIdSumDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_DATETIME_DESC', + DistributionPaymentsByTargetIdSumDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_DISTRIBUTION_ID_ASC', + DistributionPaymentsByTargetIdSumDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_DISTRIBUTION_ID_DESC', + DistributionPaymentsByTargetIdSumEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_EVENT_ID_ASC', + DistributionPaymentsByTargetIdSumEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_EVENT_ID_DESC', + DistributionPaymentsByTargetIdSumIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_ID_ASC', + DistributionPaymentsByTargetIdSumIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_ID_DESC', + DistributionPaymentsByTargetIdSumReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_RECLAIMED_ASC', + DistributionPaymentsByTargetIdSumReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_RECLAIMED_DESC', + DistributionPaymentsByTargetIdSumTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_TARGET_ID_ASC', + DistributionPaymentsByTargetIdSumTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_TARGET_ID_DESC', + DistributionPaymentsByTargetIdSumTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_TAX_ASC', + DistributionPaymentsByTargetIdSumTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_TAX_DESC', + DistributionPaymentsByTargetIdSumUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdSumUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_SUM_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdVariancePopulationAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByTargetIdVariancePopulationAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByTargetIdVariancePopulationAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_AMOUNT_ASC', + DistributionPaymentsByTargetIdVariancePopulationAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_AMOUNT_DESC', + DistributionPaymentsByTargetIdVariancePopulationBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + DistributionPaymentsByTargetIdVariancePopulationBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + DistributionPaymentsByTargetIdVariancePopulationCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + DistributionPaymentsByTargetIdVariancePopulationCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + DistributionPaymentsByTargetIdVariancePopulationCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdVariancePopulationCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdVariancePopulationDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_DATETIME_ASC', + DistributionPaymentsByTargetIdVariancePopulationDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_DATETIME_DESC', + DistributionPaymentsByTargetIdVariancePopulationDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_DISTRIBUTION_ID_ASC', + DistributionPaymentsByTargetIdVariancePopulationDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_DISTRIBUTION_ID_DESC', + DistributionPaymentsByTargetIdVariancePopulationEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + DistributionPaymentsByTargetIdVariancePopulationEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + DistributionPaymentsByTargetIdVariancePopulationIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_ID_ASC', + DistributionPaymentsByTargetIdVariancePopulationIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_ID_DESC', + DistributionPaymentsByTargetIdVariancePopulationReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_RECLAIMED_ASC', + DistributionPaymentsByTargetIdVariancePopulationReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_RECLAIMED_DESC', + DistributionPaymentsByTargetIdVariancePopulationTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_TARGET_ID_ASC', + DistributionPaymentsByTargetIdVariancePopulationTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_TARGET_ID_DESC', + DistributionPaymentsByTargetIdVariancePopulationTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_TAX_ASC', + DistributionPaymentsByTargetIdVariancePopulationTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_TAX_DESC', + DistributionPaymentsByTargetIdVariancePopulationUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdVariancePopulationUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdVarianceSampleAmountAfterTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_AMOUNT_AFTER_TAX_ASC', + DistributionPaymentsByTargetIdVarianceSampleAmountAfterTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_AMOUNT_AFTER_TAX_DESC', + DistributionPaymentsByTargetIdVarianceSampleAmountAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + DistributionPaymentsByTargetIdVarianceSampleAmountDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + DistributionPaymentsByTargetIdVarianceSampleBlockRangeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + DistributionPaymentsByTargetIdVarianceSampleBlockRangeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + DistributionPaymentsByTargetIdVarianceSampleCreatedAtAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + DistributionPaymentsByTargetIdVarianceSampleCreatedAtDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + DistributionPaymentsByTargetIdVarianceSampleCreatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdVarianceSampleCreatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionPaymentsByTargetIdVarianceSampleDatetimeAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_DATETIME_ASC', + DistributionPaymentsByTargetIdVarianceSampleDatetimeDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_DATETIME_DESC', + DistributionPaymentsByTargetIdVarianceSampleDistributionIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_DISTRIBUTION_ID_ASC', + DistributionPaymentsByTargetIdVarianceSampleDistributionIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_DISTRIBUTION_ID_DESC', + DistributionPaymentsByTargetIdVarianceSampleEventIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + DistributionPaymentsByTargetIdVarianceSampleEventIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + DistributionPaymentsByTargetIdVarianceSampleIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_ID_ASC', + DistributionPaymentsByTargetIdVarianceSampleIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_ID_DESC', + DistributionPaymentsByTargetIdVarianceSampleReclaimedAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_RECLAIMED_ASC', + DistributionPaymentsByTargetIdVarianceSampleReclaimedDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_RECLAIMED_DESC', + DistributionPaymentsByTargetIdVarianceSampleTargetIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_TARGET_ID_ASC', + DistributionPaymentsByTargetIdVarianceSampleTargetIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_TARGET_ID_DESC', + DistributionPaymentsByTargetIdVarianceSampleTaxAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_TAX_ASC', + DistributionPaymentsByTargetIdVarianceSampleTaxDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_TAX_DESC', + DistributionPaymentsByTargetIdVarianceSampleUpdatedBlockIdAsc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionPaymentsByTargetIdVarianceSampleUpdatedBlockIdDesc = 'DISTRIBUTION_PAYMENTS_BY_TARGET_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + EventIdAsc = 'EVENT_ID_ASC', + EventIdDesc = 'EVENT_ID_DESC', + HeldAssetsAverageAmountAsc = 'HELD_ASSETS_AVERAGE_AMOUNT_ASC', + HeldAssetsAverageAmountDesc = 'HELD_ASSETS_AVERAGE_AMOUNT_DESC', + HeldAssetsAverageAssetIdAsc = 'HELD_ASSETS_AVERAGE_ASSET_ID_ASC', + HeldAssetsAverageAssetIdDesc = 'HELD_ASSETS_AVERAGE_ASSET_ID_DESC', + HeldAssetsAverageBlockRangeAsc = 'HELD_ASSETS_AVERAGE_BLOCK_RANGE_ASC', + HeldAssetsAverageBlockRangeDesc = 'HELD_ASSETS_AVERAGE_BLOCK_RANGE_DESC', + HeldAssetsAverageCreatedAtAsc = 'HELD_ASSETS_AVERAGE_CREATED_AT_ASC', + HeldAssetsAverageCreatedAtDesc = 'HELD_ASSETS_AVERAGE_CREATED_AT_DESC', + HeldAssetsAverageCreatedBlockIdAsc = 'HELD_ASSETS_AVERAGE_CREATED_BLOCK_ID_ASC', + HeldAssetsAverageCreatedBlockIdDesc = 'HELD_ASSETS_AVERAGE_CREATED_BLOCK_ID_DESC', + HeldAssetsAverageIdentityIdAsc = 'HELD_ASSETS_AVERAGE_IDENTITY_ID_ASC', + HeldAssetsAverageIdentityIdDesc = 'HELD_ASSETS_AVERAGE_IDENTITY_ID_DESC', + HeldAssetsAverageIdAsc = 'HELD_ASSETS_AVERAGE_ID_ASC', + HeldAssetsAverageIdDesc = 'HELD_ASSETS_AVERAGE_ID_DESC', + HeldAssetsAverageUpdatedBlockIdAsc = 'HELD_ASSETS_AVERAGE_UPDATED_BLOCK_ID_ASC', + HeldAssetsAverageUpdatedBlockIdDesc = 'HELD_ASSETS_AVERAGE_UPDATED_BLOCK_ID_DESC', + HeldAssetsCountAsc = 'HELD_ASSETS_COUNT_ASC', + HeldAssetsCountDesc = 'HELD_ASSETS_COUNT_DESC', + HeldAssetsDistinctCountAmountAsc = 'HELD_ASSETS_DISTINCT_COUNT_AMOUNT_ASC', + HeldAssetsDistinctCountAmountDesc = 'HELD_ASSETS_DISTINCT_COUNT_AMOUNT_DESC', + HeldAssetsDistinctCountAssetIdAsc = 'HELD_ASSETS_DISTINCT_COUNT_ASSET_ID_ASC', + HeldAssetsDistinctCountAssetIdDesc = 'HELD_ASSETS_DISTINCT_COUNT_ASSET_ID_DESC', + HeldAssetsDistinctCountBlockRangeAsc = 'HELD_ASSETS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + HeldAssetsDistinctCountBlockRangeDesc = 'HELD_ASSETS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + HeldAssetsDistinctCountCreatedAtAsc = 'HELD_ASSETS_DISTINCT_COUNT_CREATED_AT_ASC', + HeldAssetsDistinctCountCreatedAtDesc = 'HELD_ASSETS_DISTINCT_COUNT_CREATED_AT_DESC', + HeldAssetsDistinctCountCreatedBlockIdAsc = 'HELD_ASSETS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + HeldAssetsDistinctCountCreatedBlockIdDesc = 'HELD_ASSETS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + HeldAssetsDistinctCountIdentityIdAsc = 'HELD_ASSETS_DISTINCT_COUNT_IDENTITY_ID_ASC', + HeldAssetsDistinctCountIdentityIdDesc = 'HELD_ASSETS_DISTINCT_COUNT_IDENTITY_ID_DESC', + HeldAssetsDistinctCountIdAsc = 'HELD_ASSETS_DISTINCT_COUNT_ID_ASC', + HeldAssetsDistinctCountIdDesc = 'HELD_ASSETS_DISTINCT_COUNT_ID_DESC', + HeldAssetsDistinctCountUpdatedBlockIdAsc = 'HELD_ASSETS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + HeldAssetsDistinctCountUpdatedBlockIdDesc = 'HELD_ASSETS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + HeldAssetsMaxAmountAsc = 'HELD_ASSETS_MAX_AMOUNT_ASC', + HeldAssetsMaxAmountDesc = 'HELD_ASSETS_MAX_AMOUNT_DESC', + HeldAssetsMaxAssetIdAsc = 'HELD_ASSETS_MAX_ASSET_ID_ASC', + HeldAssetsMaxAssetIdDesc = 'HELD_ASSETS_MAX_ASSET_ID_DESC', + HeldAssetsMaxBlockRangeAsc = 'HELD_ASSETS_MAX_BLOCK_RANGE_ASC', + HeldAssetsMaxBlockRangeDesc = 'HELD_ASSETS_MAX_BLOCK_RANGE_DESC', + HeldAssetsMaxCreatedAtAsc = 'HELD_ASSETS_MAX_CREATED_AT_ASC', + HeldAssetsMaxCreatedAtDesc = 'HELD_ASSETS_MAX_CREATED_AT_DESC', + HeldAssetsMaxCreatedBlockIdAsc = 'HELD_ASSETS_MAX_CREATED_BLOCK_ID_ASC', + HeldAssetsMaxCreatedBlockIdDesc = 'HELD_ASSETS_MAX_CREATED_BLOCK_ID_DESC', + HeldAssetsMaxIdentityIdAsc = 'HELD_ASSETS_MAX_IDENTITY_ID_ASC', + HeldAssetsMaxIdentityIdDesc = 'HELD_ASSETS_MAX_IDENTITY_ID_DESC', + HeldAssetsMaxIdAsc = 'HELD_ASSETS_MAX_ID_ASC', + HeldAssetsMaxIdDesc = 'HELD_ASSETS_MAX_ID_DESC', + HeldAssetsMaxUpdatedBlockIdAsc = 'HELD_ASSETS_MAX_UPDATED_BLOCK_ID_ASC', + HeldAssetsMaxUpdatedBlockIdDesc = 'HELD_ASSETS_MAX_UPDATED_BLOCK_ID_DESC', + HeldAssetsMinAmountAsc = 'HELD_ASSETS_MIN_AMOUNT_ASC', + HeldAssetsMinAmountDesc = 'HELD_ASSETS_MIN_AMOUNT_DESC', + HeldAssetsMinAssetIdAsc = 'HELD_ASSETS_MIN_ASSET_ID_ASC', + HeldAssetsMinAssetIdDesc = 'HELD_ASSETS_MIN_ASSET_ID_DESC', + HeldAssetsMinBlockRangeAsc = 'HELD_ASSETS_MIN_BLOCK_RANGE_ASC', + HeldAssetsMinBlockRangeDesc = 'HELD_ASSETS_MIN_BLOCK_RANGE_DESC', + HeldAssetsMinCreatedAtAsc = 'HELD_ASSETS_MIN_CREATED_AT_ASC', + HeldAssetsMinCreatedAtDesc = 'HELD_ASSETS_MIN_CREATED_AT_DESC', + HeldAssetsMinCreatedBlockIdAsc = 'HELD_ASSETS_MIN_CREATED_BLOCK_ID_ASC', + HeldAssetsMinCreatedBlockIdDesc = 'HELD_ASSETS_MIN_CREATED_BLOCK_ID_DESC', + HeldAssetsMinIdentityIdAsc = 'HELD_ASSETS_MIN_IDENTITY_ID_ASC', + HeldAssetsMinIdentityIdDesc = 'HELD_ASSETS_MIN_IDENTITY_ID_DESC', + HeldAssetsMinIdAsc = 'HELD_ASSETS_MIN_ID_ASC', + HeldAssetsMinIdDesc = 'HELD_ASSETS_MIN_ID_DESC', + HeldAssetsMinUpdatedBlockIdAsc = 'HELD_ASSETS_MIN_UPDATED_BLOCK_ID_ASC', + HeldAssetsMinUpdatedBlockIdDesc = 'HELD_ASSETS_MIN_UPDATED_BLOCK_ID_DESC', + HeldAssetsStddevPopulationAmountAsc = 'HELD_ASSETS_STDDEV_POPULATION_AMOUNT_ASC', + HeldAssetsStddevPopulationAmountDesc = 'HELD_ASSETS_STDDEV_POPULATION_AMOUNT_DESC', + HeldAssetsStddevPopulationAssetIdAsc = 'HELD_ASSETS_STDDEV_POPULATION_ASSET_ID_ASC', + HeldAssetsStddevPopulationAssetIdDesc = 'HELD_ASSETS_STDDEV_POPULATION_ASSET_ID_DESC', + HeldAssetsStddevPopulationBlockRangeAsc = 'HELD_ASSETS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + HeldAssetsStddevPopulationBlockRangeDesc = 'HELD_ASSETS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + HeldAssetsStddevPopulationCreatedAtAsc = 'HELD_ASSETS_STDDEV_POPULATION_CREATED_AT_ASC', + HeldAssetsStddevPopulationCreatedAtDesc = 'HELD_ASSETS_STDDEV_POPULATION_CREATED_AT_DESC', + HeldAssetsStddevPopulationCreatedBlockIdAsc = 'HELD_ASSETS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + HeldAssetsStddevPopulationCreatedBlockIdDesc = 'HELD_ASSETS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + HeldAssetsStddevPopulationIdentityIdAsc = 'HELD_ASSETS_STDDEV_POPULATION_IDENTITY_ID_ASC', + HeldAssetsStddevPopulationIdentityIdDesc = 'HELD_ASSETS_STDDEV_POPULATION_IDENTITY_ID_DESC', + HeldAssetsStddevPopulationIdAsc = 'HELD_ASSETS_STDDEV_POPULATION_ID_ASC', + HeldAssetsStddevPopulationIdDesc = 'HELD_ASSETS_STDDEV_POPULATION_ID_DESC', + HeldAssetsStddevPopulationUpdatedBlockIdAsc = 'HELD_ASSETS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + HeldAssetsStddevPopulationUpdatedBlockIdDesc = 'HELD_ASSETS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + HeldAssetsStddevSampleAmountAsc = 'HELD_ASSETS_STDDEV_SAMPLE_AMOUNT_ASC', + HeldAssetsStddevSampleAmountDesc = 'HELD_ASSETS_STDDEV_SAMPLE_AMOUNT_DESC', + HeldAssetsStddevSampleAssetIdAsc = 'HELD_ASSETS_STDDEV_SAMPLE_ASSET_ID_ASC', + HeldAssetsStddevSampleAssetIdDesc = 'HELD_ASSETS_STDDEV_SAMPLE_ASSET_ID_DESC', + HeldAssetsStddevSampleBlockRangeAsc = 'HELD_ASSETS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + HeldAssetsStddevSampleBlockRangeDesc = 'HELD_ASSETS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + HeldAssetsStddevSampleCreatedAtAsc = 'HELD_ASSETS_STDDEV_SAMPLE_CREATED_AT_ASC', + HeldAssetsStddevSampleCreatedAtDesc = 'HELD_ASSETS_STDDEV_SAMPLE_CREATED_AT_DESC', + HeldAssetsStddevSampleCreatedBlockIdAsc = 'HELD_ASSETS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + HeldAssetsStddevSampleCreatedBlockIdDesc = 'HELD_ASSETS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + HeldAssetsStddevSampleIdentityIdAsc = 'HELD_ASSETS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + HeldAssetsStddevSampleIdentityIdDesc = 'HELD_ASSETS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + HeldAssetsStddevSampleIdAsc = 'HELD_ASSETS_STDDEV_SAMPLE_ID_ASC', + HeldAssetsStddevSampleIdDesc = 'HELD_ASSETS_STDDEV_SAMPLE_ID_DESC', + HeldAssetsStddevSampleUpdatedBlockIdAsc = 'HELD_ASSETS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + HeldAssetsStddevSampleUpdatedBlockIdDesc = 'HELD_ASSETS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + HeldAssetsSumAmountAsc = 'HELD_ASSETS_SUM_AMOUNT_ASC', + HeldAssetsSumAmountDesc = 'HELD_ASSETS_SUM_AMOUNT_DESC', + HeldAssetsSumAssetIdAsc = 'HELD_ASSETS_SUM_ASSET_ID_ASC', + HeldAssetsSumAssetIdDesc = 'HELD_ASSETS_SUM_ASSET_ID_DESC', + HeldAssetsSumBlockRangeAsc = 'HELD_ASSETS_SUM_BLOCK_RANGE_ASC', + HeldAssetsSumBlockRangeDesc = 'HELD_ASSETS_SUM_BLOCK_RANGE_DESC', + HeldAssetsSumCreatedAtAsc = 'HELD_ASSETS_SUM_CREATED_AT_ASC', + HeldAssetsSumCreatedAtDesc = 'HELD_ASSETS_SUM_CREATED_AT_DESC', + HeldAssetsSumCreatedBlockIdAsc = 'HELD_ASSETS_SUM_CREATED_BLOCK_ID_ASC', + HeldAssetsSumCreatedBlockIdDesc = 'HELD_ASSETS_SUM_CREATED_BLOCK_ID_DESC', + HeldAssetsSumIdentityIdAsc = 'HELD_ASSETS_SUM_IDENTITY_ID_ASC', + HeldAssetsSumIdentityIdDesc = 'HELD_ASSETS_SUM_IDENTITY_ID_DESC', + HeldAssetsSumIdAsc = 'HELD_ASSETS_SUM_ID_ASC', + HeldAssetsSumIdDesc = 'HELD_ASSETS_SUM_ID_DESC', + HeldAssetsSumUpdatedBlockIdAsc = 'HELD_ASSETS_SUM_UPDATED_BLOCK_ID_ASC', + HeldAssetsSumUpdatedBlockIdDesc = 'HELD_ASSETS_SUM_UPDATED_BLOCK_ID_DESC', + HeldAssetsVariancePopulationAmountAsc = 'HELD_ASSETS_VARIANCE_POPULATION_AMOUNT_ASC', + HeldAssetsVariancePopulationAmountDesc = 'HELD_ASSETS_VARIANCE_POPULATION_AMOUNT_DESC', + HeldAssetsVariancePopulationAssetIdAsc = 'HELD_ASSETS_VARIANCE_POPULATION_ASSET_ID_ASC', + HeldAssetsVariancePopulationAssetIdDesc = 'HELD_ASSETS_VARIANCE_POPULATION_ASSET_ID_DESC', + HeldAssetsVariancePopulationBlockRangeAsc = 'HELD_ASSETS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + HeldAssetsVariancePopulationBlockRangeDesc = 'HELD_ASSETS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + HeldAssetsVariancePopulationCreatedAtAsc = 'HELD_ASSETS_VARIANCE_POPULATION_CREATED_AT_ASC', + HeldAssetsVariancePopulationCreatedAtDesc = 'HELD_ASSETS_VARIANCE_POPULATION_CREATED_AT_DESC', + HeldAssetsVariancePopulationCreatedBlockIdAsc = 'HELD_ASSETS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + HeldAssetsVariancePopulationCreatedBlockIdDesc = 'HELD_ASSETS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + HeldAssetsVariancePopulationIdentityIdAsc = 'HELD_ASSETS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + HeldAssetsVariancePopulationIdentityIdDesc = 'HELD_ASSETS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + HeldAssetsVariancePopulationIdAsc = 'HELD_ASSETS_VARIANCE_POPULATION_ID_ASC', + HeldAssetsVariancePopulationIdDesc = 'HELD_ASSETS_VARIANCE_POPULATION_ID_DESC', + HeldAssetsVariancePopulationUpdatedBlockIdAsc = 'HELD_ASSETS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + HeldAssetsVariancePopulationUpdatedBlockIdDesc = 'HELD_ASSETS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + HeldAssetsVarianceSampleAmountAsc = 'HELD_ASSETS_VARIANCE_SAMPLE_AMOUNT_ASC', + HeldAssetsVarianceSampleAmountDesc = 'HELD_ASSETS_VARIANCE_SAMPLE_AMOUNT_DESC', + HeldAssetsVarianceSampleAssetIdAsc = 'HELD_ASSETS_VARIANCE_SAMPLE_ASSET_ID_ASC', + HeldAssetsVarianceSampleAssetIdDesc = 'HELD_ASSETS_VARIANCE_SAMPLE_ASSET_ID_DESC', + HeldAssetsVarianceSampleBlockRangeAsc = 'HELD_ASSETS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + HeldAssetsVarianceSampleBlockRangeDesc = 'HELD_ASSETS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + HeldAssetsVarianceSampleCreatedAtAsc = 'HELD_ASSETS_VARIANCE_SAMPLE_CREATED_AT_ASC', + HeldAssetsVarianceSampleCreatedAtDesc = 'HELD_ASSETS_VARIANCE_SAMPLE_CREATED_AT_DESC', + HeldAssetsVarianceSampleCreatedBlockIdAsc = 'HELD_ASSETS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + HeldAssetsVarianceSampleCreatedBlockIdDesc = 'HELD_ASSETS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + HeldAssetsVarianceSampleIdentityIdAsc = 'HELD_ASSETS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + HeldAssetsVarianceSampleIdentityIdDesc = 'HELD_ASSETS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + HeldAssetsVarianceSampleIdAsc = 'HELD_ASSETS_VARIANCE_SAMPLE_ID_ASC', + HeldAssetsVarianceSampleIdDesc = 'HELD_ASSETS_VARIANCE_SAMPLE_ID_DESC', + HeldAssetsVarianceSampleUpdatedBlockIdAsc = 'HELD_ASSETS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + HeldAssetsVarianceSampleUpdatedBlockIdDesc = 'HELD_ASSETS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + HeldNftsAverageAssetIdAsc = 'HELD_NFTS_AVERAGE_ASSET_ID_ASC', + HeldNftsAverageAssetIdDesc = 'HELD_NFTS_AVERAGE_ASSET_ID_DESC', + HeldNftsAverageBlockRangeAsc = 'HELD_NFTS_AVERAGE_BLOCK_RANGE_ASC', + HeldNftsAverageBlockRangeDesc = 'HELD_NFTS_AVERAGE_BLOCK_RANGE_DESC', + HeldNftsAverageCreatedAtAsc = 'HELD_NFTS_AVERAGE_CREATED_AT_ASC', + HeldNftsAverageCreatedAtDesc = 'HELD_NFTS_AVERAGE_CREATED_AT_DESC', + HeldNftsAverageCreatedBlockIdAsc = 'HELD_NFTS_AVERAGE_CREATED_BLOCK_ID_ASC', + HeldNftsAverageCreatedBlockIdDesc = 'HELD_NFTS_AVERAGE_CREATED_BLOCK_ID_DESC', + HeldNftsAverageIdentityIdAsc = 'HELD_NFTS_AVERAGE_IDENTITY_ID_ASC', + HeldNftsAverageIdentityIdDesc = 'HELD_NFTS_AVERAGE_IDENTITY_ID_DESC', + HeldNftsAverageIdAsc = 'HELD_NFTS_AVERAGE_ID_ASC', + HeldNftsAverageIdDesc = 'HELD_NFTS_AVERAGE_ID_DESC', + HeldNftsAverageNftIdsAsc = 'HELD_NFTS_AVERAGE_NFT_IDS_ASC', + HeldNftsAverageNftIdsDesc = 'HELD_NFTS_AVERAGE_NFT_IDS_DESC', + HeldNftsAverageUpdatedBlockIdAsc = 'HELD_NFTS_AVERAGE_UPDATED_BLOCK_ID_ASC', + HeldNftsAverageUpdatedBlockIdDesc = 'HELD_NFTS_AVERAGE_UPDATED_BLOCK_ID_DESC', + HeldNftsCountAsc = 'HELD_NFTS_COUNT_ASC', + HeldNftsCountDesc = 'HELD_NFTS_COUNT_DESC', + HeldNftsDistinctCountAssetIdAsc = 'HELD_NFTS_DISTINCT_COUNT_ASSET_ID_ASC', + HeldNftsDistinctCountAssetIdDesc = 'HELD_NFTS_DISTINCT_COUNT_ASSET_ID_DESC', + HeldNftsDistinctCountBlockRangeAsc = 'HELD_NFTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + HeldNftsDistinctCountBlockRangeDesc = 'HELD_NFTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + HeldNftsDistinctCountCreatedAtAsc = 'HELD_NFTS_DISTINCT_COUNT_CREATED_AT_ASC', + HeldNftsDistinctCountCreatedAtDesc = 'HELD_NFTS_DISTINCT_COUNT_CREATED_AT_DESC', + HeldNftsDistinctCountCreatedBlockIdAsc = 'HELD_NFTS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + HeldNftsDistinctCountCreatedBlockIdDesc = 'HELD_NFTS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + HeldNftsDistinctCountIdentityIdAsc = 'HELD_NFTS_DISTINCT_COUNT_IDENTITY_ID_ASC', + HeldNftsDistinctCountIdentityIdDesc = 'HELD_NFTS_DISTINCT_COUNT_IDENTITY_ID_DESC', + HeldNftsDistinctCountIdAsc = 'HELD_NFTS_DISTINCT_COUNT_ID_ASC', + HeldNftsDistinctCountIdDesc = 'HELD_NFTS_DISTINCT_COUNT_ID_DESC', + HeldNftsDistinctCountNftIdsAsc = 'HELD_NFTS_DISTINCT_COUNT_NFT_IDS_ASC', + HeldNftsDistinctCountNftIdsDesc = 'HELD_NFTS_DISTINCT_COUNT_NFT_IDS_DESC', + HeldNftsDistinctCountUpdatedBlockIdAsc = 'HELD_NFTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + HeldNftsDistinctCountUpdatedBlockIdDesc = 'HELD_NFTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + HeldNftsMaxAssetIdAsc = 'HELD_NFTS_MAX_ASSET_ID_ASC', + HeldNftsMaxAssetIdDesc = 'HELD_NFTS_MAX_ASSET_ID_DESC', + HeldNftsMaxBlockRangeAsc = 'HELD_NFTS_MAX_BLOCK_RANGE_ASC', + HeldNftsMaxBlockRangeDesc = 'HELD_NFTS_MAX_BLOCK_RANGE_DESC', + HeldNftsMaxCreatedAtAsc = 'HELD_NFTS_MAX_CREATED_AT_ASC', + HeldNftsMaxCreatedAtDesc = 'HELD_NFTS_MAX_CREATED_AT_DESC', + HeldNftsMaxCreatedBlockIdAsc = 'HELD_NFTS_MAX_CREATED_BLOCK_ID_ASC', + HeldNftsMaxCreatedBlockIdDesc = 'HELD_NFTS_MAX_CREATED_BLOCK_ID_DESC', + HeldNftsMaxIdentityIdAsc = 'HELD_NFTS_MAX_IDENTITY_ID_ASC', + HeldNftsMaxIdentityIdDesc = 'HELD_NFTS_MAX_IDENTITY_ID_DESC', + HeldNftsMaxIdAsc = 'HELD_NFTS_MAX_ID_ASC', + HeldNftsMaxIdDesc = 'HELD_NFTS_MAX_ID_DESC', + HeldNftsMaxNftIdsAsc = 'HELD_NFTS_MAX_NFT_IDS_ASC', + HeldNftsMaxNftIdsDesc = 'HELD_NFTS_MAX_NFT_IDS_DESC', + HeldNftsMaxUpdatedBlockIdAsc = 'HELD_NFTS_MAX_UPDATED_BLOCK_ID_ASC', + HeldNftsMaxUpdatedBlockIdDesc = 'HELD_NFTS_MAX_UPDATED_BLOCK_ID_DESC', + HeldNftsMinAssetIdAsc = 'HELD_NFTS_MIN_ASSET_ID_ASC', + HeldNftsMinAssetIdDesc = 'HELD_NFTS_MIN_ASSET_ID_DESC', + HeldNftsMinBlockRangeAsc = 'HELD_NFTS_MIN_BLOCK_RANGE_ASC', + HeldNftsMinBlockRangeDesc = 'HELD_NFTS_MIN_BLOCK_RANGE_DESC', + HeldNftsMinCreatedAtAsc = 'HELD_NFTS_MIN_CREATED_AT_ASC', + HeldNftsMinCreatedAtDesc = 'HELD_NFTS_MIN_CREATED_AT_DESC', + HeldNftsMinCreatedBlockIdAsc = 'HELD_NFTS_MIN_CREATED_BLOCK_ID_ASC', + HeldNftsMinCreatedBlockIdDesc = 'HELD_NFTS_MIN_CREATED_BLOCK_ID_DESC', + HeldNftsMinIdentityIdAsc = 'HELD_NFTS_MIN_IDENTITY_ID_ASC', + HeldNftsMinIdentityIdDesc = 'HELD_NFTS_MIN_IDENTITY_ID_DESC', + HeldNftsMinIdAsc = 'HELD_NFTS_MIN_ID_ASC', + HeldNftsMinIdDesc = 'HELD_NFTS_MIN_ID_DESC', + HeldNftsMinNftIdsAsc = 'HELD_NFTS_MIN_NFT_IDS_ASC', + HeldNftsMinNftIdsDesc = 'HELD_NFTS_MIN_NFT_IDS_DESC', + HeldNftsMinUpdatedBlockIdAsc = 'HELD_NFTS_MIN_UPDATED_BLOCK_ID_ASC', + HeldNftsMinUpdatedBlockIdDesc = 'HELD_NFTS_MIN_UPDATED_BLOCK_ID_DESC', + HeldNftsStddevPopulationAssetIdAsc = 'HELD_NFTS_STDDEV_POPULATION_ASSET_ID_ASC', + HeldNftsStddevPopulationAssetIdDesc = 'HELD_NFTS_STDDEV_POPULATION_ASSET_ID_DESC', + HeldNftsStddevPopulationBlockRangeAsc = 'HELD_NFTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + HeldNftsStddevPopulationBlockRangeDesc = 'HELD_NFTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + HeldNftsStddevPopulationCreatedAtAsc = 'HELD_NFTS_STDDEV_POPULATION_CREATED_AT_ASC', + HeldNftsStddevPopulationCreatedAtDesc = 'HELD_NFTS_STDDEV_POPULATION_CREATED_AT_DESC', + HeldNftsStddevPopulationCreatedBlockIdAsc = 'HELD_NFTS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + HeldNftsStddevPopulationCreatedBlockIdDesc = 'HELD_NFTS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + HeldNftsStddevPopulationIdentityIdAsc = 'HELD_NFTS_STDDEV_POPULATION_IDENTITY_ID_ASC', + HeldNftsStddevPopulationIdentityIdDesc = 'HELD_NFTS_STDDEV_POPULATION_IDENTITY_ID_DESC', + HeldNftsStddevPopulationIdAsc = 'HELD_NFTS_STDDEV_POPULATION_ID_ASC', + HeldNftsStddevPopulationIdDesc = 'HELD_NFTS_STDDEV_POPULATION_ID_DESC', + HeldNftsStddevPopulationNftIdsAsc = 'HELD_NFTS_STDDEV_POPULATION_NFT_IDS_ASC', + HeldNftsStddevPopulationNftIdsDesc = 'HELD_NFTS_STDDEV_POPULATION_NFT_IDS_DESC', + HeldNftsStddevPopulationUpdatedBlockIdAsc = 'HELD_NFTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + HeldNftsStddevPopulationUpdatedBlockIdDesc = 'HELD_NFTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + HeldNftsStddevSampleAssetIdAsc = 'HELD_NFTS_STDDEV_SAMPLE_ASSET_ID_ASC', + HeldNftsStddevSampleAssetIdDesc = 'HELD_NFTS_STDDEV_SAMPLE_ASSET_ID_DESC', + HeldNftsStddevSampleBlockRangeAsc = 'HELD_NFTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + HeldNftsStddevSampleBlockRangeDesc = 'HELD_NFTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + HeldNftsStddevSampleCreatedAtAsc = 'HELD_NFTS_STDDEV_SAMPLE_CREATED_AT_ASC', + HeldNftsStddevSampleCreatedAtDesc = 'HELD_NFTS_STDDEV_SAMPLE_CREATED_AT_DESC', + HeldNftsStddevSampleCreatedBlockIdAsc = 'HELD_NFTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + HeldNftsStddevSampleCreatedBlockIdDesc = 'HELD_NFTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + HeldNftsStddevSampleIdentityIdAsc = 'HELD_NFTS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + HeldNftsStddevSampleIdentityIdDesc = 'HELD_NFTS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + HeldNftsStddevSampleIdAsc = 'HELD_NFTS_STDDEV_SAMPLE_ID_ASC', + HeldNftsStddevSampleIdDesc = 'HELD_NFTS_STDDEV_SAMPLE_ID_DESC', + HeldNftsStddevSampleNftIdsAsc = 'HELD_NFTS_STDDEV_SAMPLE_NFT_IDS_ASC', + HeldNftsStddevSampleNftIdsDesc = 'HELD_NFTS_STDDEV_SAMPLE_NFT_IDS_DESC', + HeldNftsStddevSampleUpdatedBlockIdAsc = 'HELD_NFTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + HeldNftsStddevSampleUpdatedBlockIdDesc = 'HELD_NFTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + HeldNftsSumAssetIdAsc = 'HELD_NFTS_SUM_ASSET_ID_ASC', + HeldNftsSumAssetIdDesc = 'HELD_NFTS_SUM_ASSET_ID_DESC', + HeldNftsSumBlockRangeAsc = 'HELD_NFTS_SUM_BLOCK_RANGE_ASC', + HeldNftsSumBlockRangeDesc = 'HELD_NFTS_SUM_BLOCK_RANGE_DESC', + HeldNftsSumCreatedAtAsc = 'HELD_NFTS_SUM_CREATED_AT_ASC', + HeldNftsSumCreatedAtDesc = 'HELD_NFTS_SUM_CREATED_AT_DESC', + HeldNftsSumCreatedBlockIdAsc = 'HELD_NFTS_SUM_CREATED_BLOCK_ID_ASC', + HeldNftsSumCreatedBlockIdDesc = 'HELD_NFTS_SUM_CREATED_BLOCK_ID_DESC', + HeldNftsSumIdentityIdAsc = 'HELD_NFTS_SUM_IDENTITY_ID_ASC', + HeldNftsSumIdentityIdDesc = 'HELD_NFTS_SUM_IDENTITY_ID_DESC', + HeldNftsSumIdAsc = 'HELD_NFTS_SUM_ID_ASC', + HeldNftsSumIdDesc = 'HELD_NFTS_SUM_ID_DESC', + HeldNftsSumNftIdsAsc = 'HELD_NFTS_SUM_NFT_IDS_ASC', + HeldNftsSumNftIdsDesc = 'HELD_NFTS_SUM_NFT_IDS_DESC', + HeldNftsSumUpdatedBlockIdAsc = 'HELD_NFTS_SUM_UPDATED_BLOCK_ID_ASC', + HeldNftsSumUpdatedBlockIdDesc = 'HELD_NFTS_SUM_UPDATED_BLOCK_ID_DESC', + HeldNftsVariancePopulationAssetIdAsc = 'HELD_NFTS_VARIANCE_POPULATION_ASSET_ID_ASC', + HeldNftsVariancePopulationAssetIdDesc = 'HELD_NFTS_VARIANCE_POPULATION_ASSET_ID_DESC', + HeldNftsVariancePopulationBlockRangeAsc = 'HELD_NFTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + HeldNftsVariancePopulationBlockRangeDesc = 'HELD_NFTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + HeldNftsVariancePopulationCreatedAtAsc = 'HELD_NFTS_VARIANCE_POPULATION_CREATED_AT_ASC', + HeldNftsVariancePopulationCreatedAtDesc = 'HELD_NFTS_VARIANCE_POPULATION_CREATED_AT_DESC', + HeldNftsVariancePopulationCreatedBlockIdAsc = 'HELD_NFTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + HeldNftsVariancePopulationCreatedBlockIdDesc = 'HELD_NFTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + HeldNftsVariancePopulationIdentityIdAsc = 'HELD_NFTS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + HeldNftsVariancePopulationIdentityIdDesc = 'HELD_NFTS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + HeldNftsVariancePopulationIdAsc = 'HELD_NFTS_VARIANCE_POPULATION_ID_ASC', + HeldNftsVariancePopulationIdDesc = 'HELD_NFTS_VARIANCE_POPULATION_ID_DESC', + HeldNftsVariancePopulationNftIdsAsc = 'HELD_NFTS_VARIANCE_POPULATION_NFT_IDS_ASC', + HeldNftsVariancePopulationNftIdsDesc = 'HELD_NFTS_VARIANCE_POPULATION_NFT_IDS_DESC', + HeldNftsVariancePopulationUpdatedBlockIdAsc = 'HELD_NFTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + HeldNftsVariancePopulationUpdatedBlockIdDesc = 'HELD_NFTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + HeldNftsVarianceSampleAssetIdAsc = 'HELD_NFTS_VARIANCE_SAMPLE_ASSET_ID_ASC', + HeldNftsVarianceSampleAssetIdDesc = 'HELD_NFTS_VARIANCE_SAMPLE_ASSET_ID_DESC', + HeldNftsVarianceSampleBlockRangeAsc = 'HELD_NFTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + HeldNftsVarianceSampleBlockRangeDesc = 'HELD_NFTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + HeldNftsVarianceSampleCreatedAtAsc = 'HELD_NFTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + HeldNftsVarianceSampleCreatedAtDesc = 'HELD_NFTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + HeldNftsVarianceSampleCreatedBlockIdAsc = 'HELD_NFTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + HeldNftsVarianceSampleCreatedBlockIdDesc = 'HELD_NFTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + HeldNftsVarianceSampleIdentityIdAsc = 'HELD_NFTS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + HeldNftsVarianceSampleIdentityIdDesc = 'HELD_NFTS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + HeldNftsVarianceSampleIdAsc = 'HELD_NFTS_VARIANCE_SAMPLE_ID_ASC', + HeldNftsVarianceSampleIdDesc = 'HELD_NFTS_VARIANCE_SAMPLE_ID_DESC', + HeldNftsVarianceSampleNftIdsAsc = 'HELD_NFTS_VARIANCE_SAMPLE_NFT_IDS_ASC', + HeldNftsVarianceSampleNftIdsDesc = 'HELD_NFTS_VARIANCE_SAMPLE_NFT_IDS_DESC', + HeldNftsVarianceSampleUpdatedBlockIdAsc = 'HELD_NFTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + HeldNftsVarianceSampleUpdatedBlockIdDesc = 'HELD_NFTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + InvestmentsByInvestorIdAverageBlockRangeAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_BLOCK_RANGE_ASC', + InvestmentsByInvestorIdAverageBlockRangeDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_BLOCK_RANGE_DESC', + InvestmentsByInvestorIdAverageCreatedAtAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_CREATED_AT_ASC', + InvestmentsByInvestorIdAverageCreatedAtDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_CREATED_AT_DESC', + InvestmentsByInvestorIdAverageCreatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdAverageCreatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdAverageDatetimeAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_DATETIME_ASC', + InvestmentsByInvestorIdAverageDatetimeDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_DATETIME_DESC', + InvestmentsByInvestorIdAverageIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_ID_ASC', + InvestmentsByInvestorIdAverageIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_ID_DESC', + InvestmentsByInvestorIdAverageInvestorIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_INVESTOR_ID_ASC', + InvestmentsByInvestorIdAverageInvestorIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_INVESTOR_ID_DESC', + InvestmentsByInvestorIdAverageOfferingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_OFFERING_ASSET_ID_ASC', + InvestmentsByInvestorIdAverageOfferingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_OFFERING_ASSET_ID_DESC', + InvestmentsByInvestorIdAverageOfferingTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdAverageOfferingTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdAverageOfferingTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_OFFERING_TOKEN_ASC', + InvestmentsByInvestorIdAverageOfferingTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_OFFERING_TOKEN_DESC', + InvestmentsByInvestorIdAverageRaiseTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdAverageRaiseTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdAverageRaiseTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_RAISE_TOKEN_ASC', + InvestmentsByInvestorIdAverageRaiseTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_RAISE_TOKEN_DESC', + InvestmentsByInvestorIdAverageRaisingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_RAISING_ASSET_ID_ASC', + InvestmentsByInvestorIdAverageRaisingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_RAISING_ASSET_ID_DESC', + InvestmentsByInvestorIdAverageStoIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_STO_ID_ASC', + InvestmentsByInvestorIdAverageStoIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_STO_ID_DESC', + InvestmentsByInvestorIdAverageUpdatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdAverageUpdatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdCountAsc = 'INVESTMENTS_BY_INVESTOR_ID_COUNT_ASC', + InvestmentsByInvestorIdCountDesc = 'INVESTMENTS_BY_INVESTOR_ID_COUNT_DESC', + InvestmentsByInvestorIdDistinctCountBlockRangeAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InvestmentsByInvestorIdDistinctCountBlockRangeDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InvestmentsByInvestorIdDistinctCountCreatedAtAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_CREATED_AT_ASC', + InvestmentsByInvestorIdDistinctCountCreatedAtDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_CREATED_AT_DESC', + InvestmentsByInvestorIdDistinctCountCreatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdDistinctCountCreatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdDistinctCountDatetimeAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_DATETIME_ASC', + InvestmentsByInvestorIdDistinctCountDatetimeDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_DATETIME_DESC', + InvestmentsByInvestorIdDistinctCountIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_ID_ASC', + InvestmentsByInvestorIdDistinctCountIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_ID_DESC', + InvestmentsByInvestorIdDistinctCountInvestorIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_INVESTOR_ID_ASC', + InvestmentsByInvestorIdDistinctCountInvestorIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_INVESTOR_ID_DESC', + InvestmentsByInvestorIdDistinctCountOfferingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_ASC', + InvestmentsByInvestorIdDistinctCountOfferingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_DESC', + InvestmentsByInvestorIdDistinctCountOfferingTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdDistinctCountOfferingTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdDistinctCountOfferingTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_OFFERING_TOKEN_ASC', + InvestmentsByInvestorIdDistinctCountOfferingTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_OFFERING_TOKEN_DESC', + InvestmentsByInvestorIdDistinctCountRaiseTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdDistinctCountRaiseTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdDistinctCountRaiseTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_RAISE_TOKEN_ASC', + InvestmentsByInvestorIdDistinctCountRaiseTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_RAISE_TOKEN_DESC', + InvestmentsByInvestorIdDistinctCountRaisingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_RAISING_ASSET_ID_ASC', + InvestmentsByInvestorIdDistinctCountRaisingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_RAISING_ASSET_ID_DESC', + InvestmentsByInvestorIdDistinctCountStoIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_STO_ID_ASC', + InvestmentsByInvestorIdDistinctCountStoIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_STO_ID_DESC', + InvestmentsByInvestorIdDistinctCountUpdatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdDistinctCountUpdatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdMaxBlockRangeAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_BLOCK_RANGE_ASC', + InvestmentsByInvestorIdMaxBlockRangeDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_BLOCK_RANGE_DESC', + InvestmentsByInvestorIdMaxCreatedAtAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_CREATED_AT_ASC', + InvestmentsByInvestorIdMaxCreatedAtDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_CREATED_AT_DESC', + InvestmentsByInvestorIdMaxCreatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_CREATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdMaxCreatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_CREATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdMaxDatetimeAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_DATETIME_ASC', + InvestmentsByInvestorIdMaxDatetimeDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_DATETIME_DESC', + InvestmentsByInvestorIdMaxIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_ID_ASC', + InvestmentsByInvestorIdMaxIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_ID_DESC', + InvestmentsByInvestorIdMaxInvestorIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_INVESTOR_ID_ASC', + InvestmentsByInvestorIdMaxInvestorIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_INVESTOR_ID_DESC', + InvestmentsByInvestorIdMaxOfferingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_OFFERING_ASSET_ID_ASC', + InvestmentsByInvestorIdMaxOfferingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_OFFERING_ASSET_ID_DESC', + InvestmentsByInvestorIdMaxOfferingTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdMaxOfferingTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdMaxOfferingTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_OFFERING_TOKEN_ASC', + InvestmentsByInvestorIdMaxOfferingTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_OFFERING_TOKEN_DESC', + InvestmentsByInvestorIdMaxRaiseTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdMaxRaiseTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdMaxRaiseTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_RAISE_TOKEN_ASC', + InvestmentsByInvestorIdMaxRaiseTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_RAISE_TOKEN_DESC', + InvestmentsByInvestorIdMaxRaisingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_RAISING_ASSET_ID_ASC', + InvestmentsByInvestorIdMaxRaisingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_RAISING_ASSET_ID_DESC', + InvestmentsByInvestorIdMaxStoIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_STO_ID_ASC', + InvestmentsByInvestorIdMaxStoIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_STO_ID_DESC', + InvestmentsByInvestorIdMaxUpdatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_UPDATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdMaxUpdatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MAX_UPDATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdMinBlockRangeAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_BLOCK_RANGE_ASC', + InvestmentsByInvestorIdMinBlockRangeDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_BLOCK_RANGE_DESC', + InvestmentsByInvestorIdMinCreatedAtAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_CREATED_AT_ASC', + InvestmentsByInvestorIdMinCreatedAtDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_CREATED_AT_DESC', + InvestmentsByInvestorIdMinCreatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_CREATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdMinCreatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_CREATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdMinDatetimeAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_DATETIME_ASC', + InvestmentsByInvestorIdMinDatetimeDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_DATETIME_DESC', + InvestmentsByInvestorIdMinIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_ID_ASC', + InvestmentsByInvestorIdMinIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_ID_DESC', + InvestmentsByInvestorIdMinInvestorIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_INVESTOR_ID_ASC', + InvestmentsByInvestorIdMinInvestorIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_INVESTOR_ID_DESC', + InvestmentsByInvestorIdMinOfferingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_OFFERING_ASSET_ID_ASC', + InvestmentsByInvestorIdMinOfferingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_OFFERING_ASSET_ID_DESC', + InvestmentsByInvestorIdMinOfferingTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdMinOfferingTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdMinOfferingTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_OFFERING_TOKEN_ASC', + InvestmentsByInvestorIdMinOfferingTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_OFFERING_TOKEN_DESC', + InvestmentsByInvestorIdMinRaiseTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdMinRaiseTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdMinRaiseTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_RAISE_TOKEN_ASC', + InvestmentsByInvestorIdMinRaiseTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_RAISE_TOKEN_DESC', + InvestmentsByInvestorIdMinRaisingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_RAISING_ASSET_ID_ASC', + InvestmentsByInvestorIdMinRaisingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_RAISING_ASSET_ID_DESC', + InvestmentsByInvestorIdMinStoIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_STO_ID_ASC', + InvestmentsByInvestorIdMinStoIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_STO_ID_DESC', + InvestmentsByInvestorIdMinUpdatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_UPDATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdMinUpdatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_MIN_UPDATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdStddevPopulationBlockRangeAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InvestmentsByInvestorIdStddevPopulationBlockRangeDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InvestmentsByInvestorIdStddevPopulationCreatedAtAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_CREATED_AT_ASC', + InvestmentsByInvestorIdStddevPopulationCreatedAtDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_CREATED_AT_DESC', + InvestmentsByInvestorIdStddevPopulationCreatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdStddevPopulationCreatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdStddevPopulationDatetimeAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_DATETIME_ASC', + InvestmentsByInvestorIdStddevPopulationDatetimeDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_DATETIME_DESC', + InvestmentsByInvestorIdStddevPopulationIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_ID_ASC', + InvestmentsByInvestorIdStddevPopulationIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_ID_DESC', + InvestmentsByInvestorIdStddevPopulationInvestorIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_INVESTOR_ID_ASC', + InvestmentsByInvestorIdStddevPopulationInvestorIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_INVESTOR_ID_DESC', + InvestmentsByInvestorIdStddevPopulationOfferingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_ASC', + InvestmentsByInvestorIdStddevPopulationOfferingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_DESC', + InvestmentsByInvestorIdStddevPopulationOfferingTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdStddevPopulationOfferingTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdStddevPopulationOfferingTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_OFFERING_TOKEN_ASC', + InvestmentsByInvestorIdStddevPopulationOfferingTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_OFFERING_TOKEN_DESC', + InvestmentsByInvestorIdStddevPopulationRaiseTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdStddevPopulationRaiseTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdStddevPopulationRaiseTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_RAISE_TOKEN_ASC', + InvestmentsByInvestorIdStddevPopulationRaiseTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_RAISE_TOKEN_DESC', + InvestmentsByInvestorIdStddevPopulationRaisingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_RAISING_ASSET_ID_ASC', + InvestmentsByInvestorIdStddevPopulationRaisingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_RAISING_ASSET_ID_DESC', + InvestmentsByInvestorIdStddevPopulationStoIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_STO_ID_ASC', + InvestmentsByInvestorIdStddevPopulationStoIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_STO_ID_DESC', + InvestmentsByInvestorIdStddevPopulationUpdatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdStddevPopulationUpdatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdStddevSampleBlockRangeAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InvestmentsByInvestorIdStddevSampleBlockRangeDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InvestmentsByInvestorIdStddevSampleCreatedAtAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + InvestmentsByInvestorIdStddevSampleCreatedAtDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + InvestmentsByInvestorIdStddevSampleCreatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdStddevSampleCreatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdStddevSampleDatetimeAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_DATETIME_ASC', + InvestmentsByInvestorIdStddevSampleDatetimeDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_DATETIME_DESC', + InvestmentsByInvestorIdStddevSampleIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_ID_ASC', + InvestmentsByInvestorIdStddevSampleIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_ID_DESC', + InvestmentsByInvestorIdStddevSampleInvestorIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_INVESTOR_ID_ASC', + InvestmentsByInvestorIdStddevSampleInvestorIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_INVESTOR_ID_DESC', + InvestmentsByInvestorIdStddevSampleOfferingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_ASC', + InvestmentsByInvestorIdStddevSampleOfferingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_DESC', + InvestmentsByInvestorIdStddevSampleOfferingTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdStddevSampleOfferingTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdStddevSampleOfferingTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_OFFERING_TOKEN_ASC', + InvestmentsByInvestorIdStddevSampleOfferingTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_OFFERING_TOKEN_DESC', + InvestmentsByInvestorIdStddevSampleRaiseTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdStddevSampleRaiseTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdStddevSampleRaiseTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_RAISE_TOKEN_ASC', + InvestmentsByInvestorIdStddevSampleRaiseTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_RAISE_TOKEN_DESC', + InvestmentsByInvestorIdStddevSampleRaisingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_ASC', + InvestmentsByInvestorIdStddevSampleRaisingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_DESC', + InvestmentsByInvestorIdStddevSampleStoIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_STO_ID_ASC', + InvestmentsByInvestorIdStddevSampleStoIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_STO_ID_DESC', + InvestmentsByInvestorIdStddevSampleUpdatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdStddevSampleUpdatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdSumBlockRangeAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_BLOCK_RANGE_ASC', + InvestmentsByInvestorIdSumBlockRangeDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_BLOCK_RANGE_DESC', + InvestmentsByInvestorIdSumCreatedAtAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_CREATED_AT_ASC', + InvestmentsByInvestorIdSumCreatedAtDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_CREATED_AT_DESC', + InvestmentsByInvestorIdSumCreatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_CREATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdSumCreatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_CREATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdSumDatetimeAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_DATETIME_ASC', + InvestmentsByInvestorIdSumDatetimeDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_DATETIME_DESC', + InvestmentsByInvestorIdSumIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_ID_ASC', + InvestmentsByInvestorIdSumIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_ID_DESC', + InvestmentsByInvestorIdSumInvestorIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_INVESTOR_ID_ASC', + InvestmentsByInvestorIdSumInvestorIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_INVESTOR_ID_DESC', + InvestmentsByInvestorIdSumOfferingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_OFFERING_ASSET_ID_ASC', + InvestmentsByInvestorIdSumOfferingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_OFFERING_ASSET_ID_DESC', + InvestmentsByInvestorIdSumOfferingTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdSumOfferingTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdSumOfferingTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_OFFERING_TOKEN_ASC', + InvestmentsByInvestorIdSumOfferingTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_OFFERING_TOKEN_DESC', + InvestmentsByInvestorIdSumRaiseTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdSumRaiseTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdSumRaiseTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_RAISE_TOKEN_ASC', + InvestmentsByInvestorIdSumRaiseTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_RAISE_TOKEN_DESC', + InvestmentsByInvestorIdSumRaisingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_RAISING_ASSET_ID_ASC', + InvestmentsByInvestorIdSumRaisingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_RAISING_ASSET_ID_DESC', + InvestmentsByInvestorIdSumStoIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_STO_ID_ASC', + InvestmentsByInvestorIdSumStoIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_STO_ID_DESC', + InvestmentsByInvestorIdSumUpdatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_UPDATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdSumUpdatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_SUM_UPDATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdVariancePopulationBlockRangeAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InvestmentsByInvestorIdVariancePopulationBlockRangeDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InvestmentsByInvestorIdVariancePopulationCreatedAtAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + InvestmentsByInvestorIdVariancePopulationCreatedAtDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + InvestmentsByInvestorIdVariancePopulationCreatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdVariancePopulationCreatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdVariancePopulationDatetimeAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_DATETIME_ASC', + InvestmentsByInvestorIdVariancePopulationDatetimeDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_DATETIME_DESC', + InvestmentsByInvestorIdVariancePopulationIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_ID_ASC', + InvestmentsByInvestorIdVariancePopulationIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_ID_DESC', + InvestmentsByInvestorIdVariancePopulationInvestorIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_INVESTOR_ID_ASC', + InvestmentsByInvestorIdVariancePopulationInvestorIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_INVESTOR_ID_DESC', + InvestmentsByInvestorIdVariancePopulationOfferingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_ASC', + InvestmentsByInvestorIdVariancePopulationOfferingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_DESC', + InvestmentsByInvestorIdVariancePopulationOfferingTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdVariancePopulationOfferingTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdVariancePopulationOfferingTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_OFFERING_TOKEN_ASC', + InvestmentsByInvestorIdVariancePopulationOfferingTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_OFFERING_TOKEN_DESC', + InvestmentsByInvestorIdVariancePopulationRaiseTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdVariancePopulationRaiseTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdVariancePopulationRaiseTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_RAISE_TOKEN_ASC', + InvestmentsByInvestorIdVariancePopulationRaiseTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_RAISE_TOKEN_DESC', + InvestmentsByInvestorIdVariancePopulationRaisingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_ASC', + InvestmentsByInvestorIdVariancePopulationRaisingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_DESC', + InvestmentsByInvestorIdVariancePopulationStoIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_STO_ID_ASC', + InvestmentsByInvestorIdVariancePopulationStoIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_STO_ID_DESC', + InvestmentsByInvestorIdVariancePopulationUpdatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdVariancePopulationUpdatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdVarianceSampleBlockRangeAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InvestmentsByInvestorIdVarianceSampleBlockRangeDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InvestmentsByInvestorIdVarianceSampleCreatedAtAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + InvestmentsByInvestorIdVarianceSampleCreatedAtDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + InvestmentsByInvestorIdVarianceSampleCreatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdVarianceSampleCreatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InvestmentsByInvestorIdVarianceSampleDatetimeAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_DATETIME_ASC', + InvestmentsByInvestorIdVarianceSampleDatetimeDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_DATETIME_DESC', + InvestmentsByInvestorIdVarianceSampleIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_ID_ASC', + InvestmentsByInvestorIdVarianceSampleIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_ID_DESC', + InvestmentsByInvestorIdVarianceSampleInvestorIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_INVESTOR_ID_ASC', + InvestmentsByInvestorIdVarianceSampleInvestorIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_INVESTOR_ID_DESC', + InvestmentsByInvestorIdVarianceSampleOfferingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_ASC', + InvestmentsByInvestorIdVarianceSampleOfferingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_DESC', + InvestmentsByInvestorIdVarianceSampleOfferingTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdVarianceSampleOfferingTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdVarianceSampleOfferingTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_ASC', + InvestmentsByInvestorIdVarianceSampleOfferingTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_OFFERING_TOKEN_DESC', + InvestmentsByInvestorIdVarianceSampleRaiseTokenAmountAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_RAISE_TOKEN_AMOUNT_ASC', + InvestmentsByInvestorIdVarianceSampleRaiseTokenAmountDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_RAISE_TOKEN_AMOUNT_DESC', + InvestmentsByInvestorIdVarianceSampleRaiseTokenAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_RAISE_TOKEN_ASC', + InvestmentsByInvestorIdVarianceSampleRaiseTokenDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_RAISE_TOKEN_DESC', + InvestmentsByInvestorIdVarianceSampleRaisingAssetIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_ASC', + InvestmentsByInvestorIdVarianceSampleRaisingAssetIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_DESC', + InvestmentsByInvestorIdVarianceSampleStoIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_STO_ID_ASC', + InvestmentsByInvestorIdVarianceSampleStoIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_STO_ID_DESC', + InvestmentsByInvestorIdVarianceSampleUpdatedBlockIdAsc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InvestmentsByInvestorIdVarianceSampleUpdatedBlockIdDesc = 'INVESTMENTS_BY_INVESTOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdAverageAddressAsc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_ADDRESS_ASC', + MultiSigsByCreatorIdAverageAddressDesc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_ADDRESS_DESC', + MultiSigsByCreatorIdAverageBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_ASC', + MultiSigsByCreatorIdAverageBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_DESC', + MultiSigsByCreatorIdAverageCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_CREATED_AT_ASC', + MultiSigsByCreatorIdAverageCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_CREATED_AT_DESC', + MultiSigsByCreatorIdAverageCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdAverageCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdAverageCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorIdAverageCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorIdAverageCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_ASC', + MultiSigsByCreatorIdAverageCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_DESC', + MultiSigsByCreatorIdAverageIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_ID_ASC', + MultiSigsByCreatorIdAverageIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_ID_DESC', + MultiSigsByCreatorIdAverageSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorIdAverageSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorIdAverageUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdAverageUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdCountAsc = 'MULTI_SIGS_BY_CREATOR_ID_COUNT_ASC', + MultiSigsByCreatorIdCountDesc = 'MULTI_SIGS_BY_CREATOR_ID_COUNT_DESC', + MultiSigsByCreatorIdDistinctCountAddressAsc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_ADDRESS_ASC', + MultiSigsByCreatorIdDistinctCountAddressDesc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_ADDRESS_DESC', + MultiSigsByCreatorIdDistinctCountBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MultiSigsByCreatorIdDistinctCountBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MultiSigsByCreatorIdDistinctCountCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_ASC', + MultiSigsByCreatorIdDistinctCountCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_DESC', + MultiSigsByCreatorIdDistinctCountCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdDistinctCountCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdDistinctCountCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorIdDistinctCountCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorIdDistinctCountCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + MultiSigsByCreatorIdDistinctCountCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + MultiSigsByCreatorIdDistinctCountIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_ID_ASC', + MultiSigsByCreatorIdDistinctCountIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_ID_DESC', + MultiSigsByCreatorIdDistinctCountSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorIdDistinctCountSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorIdDistinctCountUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdDistinctCountUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdMaxAddressAsc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_ADDRESS_ASC', + MultiSigsByCreatorIdMaxAddressDesc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_ADDRESS_DESC', + MultiSigsByCreatorIdMaxBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_BLOCK_RANGE_ASC', + MultiSigsByCreatorIdMaxBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_BLOCK_RANGE_DESC', + MultiSigsByCreatorIdMaxCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_CREATED_AT_ASC', + MultiSigsByCreatorIdMaxCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_CREATED_AT_DESC', + MultiSigsByCreatorIdMaxCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdMaxCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdMaxCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorIdMaxCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorIdMaxCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_CREATOR_ID_ASC', + MultiSigsByCreatorIdMaxCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_CREATOR_ID_DESC', + MultiSigsByCreatorIdMaxIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_ID_ASC', + MultiSigsByCreatorIdMaxIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_ID_DESC', + MultiSigsByCreatorIdMaxSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorIdMaxSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorIdMaxUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdMaxUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdMinAddressAsc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_ADDRESS_ASC', + MultiSigsByCreatorIdMinAddressDesc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_ADDRESS_DESC', + MultiSigsByCreatorIdMinBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_BLOCK_RANGE_ASC', + MultiSigsByCreatorIdMinBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_BLOCK_RANGE_DESC', + MultiSigsByCreatorIdMinCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_CREATED_AT_ASC', + MultiSigsByCreatorIdMinCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_CREATED_AT_DESC', + MultiSigsByCreatorIdMinCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdMinCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdMinCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorIdMinCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorIdMinCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_CREATOR_ID_ASC', + MultiSigsByCreatorIdMinCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_CREATOR_ID_DESC', + MultiSigsByCreatorIdMinIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_ID_ASC', + MultiSigsByCreatorIdMinIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_ID_DESC', + MultiSigsByCreatorIdMinSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorIdMinSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorIdMinUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdMinUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdStddevPopulationAddressAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_ADDRESS_ASC', + MultiSigsByCreatorIdStddevPopulationAddressDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_ADDRESS_DESC', + MultiSigsByCreatorIdStddevPopulationBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MultiSigsByCreatorIdStddevPopulationBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MultiSigsByCreatorIdStddevPopulationCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_ASC', + MultiSigsByCreatorIdStddevPopulationCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_DESC', + MultiSigsByCreatorIdStddevPopulationCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdStddevPopulationCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdStddevPopulationCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorIdStddevPopulationCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorIdStddevPopulationCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + MultiSigsByCreatorIdStddevPopulationCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + MultiSigsByCreatorIdStddevPopulationIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_ID_ASC', + MultiSigsByCreatorIdStddevPopulationIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_ID_DESC', + MultiSigsByCreatorIdStddevPopulationSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorIdStddevPopulationSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorIdStddevPopulationUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdStddevPopulationUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdStddevSampleAddressAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_ADDRESS_ASC', + MultiSigsByCreatorIdStddevSampleAddressDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_ADDRESS_DESC', + MultiSigsByCreatorIdStddevSampleBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MultiSigsByCreatorIdStddevSampleBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MultiSigsByCreatorIdStddevSampleCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + MultiSigsByCreatorIdStddevSampleCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + MultiSigsByCreatorIdStddevSampleCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdStddevSampleCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdStddevSampleCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorIdStddevSampleCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorIdStddevSampleCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + MultiSigsByCreatorIdStddevSampleCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + MultiSigsByCreatorIdStddevSampleIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_ASC', + MultiSigsByCreatorIdStddevSampleIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_DESC', + MultiSigsByCreatorIdStddevSampleSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorIdStddevSampleSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorIdStddevSampleUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdStddevSampleUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdSumAddressAsc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_ADDRESS_ASC', + MultiSigsByCreatorIdSumAddressDesc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_ADDRESS_DESC', + MultiSigsByCreatorIdSumBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_BLOCK_RANGE_ASC', + MultiSigsByCreatorIdSumBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_BLOCK_RANGE_DESC', + MultiSigsByCreatorIdSumCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_CREATED_AT_ASC', + MultiSigsByCreatorIdSumCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_CREATED_AT_DESC', + MultiSigsByCreatorIdSumCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdSumCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdSumCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorIdSumCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorIdSumCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_CREATOR_ID_ASC', + MultiSigsByCreatorIdSumCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_CREATOR_ID_DESC', + MultiSigsByCreatorIdSumIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_ID_ASC', + MultiSigsByCreatorIdSumIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_ID_DESC', + MultiSigsByCreatorIdSumSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorIdSumSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorIdSumUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdSumUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdVariancePopulationAddressAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_ADDRESS_ASC', + MultiSigsByCreatorIdVariancePopulationAddressDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_ADDRESS_DESC', + MultiSigsByCreatorIdVariancePopulationBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MultiSigsByCreatorIdVariancePopulationBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MultiSigsByCreatorIdVariancePopulationCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + MultiSigsByCreatorIdVariancePopulationCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + MultiSigsByCreatorIdVariancePopulationCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdVariancePopulationCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdVariancePopulationCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorIdVariancePopulationCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorIdVariancePopulationCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + MultiSigsByCreatorIdVariancePopulationCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + MultiSigsByCreatorIdVariancePopulationIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_ASC', + MultiSigsByCreatorIdVariancePopulationIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_DESC', + MultiSigsByCreatorIdVariancePopulationSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorIdVariancePopulationSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorIdVariancePopulationUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdVariancePopulationUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdVarianceSampleAddressAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + MultiSigsByCreatorIdVarianceSampleAddressDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + MultiSigsByCreatorIdVarianceSampleBlockRangeAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MultiSigsByCreatorIdVarianceSampleBlockRangeDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MultiSigsByCreatorIdVarianceSampleCreatedAtAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + MultiSigsByCreatorIdVarianceSampleCreatedAtDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + MultiSigsByCreatorIdVarianceSampleCreatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdVarianceSampleCreatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigsByCreatorIdVarianceSampleCreatorAccountIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ID_ASC', + MultiSigsByCreatorIdVarianceSampleCreatorAccountIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ID_DESC', + MultiSigsByCreatorIdVarianceSampleCreatorIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + MultiSigsByCreatorIdVarianceSampleCreatorIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + MultiSigsByCreatorIdVarianceSampleIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_ASC', + MultiSigsByCreatorIdVarianceSampleIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_DESC', + MultiSigsByCreatorIdVarianceSampleSignaturesRequiredAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_SIGNATURES_REQUIRED_ASC', + MultiSigsByCreatorIdVarianceSampleSignaturesRequiredDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_SIGNATURES_REQUIRED_DESC', + MultiSigsByCreatorIdVarianceSampleUpdatedBlockIdAsc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigsByCreatorIdVarianceSampleUpdatedBlockIdDesc = 'MULTI_SIGS_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdAverageApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatorIdAverageApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatorIdAverageBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatorIdAverageBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatorIdAverageCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_CREATED_AT_ASC', + MultiSigProposalsByCreatorIdAverageCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_CREATED_AT_DESC', + MultiSigProposalsByCreatorIdAverageCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdAverageCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdAverageCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatorIdAverageCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatorIdAverageCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_ASC', + MultiSigProposalsByCreatorIdAverageCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_DESC', + MultiSigProposalsByCreatorIdAverageDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_DATETIME_ASC', + MultiSigProposalsByCreatorIdAverageDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_DATETIME_DESC', + MultiSigProposalsByCreatorIdAverageEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_EVENT_IDX_ASC', + MultiSigProposalsByCreatorIdAverageEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_EVENT_IDX_DESC', + MultiSigProposalsByCreatorIdAverageExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatorIdAverageExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatorIdAverageIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_ID_ASC', + MultiSigProposalsByCreatorIdAverageIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_ID_DESC', + MultiSigProposalsByCreatorIdAverageMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_MULTISIG_ID_ASC', + MultiSigProposalsByCreatorIdAverageMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_MULTISIG_ID_DESC', + MultiSigProposalsByCreatorIdAverageParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_PARAMS_ASC', + MultiSigProposalsByCreatorIdAverageParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_PARAMS_DESC', + MultiSigProposalsByCreatorIdAverageProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatorIdAverageProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatorIdAverageRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatorIdAverageRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatorIdAverageStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_STATUS_ASC', + MultiSigProposalsByCreatorIdAverageStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_STATUS_DESC', + MultiSigProposalsByCreatorIdAverageUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdAverageUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_COUNT_ASC', + MultiSigProposalsByCreatorIdCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_COUNT_DESC', + MultiSigProposalsByCreatorIdDistinctCountApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatorIdDistinctCountApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatorIdDistinctCountBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatorIdDistinctCountBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatorIdDistinctCountCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_ASC', + MultiSigProposalsByCreatorIdDistinctCountCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_DESC', + MultiSigProposalsByCreatorIdDistinctCountCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdDistinctCountCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdDistinctCountCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatorIdDistinctCountCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatorIdDistinctCountCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + MultiSigProposalsByCreatorIdDistinctCountCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + MultiSigProposalsByCreatorIdDistinctCountDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_DATETIME_ASC', + MultiSigProposalsByCreatorIdDistinctCountDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_DATETIME_DESC', + MultiSigProposalsByCreatorIdDistinctCountEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + MultiSigProposalsByCreatorIdDistinctCountEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + MultiSigProposalsByCreatorIdDistinctCountExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatorIdDistinctCountExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatorIdDistinctCountIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_ID_ASC', + MultiSigProposalsByCreatorIdDistinctCountIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_ID_DESC', + MultiSigProposalsByCreatorIdDistinctCountMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_MULTISIG_ID_ASC', + MultiSigProposalsByCreatorIdDistinctCountMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_MULTISIG_ID_DESC', + MultiSigProposalsByCreatorIdDistinctCountParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_PARAMS_ASC', + MultiSigProposalsByCreatorIdDistinctCountParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_PARAMS_DESC', + MultiSigProposalsByCreatorIdDistinctCountProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatorIdDistinctCountProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatorIdDistinctCountRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatorIdDistinctCountRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatorIdDistinctCountStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_STATUS_ASC', + MultiSigProposalsByCreatorIdDistinctCountStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_STATUS_DESC', + MultiSigProposalsByCreatorIdDistinctCountUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdDistinctCountUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdMaxApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatorIdMaxApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatorIdMaxBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatorIdMaxBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatorIdMaxCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_CREATED_AT_ASC', + MultiSigProposalsByCreatorIdMaxCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_CREATED_AT_DESC', + MultiSigProposalsByCreatorIdMaxCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdMaxCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdMaxCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatorIdMaxCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatorIdMaxCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_CREATOR_ID_ASC', + MultiSigProposalsByCreatorIdMaxCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_CREATOR_ID_DESC', + MultiSigProposalsByCreatorIdMaxDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_DATETIME_ASC', + MultiSigProposalsByCreatorIdMaxDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_DATETIME_DESC', + MultiSigProposalsByCreatorIdMaxEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_EVENT_IDX_ASC', + MultiSigProposalsByCreatorIdMaxEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_EVENT_IDX_DESC', + MultiSigProposalsByCreatorIdMaxExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatorIdMaxExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatorIdMaxIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_ID_ASC', + MultiSigProposalsByCreatorIdMaxIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_ID_DESC', + MultiSigProposalsByCreatorIdMaxMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_MULTISIG_ID_ASC', + MultiSigProposalsByCreatorIdMaxMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_MULTISIG_ID_DESC', + MultiSigProposalsByCreatorIdMaxParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_PARAMS_ASC', + MultiSigProposalsByCreatorIdMaxParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_PARAMS_DESC', + MultiSigProposalsByCreatorIdMaxProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatorIdMaxProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatorIdMaxRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatorIdMaxRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatorIdMaxStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_STATUS_ASC', + MultiSigProposalsByCreatorIdMaxStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_STATUS_DESC', + MultiSigProposalsByCreatorIdMaxUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdMaxUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdMinApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatorIdMinApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatorIdMinBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatorIdMinBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatorIdMinCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_CREATED_AT_ASC', + MultiSigProposalsByCreatorIdMinCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_CREATED_AT_DESC', + MultiSigProposalsByCreatorIdMinCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdMinCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdMinCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatorIdMinCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatorIdMinCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_CREATOR_ID_ASC', + MultiSigProposalsByCreatorIdMinCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_CREATOR_ID_DESC', + MultiSigProposalsByCreatorIdMinDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_DATETIME_ASC', + MultiSigProposalsByCreatorIdMinDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_DATETIME_DESC', + MultiSigProposalsByCreatorIdMinEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_EVENT_IDX_ASC', + MultiSigProposalsByCreatorIdMinEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_EVENT_IDX_DESC', + MultiSigProposalsByCreatorIdMinExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatorIdMinExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatorIdMinIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_ID_ASC', + MultiSigProposalsByCreatorIdMinIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_ID_DESC', + MultiSigProposalsByCreatorIdMinMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_MULTISIG_ID_ASC', + MultiSigProposalsByCreatorIdMinMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_MULTISIG_ID_DESC', + MultiSigProposalsByCreatorIdMinParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_PARAMS_ASC', + MultiSigProposalsByCreatorIdMinParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_PARAMS_DESC', + MultiSigProposalsByCreatorIdMinProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatorIdMinProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatorIdMinRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatorIdMinRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatorIdMinStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_STATUS_ASC', + MultiSigProposalsByCreatorIdMinStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_STATUS_DESC', + MultiSigProposalsByCreatorIdMinUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdMinUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdStddevPopulationApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatorIdStddevPopulationApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatorIdStddevPopulationBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatorIdStddevPopulationBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatorIdStddevPopulationCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_ASC', + MultiSigProposalsByCreatorIdStddevPopulationCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_DESC', + MultiSigProposalsByCreatorIdStddevPopulationCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdStddevPopulationCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdStddevPopulationCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatorIdStddevPopulationCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatorIdStddevPopulationCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + MultiSigProposalsByCreatorIdStddevPopulationCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + MultiSigProposalsByCreatorIdStddevPopulationDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_DATETIME_ASC', + MultiSigProposalsByCreatorIdStddevPopulationDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_DATETIME_DESC', + MultiSigProposalsByCreatorIdStddevPopulationEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + MultiSigProposalsByCreatorIdStddevPopulationEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + MultiSigProposalsByCreatorIdStddevPopulationExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatorIdStddevPopulationExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatorIdStddevPopulationIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_ID_ASC', + MultiSigProposalsByCreatorIdStddevPopulationIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_ID_DESC', + MultiSigProposalsByCreatorIdStddevPopulationMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_MULTISIG_ID_ASC', + MultiSigProposalsByCreatorIdStddevPopulationMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_MULTISIG_ID_DESC', + MultiSigProposalsByCreatorIdStddevPopulationParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_PARAMS_ASC', + MultiSigProposalsByCreatorIdStddevPopulationParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_PARAMS_DESC', + MultiSigProposalsByCreatorIdStddevPopulationProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatorIdStddevPopulationProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatorIdStddevPopulationRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatorIdStddevPopulationRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatorIdStddevPopulationStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_STATUS_ASC', + MultiSigProposalsByCreatorIdStddevPopulationStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_STATUS_DESC', + MultiSigProposalsByCreatorIdStddevPopulationUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdStddevPopulationUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdStddevSampleApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatorIdStddevSampleApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatorIdStddevSampleBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatorIdStddevSampleBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatorIdStddevSampleCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + MultiSigProposalsByCreatorIdStddevSampleCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + MultiSigProposalsByCreatorIdStddevSampleCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdStddevSampleCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdStddevSampleCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatorIdStddevSampleCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatorIdStddevSampleCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + MultiSigProposalsByCreatorIdStddevSampleCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + MultiSigProposalsByCreatorIdStddevSampleDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_DATETIME_ASC', + MultiSigProposalsByCreatorIdStddevSampleDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_DATETIME_DESC', + MultiSigProposalsByCreatorIdStddevSampleEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + MultiSigProposalsByCreatorIdStddevSampleEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + MultiSigProposalsByCreatorIdStddevSampleExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatorIdStddevSampleExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatorIdStddevSampleIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_ASC', + MultiSigProposalsByCreatorIdStddevSampleIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_DESC', + MultiSigProposalsByCreatorIdStddevSampleMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_MULTISIG_ID_ASC', + MultiSigProposalsByCreatorIdStddevSampleMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_MULTISIG_ID_DESC', + MultiSigProposalsByCreatorIdStddevSampleParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_PARAMS_ASC', + MultiSigProposalsByCreatorIdStddevSampleParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_PARAMS_DESC', + MultiSigProposalsByCreatorIdStddevSampleProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatorIdStddevSampleProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatorIdStddevSampleRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatorIdStddevSampleRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatorIdStddevSampleStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_STATUS_ASC', + MultiSigProposalsByCreatorIdStddevSampleStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_STATUS_DESC', + MultiSigProposalsByCreatorIdStddevSampleUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdStddevSampleUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdSumApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatorIdSumApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatorIdSumBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatorIdSumBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatorIdSumCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_CREATED_AT_ASC', + MultiSigProposalsByCreatorIdSumCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_CREATED_AT_DESC', + MultiSigProposalsByCreatorIdSumCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdSumCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdSumCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatorIdSumCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatorIdSumCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_CREATOR_ID_ASC', + MultiSigProposalsByCreatorIdSumCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_CREATOR_ID_DESC', + MultiSigProposalsByCreatorIdSumDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_DATETIME_ASC', + MultiSigProposalsByCreatorIdSumDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_DATETIME_DESC', + MultiSigProposalsByCreatorIdSumEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_EVENT_IDX_ASC', + MultiSigProposalsByCreatorIdSumEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_EVENT_IDX_DESC', + MultiSigProposalsByCreatorIdSumExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatorIdSumExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatorIdSumIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_ID_ASC', + MultiSigProposalsByCreatorIdSumIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_ID_DESC', + MultiSigProposalsByCreatorIdSumMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_MULTISIG_ID_ASC', + MultiSigProposalsByCreatorIdSumMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_MULTISIG_ID_DESC', + MultiSigProposalsByCreatorIdSumParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_PARAMS_ASC', + MultiSigProposalsByCreatorIdSumParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_PARAMS_DESC', + MultiSigProposalsByCreatorIdSumProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatorIdSumProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatorIdSumRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatorIdSumRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatorIdSumStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_STATUS_ASC', + MultiSigProposalsByCreatorIdSumStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_STATUS_DESC', + MultiSigProposalsByCreatorIdSumUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdSumUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdVariancePopulationApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatorIdVariancePopulationApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatorIdVariancePopulationBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatorIdVariancePopulationBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatorIdVariancePopulationCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + MultiSigProposalsByCreatorIdVariancePopulationCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + MultiSigProposalsByCreatorIdVariancePopulationCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdVariancePopulationCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdVariancePopulationCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatorIdVariancePopulationCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatorIdVariancePopulationCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + MultiSigProposalsByCreatorIdVariancePopulationCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + MultiSigProposalsByCreatorIdVariancePopulationDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_DATETIME_ASC', + MultiSigProposalsByCreatorIdVariancePopulationDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_DATETIME_DESC', + MultiSigProposalsByCreatorIdVariancePopulationEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + MultiSigProposalsByCreatorIdVariancePopulationEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + MultiSigProposalsByCreatorIdVariancePopulationExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatorIdVariancePopulationExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatorIdVariancePopulationIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_ASC', + MultiSigProposalsByCreatorIdVariancePopulationIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_DESC', + MultiSigProposalsByCreatorIdVariancePopulationMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_MULTISIG_ID_ASC', + MultiSigProposalsByCreatorIdVariancePopulationMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_MULTISIG_ID_DESC', + MultiSigProposalsByCreatorIdVariancePopulationParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_PARAMS_ASC', + MultiSigProposalsByCreatorIdVariancePopulationParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_PARAMS_DESC', + MultiSigProposalsByCreatorIdVariancePopulationProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatorIdVariancePopulationProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatorIdVariancePopulationRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatorIdVariancePopulationRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatorIdVariancePopulationStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_STATUS_ASC', + MultiSigProposalsByCreatorIdVariancePopulationStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_STATUS_DESC', + MultiSigProposalsByCreatorIdVariancePopulationUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdVariancePopulationUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdVarianceSampleApprovalCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_APPROVAL_COUNT_ASC', + MultiSigProposalsByCreatorIdVarianceSampleApprovalCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_APPROVAL_COUNT_DESC', + MultiSigProposalsByCreatorIdVarianceSampleBlockRangeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + MultiSigProposalsByCreatorIdVarianceSampleBlockRangeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + MultiSigProposalsByCreatorIdVarianceSampleCreatedAtAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + MultiSigProposalsByCreatorIdVarianceSampleCreatedAtDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + MultiSigProposalsByCreatorIdVarianceSampleCreatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdVarianceSampleCreatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + MultiSigProposalsByCreatorIdVarianceSampleCreatorAccountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ASC', + MultiSigProposalsByCreatorIdVarianceSampleCreatorAccountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ACCOUNT_DESC', + MultiSigProposalsByCreatorIdVarianceSampleCreatorIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + MultiSigProposalsByCreatorIdVarianceSampleCreatorIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + MultiSigProposalsByCreatorIdVarianceSampleDatetimeAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_DATETIME_ASC', + MultiSigProposalsByCreatorIdVarianceSampleDatetimeDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_DATETIME_DESC', + MultiSigProposalsByCreatorIdVarianceSampleEventIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + MultiSigProposalsByCreatorIdVarianceSampleEventIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + MultiSigProposalsByCreatorIdVarianceSampleExtrinsicIdxAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + MultiSigProposalsByCreatorIdVarianceSampleExtrinsicIdxDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + MultiSigProposalsByCreatorIdVarianceSampleIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_ASC', + MultiSigProposalsByCreatorIdVarianceSampleIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_DESC', + MultiSigProposalsByCreatorIdVarianceSampleMultisigIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_MULTISIG_ID_ASC', + MultiSigProposalsByCreatorIdVarianceSampleMultisigIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_MULTISIG_ID_DESC', + MultiSigProposalsByCreatorIdVarianceSampleParamsAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_PARAMS_ASC', + MultiSigProposalsByCreatorIdVarianceSampleParamsDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_PARAMS_DESC', + MultiSigProposalsByCreatorIdVarianceSampleProposalIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', + MultiSigProposalsByCreatorIdVarianceSampleProposalIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', + MultiSigProposalsByCreatorIdVarianceSampleRejectionCountAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_REJECTION_COUNT_ASC', + MultiSigProposalsByCreatorIdVarianceSampleRejectionCountDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_REJECTION_COUNT_DESC', + MultiSigProposalsByCreatorIdVarianceSampleStatusAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_STATUS_ASC', + MultiSigProposalsByCreatorIdVarianceSampleStatusDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_STATUS_DESC', + MultiSigProposalsByCreatorIdVarianceSampleUpdatedBlockIdAsc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + MultiSigProposalsByCreatorIdVarianceSampleUpdatedBlockIdDesc = 'MULTI_SIG_PROPOSALS_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + Natural = 'NATURAL', + ParentChildIdentitiesAverageBlockRangeAsc = 'PARENT_CHILD_IDENTITIES_AVERAGE_BLOCK_RANGE_ASC', + ParentChildIdentitiesAverageBlockRangeDesc = 'PARENT_CHILD_IDENTITIES_AVERAGE_BLOCK_RANGE_DESC', + ParentChildIdentitiesAverageChildIdAsc = 'PARENT_CHILD_IDENTITIES_AVERAGE_CHILD_ID_ASC', + ParentChildIdentitiesAverageChildIdDesc = 'PARENT_CHILD_IDENTITIES_AVERAGE_CHILD_ID_DESC', + ParentChildIdentitiesAverageCreatedAtAsc = 'PARENT_CHILD_IDENTITIES_AVERAGE_CREATED_AT_ASC', + ParentChildIdentitiesAverageCreatedAtDesc = 'PARENT_CHILD_IDENTITIES_AVERAGE_CREATED_AT_DESC', + ParentChildIdentitiesAverageCreatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_AVERAGE_CREATED_BLOCK_ID_ASC', + ParentChildIdentitiesAverageCreatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_AVERAGE_CREATED_BLOCK_ID_DESC', + ParentChildIdentitiesAverageIdAsc = 'PARENT_CHILD_IDENTITIES_AVERAGE_ID_ASC', + ParentChildIdentitiesAverageIdDesc = 'PARENT_CHILD_IDENTITIES_AVERAGE_ID_DESC', + ParentChildIdentitiesAverageParentIdAsc = 'PARENT_CHILD_IDENTITIES_AVERAGE_PARENT_ID_ASC', + ParentChildIdentitiesAverageParentIdDesc = 'PARENT_CHILD_IDENTITIES_AVERAGE_PARENT_ID_DESC', + ParentChildIdentitiesAverageUpdatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_AVERAGE_UPDATED_BLOCK_ID_ASC', + ParentChildIdentitiesAverageUpdatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_AVERAGE_UPDATED_BLOCK_ID_DESC', + ParentChildIdentitiesCountAsc = 'PARENT_CHILD_IDENTITIES_COUNT_ASC', + ParentChildIdentitiesCountDesc = 'PARENT_CHILD_IDENTITIES_COUNT_DESC', + ParentChildIdentitiesDistinctCountBlockRangeAsc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ParentChildIdentitiesDistinctCountBlockRangeDesc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ParentChildIdentitiesDistinctCountChildIdAsc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_CHILD_ID_ASC', + ParentChildIdentitiesDistinctCountChildIdDesc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_CHILD_ID_DESC', + ParentChildIdentitiesDistinctCountCreatedAtAsc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_CREATED_AT_ASC', + ParentChildIdentitiesDistinctCountCreatedAtDesc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_CREATED_AT_DESC', + ParentChildIdentitiesDistinctCountCreatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ParentChildIdentitiesDistinctCountCreatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ParentChildIdentitiesDistinctCountIdAsc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_ID_ASC', + ParentChildIdentitiesDistinctCountIdDesc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_ID_DESC', + ParentChildIdentitiesDistinctCountParentIdAsc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_PARENT_ID_ASC', + ParentChildIdentitiesDistinctCountParentIdDesc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_PARENT_ID_DESC', + ParentChildIdentitiesDistinctCountUpdatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ParentChildIdentitiesDistinctCountUpdatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ParentChildIdentitiesMaxBlockRangeAsc = 'PARENT_CHILD_IDENTITIES_MAX_BLOCK_RANGE_ASC', + ParentChildIdentitiesMaxBlockRangeDesc = 'PARENT_CHILD_IDENTITIES_MAX_BLOCK_RANGE_DESC', + ParentChildIdentitiesMaxChildIdAsc = 'PARENT_CHILD_IDENTITIES_MAX_CHILD_ID_ASC', + ParentChildIdentitiesMaxChildIdDesc = 'PARENT_CHILD_IDENTITIES_MAX_CHILD_ID_DESC', + ParentChildIdentitiesMaxCreatedAtAsc = 'PARENT_CHILD_IDENTITIES_MAX_CREATED_AT_ASC', + ParentChildIdentitiesMaxCreatedAtDesc = 'PARENT_CHILD_IDENTITIES_MAX_CREATED_AT_DESC', + ParentChildIdentitiesMaxCreatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_MAX_CREATED_BLOCK_ID_ASC', + ParentChildIdentitiesMaxCreatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_MAX_CREATED_BLOCK_ID_DESC', + ParentChildIdentitiesMaxIdAsc = 'PARENT_CHILD_IDENTITIES_MAX_ID_ASC', + ParentChildIdentitiesMaxIdDesc = 'PARENT_CHILD_IDENTITIES_MAX_ID_DESC', + ParentChildIdentitiesMaxParentIdAsc = 'PARENT_CHILD_IDENTITIES_MAX_PARENT_ID_ASC', + ParentChildIdentitiesMaxParentIdDesc = 'PARENT_CHILD_IDENTITIES_MAX_PARENT_ID_DESC', + ParentChildIdentitiesMaxUpdatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_MAX_UPDATED_BLOCK_ID_ASC', + ParentChildIdentitiesMaxUpdatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_MAX_UPDATED_BLOCK_ID_DESC', + ParentChildIdentitiesMinBlockRangeAsc = 'PARENT_CHILD_IDENTITIES_MIN_BLOCK_RANGE_ASC', + ParentChildIdentitiesMinBlockRangeDesc = 'PARENT_CHILD_IDENTITIES_MIN_BLOCK_RANGE_DESC', + ParentChildIdentitiesMinChildIdAsc = 'PARENT_CHILD_IDENTITIES_MIN_CHILD_ID_ASC', + ParentChildIdentitiesMinChildIdDesc = 'PARENT_CHILD_IDENTITIES_MIN_CHILD_ID_DESC', + ParentChildIdentitiesMinCreatedAtAsc = 'PARENT_CHILD_IDENTITIES_MIN_CREATED_AT_ASC', + ParentChildIdentitiesMinCreatedAtDesc = 'PARENT_CHILD_IDENTITIES_MIN_CREATED_AT_DESC', + ParentChildIdentitiesMinCreatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_MIN_CREATED_BLOCK_ID_ASC', + ParentChildIdentitiesMinCreatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_MIN_CREATED_BLOCK_ID_DESC', + ParentChildIdentitiesMinIdAsc = 'PARENT_CHILD_IDENTITIES_MIN_ID_ASC', + ParentChildIdentitiesMinIdDesc = 'PARENT_CHILD_IDENTITIES_MIN_ID_DESC', + ParentChildIdentitiesMinParentIdAsc = 'PARENT_CHILD_IDENTITIES_MIN_PARENT_ID_ASC', + ParentChildIdentitiesMinParentIdDesc = 'PARENT_CHILD_IDENTITIES_MIN_PARENT_ID_DESC', + ParentChildIdentitiesMinUpdatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_MIN_UPDATED_BLOCK_ID_ASC', + ParentChildIdentitiesMinUpdatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_MIN_UPDATED_BLOCK_ID_DESC', + ParentChildIdentitiesStddevPopulationBlockRangeAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ParentChildIdentitiesStddevPopulationBlockRangeDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ParentChildIdentitiesStddevPopulationChildIdAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_CHILD_ID_ASC', + ParentChildIdentitiesStddevPopulationChildIdDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_CHILD_ID_DESC', + ParentChildIdentitiesStddevPopulationCreatedAtAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_CREATED_AT_ASC', + ParentChildIdentitiesStddevPopulationCreatedAtDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_CREATED_AT_DESC', + ParentChildIdentitiesStddevPopulationCreatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ParentChildIdentitiesStddevPopulationCreatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ParentChildIdentitiesStddevPopulationIdAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_ID_ASC', + ParentChildIdentitiesStddevPopulationIdDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_ID_DESC', + ParentChildIdentitiesStddevPopulationParentIdAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_PARENT_ID_ASC', + ParentChildIdentitiesStddevPopulationParentIdDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_PARENT_ID_DESC', + ParentChildIdentitiesStddevPopulationUpdatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ParentChildIdentitiesStddevPopulationUpdatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ParentChildIdentitiesStddevSampleBlockRangeAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ParentChildIdentitiesStddevSampleBlockRangeDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ParentChildIdentitiesStddevSampleChildIdAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_CHILD_ID_ASC', + ParentChildIdentitiesStddevSampleChildIdDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_CHILD_ID_DESC', + ParentChildIdentitiesStddevSampleCreatedAtAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_CREATED_AT_ASC', + ParentChildIdentitiesStddevSampleCreatedAtDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_CREATED_AT_DESC', + ParentChildIdentitiesStddevSampleCreatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ParentChildIdentitiesStddevSampleCreatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ParentChildIdentitiesStddevSampleIdAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_ID_ASC', + ParentChildIdentitiesStddevSampleIdDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_ID_DESC', + ParentChildIdentitiesStddevSampleParentIdAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_PARENT_ID_ASC', + ParentChildIdentitiesStddevSampleParentIdDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_PARENT_ID_DESC', + ParentChildIdentitiesStddevSampleUpdatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ParentChildIdentitiesStddevSampleUpdatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ParentChildIdentitiesSumBlockRangeAsc = 'PARENT_CHILD_IDENTITIES_SUM_BLOCK_RANGE_ASC', + ParentChildIdentitiesSumBlockRangeDesc = 'PARENT_CHILD_IDENTITIES_SUM_BLOCK_RANGE_DESC', + ParentChildIdentitiesSumChildIdAsc = 'PARENT_CHILD_IDENTITIES_SUM_CHILD_ID_ASC', + ParentChildIdentitiesSumChildIdDesc = 'PARENT_CHILD_IDENTITIES_SUM_CHILD_ID_DESC', + ParentChildIdentitiesSumCreatedAtAsc = 'PARENT_CHILD_IDENTITIES_SUM_CREATED_AT_ASC', + ParentChildIdentitiesSumCreatedAtDesc = 'PARENT_CHILD_IDENTITIES_SUM_CREATED_AT_DESC', + ParentChildIdentitiesSumCreatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_SUM_CREATED_BLOCK_ID_ASC', + ParentChildIdentitiesSumCreatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_SUM_CREATED_BLOCK_ID_DESC', + ParentChildIdentitiesSumIdAsc = 'PARENT_CHILD_IDENTITIES_SUM_ID_ASC', + ParentChildIdentitiesSumIdDesc = 'PARENT_CHILD_IDENTITIES_SUM_ID_DESC', + ParentChildIdentitiesSumParentIdAsc = 'PARENT_CHILD_IDENTITIES_SUM_PARENT_ID_ASC', + ParentChildIdentitiesSumParentIdDesc = 'PARENT_CHILD_IDENTITIES_SUM_PARENT_ID_DESC', + ParentChildIdentitiesSumUpdatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_SUM_UPDATED_BLOCK_ID_ASC', + ParentChildIdentitiesSumUpdatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_SUM_UPDATED_BLOCK_ID_DESC', + ParentChildIdentitiesVariancePopulationBlockRangeAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ParentChildIdentitiesVariancePopulationBlockRangeDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ParentChildIdentitiesVariancePopulationChildIdAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_CHILD_ID_ASC', + ParentChildIdentitiesVariancePopulationChildIdDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_CHILD_ID_DESC', + ParentChildIdentitiesVariancePopulationCreatedAtAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_CREATED_AT_ASC', + ParentChildIdentitiesVariancePopulationCreatedAtDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_CREATED_AT_DESC', + ParentChildIdentitiesVariancePopulationCreatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ParentChildIdentitiesVariancePopulationCreatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ParentChildIdentitiesVariancePopulationIdAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_ID_ASC', + ParentChildIdentitiesVariancePopulationIdDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_ID_DESC', + ParentChildIdentitiesVariancePopulationParentIdAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_PARENT_ID_ASC', + ParentChildIdentitiesVariancePopulationParentIdDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_PARENT_ID_DESC', + ParentChildIdentitiesVariancePopulationUpdatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ParentChildIdentitiesVariancePopulationUpdatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ParentChildIdentitiesVarianceSampleBlockRangeAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ParentChildIdentitiesVarianceSampleBlockRangeDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ParentChildIdentitiesVarianceSampleChildIdAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_CHILD_ID_ASC', + ParentChildIdentitiesVarianceSampleChildIdDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_CHILD_ID_DESC', + ParentChildIdentitiesVarianceSampleCreatedAtAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_CREATED_AT_ASC', + ParentChildIdentitiesVarianceSampleCreatedAtDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_CREATED_AT_DESC', + ParentChildIdentitiesVarianceSampleCreatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ParentChildIdentitiesVarianceSampleCreatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ParentChildIdentitiesVarianceSampleIdAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_ID_ASC', + ParentChildIdentitiesVarianceSampleIdDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_ID_DESC', + ParentChildIdentitiesVarianceSampleParentIdAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_PARENT_ID_ASC', + ParentChildIdentitiesVarianceSampleParentIdDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_PARENT_ID_DESC', + ParentChildIdentitiesVarianceSampleUpdatedBlockIdAsc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ParentChildIdentitiesVarianceSampleUpdatedBlockIdDesc = 'PARENT_CHILD_IDENTITIES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfoliosAverageBlockRangeAsc = 'PORTFOLIOS_AVERAGE_BLOCK_RANGE_ASC', + PortfoliosAverageBlockRangeDesc = 'PORTFOLIOS_AVERAGE_BLOCK_RANGE_DESC', + PortfoliosAverageCreatedAtAsc = 'PORTFOLIOS_AVERAGE_CREATED_AT_ASC', + PortfoliosAverageCreatedAtDesc = 'PORTFOLIOS_AVERAGE_CREATED_AT_DESC', + PortfoliosAverageCreatedBlockIdAsc = 'PORTFOLIOS_AVERAGE_CREATED_BLOCK_ID_ASC', + PortfoliosAverageCreatedBlockIdDesc = 'PORTFOLIOS_AVERAGE_CREATED_BLOCK_ID_DESC', + PortfoliosAverageCustodianIdAsc = 'PORTFOLIOS_AVERAGE_CUSTODIAN_ID_ASC', + PortfoliosAverageCustodianIdDesc = 'PORTFOLIOS_AVERAGE_CUSTODIAN_ID_DESC', + PortfoliosAverageDeletedAtAsc = 'PORTFOLIOS_AVERAGE_DELETED_AT_ASC', + PortfoliosAverageDeletedAtDesc = 'PORTFOLIOS_AVERAGE_DELETED_AT_DESC', + PortfoliosAverageEventIdxAsc = 'PORTFOLIOS_AVERAGE_EVENT_IDX_ASC', + PortfoliosAverageEventIdxDesc = 'PORTFOLIOS_AVERAGE_EVENT_IDX_DESC', + PortfoliosAverageIdentityIdAsc = 'PORTFOLIOS_AVERAGE_IDENTITY_ID_ASC', + PortfoliosAverageIdentityIdDesc = 'PORTFOLIOS_AVERAGE_IDENTITY_ID_DESC', + PortfoliosAverageIdAsc = 'PORTFOLIOS_AVERAGE_ID_ASC', + PortfoliosAverageIdDesc = 'PORTFOLIOS_AVERAGE_ID_DESC', + PortfoliosAverageNameAsc = 'PORTFOLIOS_AVERAGE_NAME_ASC', + PortfoliosAverageNameDesc = 'PORTFOLIOS_AVERAGE_NAME_DESC', + PortfoliosAverageNumberAsc = 'PORTFOLIOS_AVERAGE_NUMBER_ASC', + PortfoliosAverageNumberDesc = 'PORTFOLIOS_AVERAGE_NUMBER_DESC', + PortfoliosAverageUpdatedBlockIdAsc = 'PORTFOLIOS_AVERAGE_UPDATED_BLOCK_ID_ASC', + PortfoliosAverageUpdatedBlockIdDesc = 'PORTFOLIOS_AVERAGE_UPDATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdAverageBlockRangeAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_BLOCK_RANGE_ASC', + PortfoliosByCustodianIdAverageBlockRangeDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_BLOCK_RANGE_DESC', + PortfoliosByCustodianIdAverageCreatedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_CREATED_AT_ASC', + PortfoliosByCustodianIdAverageCreatedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_CREATED_AT_DESC', + PortfoliosByCustodianIdAverageCreatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdAverageCreatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdAverageCustodianIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_CUSTODIAN_ID_ASC', + PortfoliosByCustodianIdAverageCustodianIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_CUSTODIAN_ID_DESC', + PortfoliosByCustodianIdAverageDeletedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_DELETED_AT_ASC', + PortfoliosByCustodianIdAverageDeletedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_DELETED_AT_DESC', + PortfoliosByCustodianIdAverageEventIdxAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_EVENT_IDX_ASC', + PortfoliosByCustodianIdAverageEventIdxDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_EVENT_IDX_DESC', + PortfoliosByCustodianIdAverageIdentityIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_IDENTITY_ID_ASC', + PortfoliosByCustodianIdAverageIdentityIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_IDENTITY_ID_DESC', + PortfoliosByCustodianIdAverageIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_ID_ASC', + PortfoliosByCustodianIdAverageIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_ID_DESC', + PortfoliosByCustodianIdAverageNameAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_NAME_ASC', + PortfoliosByCustodianIdAverageNameDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_NAME_DESC', + PortfoliosByCustodianIdAverageNumberAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_NUMBER_ASC', + PortfoliosByCustodianIdAverageNumberDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_NUMBER_DESC', + PortfoliosByCustodianIdAverageUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdAverageUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdCountAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_COUNT_ASC', + PortfoliosByCustodianIdCountDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_COUNT_DESC', + PortfoliosByCustodianIdDistinctCountBlockRangeAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PortfoliosByCustodianIdDistinctCountBlockRangeDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PortfoliosByCustodianIdDistinctCountCreatedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_CREATED_AT_ASC', + PortfoliosByCustodianIdDistinctCountCreatedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_CREATED_AT_DESC', + PortfoliosByCustodianIdDistinctCountCreatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdDistinctCountCreatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdDistinctCountCustodianIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_CUSTODIAN_ID_ASC', + PortfoliosByCustodianIdDistinctCountCustodianIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_CUSTODIAN_ID_DESC', + PortfoliosByCustodianIdDistinctCountDeletedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_DELETED_AT_ASC', + PortfoliosByCustodianIdDistinctCountDeletedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_DELETED_AT_DESC', + PortfoliosByCustodianIdDistinctCountEventIdxAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + PortfoliosByCustodianIdDistinctCountEventIdxDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + PortfoliosByCustodianIdDistinctCountIdentityIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + PortfoliosByCustodianIdDistinctCountIdentityIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + PortfoliosByCustodianIdDistinctCountIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_ID_ASC', + PortfoliosByCustodianIdDistinctCountIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_ID_DESC', + PortfoliosByCustodianIdDistinctCountNameAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_NAME_ASC', + PortfoliosByCustodianIdDistinctCountNameDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_NAME_DESC', + PortfoliosByCustodianIdDistinctCountNumberAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_NUMBER_ASC', + PortfoliosByCustodianIdDistinctCountNumberDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_NUMBER_DESC', + PortfoliosByCustodianIdDistinctCountUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdDistinctCountUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdMaxBlockRangeAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_BLOCK_RANGE_ASC', + PortfoliosByCustodianIdMaxBlockRangeDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_BLOCK_RANGE_DESC', + PortfoliosByCustodianIdMaxCreatedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_CREATED_AT_ASC', + PortfoliosByCustodianIdMaxCreatedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_CREATED_AT_DESC', + PortfoliosByCustodianIdMaxCreatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_CREATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdMaxCreatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_CREATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdMaxCustodianIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_CUSTODIAN_ID_ASC', + PortfoliosByCustodianIdMaxCustodianIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_CUSTODIAN_ID_DESC', + PortfoliosByCustodianIdMaxDeletedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_DELETED_AT_ASC', + PortfoliosByCustodianIdMaxDeletedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_DELETED_AT_DESC', + PortfoliosByCustodianIdMaxEventIdxAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_EVENT_IDX_ASC', + PortfoliosByCustodianIdMaxEventIdxDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_EVENT_IDX_DESC', + PortfoliosByCustodianIdMaxIdentityIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_IDENTITY_ID_ASC', + PortfoliosByCustodianIdMaxIdentityIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_IDENTITY_ID_DESC', + PortfoliosByCustodianIdMaxIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_ID_ASC', + PortfoliosByCustodianIdMaxIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_ID_DESC', + PortfoliosByCustodianIdMaxNameAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_NAME_ASC', + PortfoliosByCustodianIdMaxNameDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_NAME_DESC', + PortfoliosByCustodianIdMaxNumberAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_NUMBER_ASC', + PortfoliosByCustodianIdMaxNumberDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_NUMBER_DESC', + PortfoliosByCustodianIdMaxUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_UPDATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdMaxUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MAX_UPDATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdMinBlockRangeAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_BLOCK_RANGE_ASC', + PortfoliosByCustodianIdMinBlockRangeDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_BLOCK_RANGE_DESC', + PortfoliosByCustodianIdMinCreatedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_CREATED_AT_ASC', + PortfoliosByCustodianIdMinCreatedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_CREATED_AT_DESC', + PortfoliosByCustodianIdMinCreatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_CREATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdMinCreatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_CREATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdMinCustodianIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_CUSTODIAN_ID_ASC', + PortfoliosByCustodianIdMinCustodianIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_CUSTODIAN_ID_DESC', + PortfoliosByCustodianIdMinDeletedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_DELETED_AT_ASC', + PortfoliosByCustodianIdMinDeletedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_DELETED_AT_DESC', + PortfoliosByCustodianIdMinEventIdxAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_EVENT_IDX_ASC', + PortfoliosByCustodianIdMinEventIdxDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_EVENT_IDX_DESC', + PortfoliosByCustodianIdMinIdentityIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_IDENTITY_ID_ASC', + PortfoliosByCustodianIdMinIdentityIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_IDENTITY_ID_DESC', + PortfoliosByCustodianIdMinIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_ID_ASC', + PortfoliosByCustodianIdMinIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_ID_DESC', + PortfoliosByCustodianIdMinNameAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_NAME_ASC', + PortfoliosByCustodianIdMinNameDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_NAME_DESC', + PortfoliosByCustodianIdMinNumberAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_NUMBER_ASC', + PortfoliosByCustodianIdMinNumberDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_NUMBER_DESC', + PortfoliosByCustodianIdMinUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_UPDATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdMinUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_MIN_UPDATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdStddevPopulationBlockRangeAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PortfoliosByCustodianIdStddevPopulationBlockRangeDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PortfoliosByCustodianIdStddevPopulationCreatedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_CREATED_AT_ASC', + PortfoliosByCustodianIdStddevPopulationCreatedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_CREATED_AT_DESC', + PortfoliosByCustodianIdStddevPopulationCreatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdStddevPopulationCreatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdStddevPopulationCustodianIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_CUSTODIAN_ID_ASC', + PortfoliosByCustodianIdStddevPopulationCustodianIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_CUSTODIAN_ID_DESC', + PortfoliosByCustodianIdStddevPopulationDeletedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_DELETED_AT_ASC', + PortfoliosByCustodianIdStddevPopulationDeletedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_DELETED_AT_DESC', + PortfoliosByCustodianIdStddevPopulationEventIdxAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + PortfoliosByCustodianIdStddevPopulationEventIdxDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + PortfoliosByCustodianIdStddevPopulationIdentityIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + PortfoliosByCustodianIdStddevPopulationIdentityIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + PortfoliosByCustodianIdStddevPopulationIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_ID_ASC', + PortfoliosByCustodianIdStddevPopulationIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_ID_DESC', + PortfoliosByCustodianIdStddevPopulationNameAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_NAME_ASC', + PortfoliosByCustodianIdStddevPopulationNameDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_NAME_DESC', + PortfoliosByCustodianIdStddevPopulationNumberAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_NUMBER_ASC', + PortfoliosByCustodianIdStddevPopulationNumberDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_NUMBER_DESC', + PortfoliosByCustodianIdStddevPopulationUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdStddevPopulationUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdStddevSampleBlockRangeAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PortfoliosByCustodianIdStddevSampleBlockRangeDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PortfoliosByCustodianIdStddevSampleCreatedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + PortfoliosByCustodianIdStddevSampleCreatedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + PortfoliosByCustodianIdStddevSampleCreatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdStddevSampleCreatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdStddevSampleCustodianIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_CUSTODIAN_ID_ASC', + PortfoliosByCustodianIdStddevSampleCustodianIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_CUSTODIAN_ID_DESC', + PortfoliosByCustodianIdStddevSampleDeletedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_DELETED_AT_ASC', + PortfoliosByCustodianIdStddevSampleDeletedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_DELETED_AT_DESC', + PortfoliosByCustodianIdStddevSampleEventIdxAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + PortfoliosByCustodianIdStddevSampleEventIdxDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + PortfoliosByCustodianIdStddevSampleIdentityIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + PortfoliosByCustodianIdStddevSampleIdentityIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + PortfoliosByCustodianIdStddevSampleIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_ID_ASC', + PortfoliosByCustodianIdStddevSampleIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_ID_DESC', + PortfoliosByCustodianIdStddevSampleNameAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_NAME_ASC', + PortfoliosByCustodianIdStddevSampleNameDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_NAME_DESC', + PortfoliosByCustodianIdStddevSampleNumberAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_NUMBER_ASC', + PortfoliosByCustodianIdStddevSampleNumberDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_NUMBER_DESC', + PortfoliosByCustodianIdStddevSampleUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdStddevSampleUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdSumBlockRangeAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_BLOCK_RANGE_ASC', + PortfoliosByCustodianIdSumBlockRangeDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_BLOCK_RANGE_DESC', + PortfoliosByCustodianIdSumCreatedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_CREATED_AT_ASC', + PortfoliosByCustodianIdSumCreatedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_CREATED_AT_DESC', + PortfoliosByCustodianIdSumCreatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_CREATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdSumCreatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_CREATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdSumCustodianIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_CUSTODIAN_ID_ASC', + PortfoliosByCustodianIdSumCustodianIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_CUSTODIAN_ID_DESC', + PortfoliosByCustodianIdSumDeletedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_DELETED_AT_ASC', + PortfoliosByCustodianIdSumDeletedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_DELETED_AT_DESC', + PortfoliosByCustodianIdSumEventIdxAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_EVENT_IDX_ASC', + PortfoliosByCustodianIdSumEventIdxDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_EVENT_IDX_DESC', + PortfoliosByCustodianIdSumIdentityIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_IDENTITY_ID_ASC', + PortfoliosByCustodianIdSumIdentityIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_IDENTITY_ID_DESC', + PortfoliosByCustodianIdSumIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_ID_ASC', + PortfoliosByCustodianIdSumIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_ID_DESC', + PortfoliosByCustodianIdSumNameAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_NAME_ASC', + PortfoliosByCustodianIdSumNameDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_NAME_DESC', + PortfoliosByCustodianIdSumNumberAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_NUMBER_ASC', + PortfoliosByCustodianIdSumNumberDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_NUMBER_DESC', + PortfoliosByCustodianIdSumUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_UPDATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdSumUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_SUM_UPDATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdVariancePopulationBlockRangeAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PortfoliosByCustodianIdVariancePopulationBlockRangeDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PortfoliosByCustodianIdVariancePopulationCreatedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + PortfoliosByCustodianIdVariancePopulationCreatedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + PortfoliosByCustodianIdVariancePopulationCreatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdVariancePopulationCreatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdVariancePopulationCustodianIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_CUSTODIAN_ID_ASC', + PortfoliosByCustodianIdVariancePopulationCustodianIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_CUSTODIAN_ID_DESC', + PortfoliosByCustodianIdVariancePopulationDeletedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_DELETED_AT_ASC', + PortfoliosByCustodianIdVariancePopulationDeletedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_DELETED_AT_DESC', + PortfoliosByCustodianIdVariancePopulationEventIdxAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + PortfoliosByCustodianIdVariancePopulationEventIdxDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + PortfoliosByCustodianIdVariancePopulationIdentityIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + PortfoliosByCustodianIdVariancePopulationIdentityIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + PortfoliosByCustodianIdVariancePopulationIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_ID_ASC', + PortfoliosByCustodianIdVariancePopulationIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_ID_DESC', + PortfoliosByCustodianIdVariancePopulationNameAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_NAME_ASC', + PortfoliosByCustodianIdVariancePopulationNameDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_NAME_DESC', + PortfoliosByCustodianIdVariancePopulationNumberAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_NUMBER_ASC', + PortfoliosByCustodianIdVariancePopulationNumberDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_NUMBER_DESC', + PortfoliosByCustodianIdVariancePopulationUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdVariancePopulationUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdVarianceSampleBlockRangeAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PortfoliosByCustodianIdVarianceSampleBlockRangeDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PortfoliosByCustodianIdVarianceSampleCreatedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + PortfoliosByCustodianIdVarianceSampleCreatedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + PortfoliosByCustodianIdVarianceSampleCreatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdVarianceSampleCreatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfoliosByCustodianIdVarianceSampleCustodianIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_CUSTODIAN_ID_ASC', + PortfoliosByCustodianIdVarianceSampleCustodianIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_CUSTODIAN_ID_DESC', + PortfoliosByCustodianIdVarianceSampleDeletedAtAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_DELETED_AT_ASC', + PortfoliosByCustodianIdVarianceSampleDeletedAtDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_DELETED_AT_DESC', + PortfoliosByCustodianIdVarianceSampleEventIdxAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + PortfoliosByCustodianIdVarianceSampleEventIdxDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + PortfoliosByCustodianIdVarianceSampleIdentityIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + PortfoliosByCustodianIdVarianceSampleIdentityIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + PortfoliosByCustodianIdVarianceSampleIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_ID_ASC', + PortfoliosByCustodianIdVarianceSampleIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_ID_DESC', + PortfoliosByCustodianIdVarianceSampleNameAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_NAME_ASC', + PortfoliosByCustodianIdVarianceSampleNameDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_NAME_DESC', + PortfoliosByCustodianIdVarianceSampleNumberAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_NUMBER_ASC', + PortfoliosByCustodianIdVarianceSampleNumberDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_NUMBER_DESC', + PortfoliosByCustodianIdVarianceSampleUpdatedBlockIdAsc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfoliosByCustodianIdVarianceSampleUpdatedBlockIdDesc = 'PORTFOLIOS_BY_CUSTODIAN_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfoliosCountAsc = 'PORTFOLIOS_COUNT_ASC', + PortfoliosCountDesc = 'PORTFOLIOS_COUNT_DESC', + PortfoliosDistinctCountBlockRangeAsc = 'PORTFOLIOS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PortfoliosDistinctCountBlockRangeDesc = 'PORTFOLIOS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PortfoliosDistinctCountCreatedAtAsc = 'PORTFOLIOS_DISTINCT_COUNT_CREATED_AT_ASC', + PortfoliosDistinctCountCreatedAtDesc = 'PORTFOLIOS_DISTINCT_COUNT_CREATED_AT_DESC', + PortfoliosDistinctCountCreatedBlockIdAsc = 'PORTFOLIOS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PortfoliosDistinctCountCreatedBlockIdDesc = 'PORTFOLIOS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PortfoliosDistinctCountCustodianIdAsc = 'PORTFOLIOS_DISTINCT_COUNT_CUSTODIAN_ID_ASC', + PortfoliosDistinctCountCustodianIdDesc = 'PORTFOLIOS_DISTINCT_COUNT_CUSTODIAN_ID_DESC', + PortfoliosDistinctCountDeletedAtAsc = 'PORTFOLIOS_DISTINCT_COUNT_DELETED_AT_ASC', + PortfoliosDistinctCountDeletedAtDesc = 'PORTFOLIOS_DISTINCT_COUNT_DELETED_AT_DESC', + PortfoliosDistinctCountEventIdxAsc = 'PORTFOLIOS_DISTINCT_COUNT_EVENT_IDX_ASC', + PortfoliosDistinctCountEventIdxDesc = 'PORTFOLIOS_DISTINCT_COUNT_EVENT_IDX_DESC', + PortfoliosDistinctCountIdentityIdAsc = 'PORTFOLIOS_DISTINCT_COUNT_IDENTITY_ID_ASC', + PortfoliosDistinctCountIdentityIdDesc = 'PORTFOLIOS_DISTINCT_COUNT_IDENTITY_ID_DESC', + PortfoliosDistinctCountIdAsc = 'PORTFOLIOS_DISTINCT_COUNT_ID_ASC', + PortfoliosDistinctCountIdDesc = 'PORTFOLIOS_DISTINCT_COUNT_ID_DESC', + PortfoliosDistinctCountNameAsc = 'PORTFOLIOS_DISTINCT_COUNT_NAME_ASC', + PortfoliosDistinctCountNameDesc = 'PORTFOLIOS_DISTINCT_COUNT_NAME_DESC', + PortfoliosDistinctCountNumberAsc = 'PORTFOLIOS_DISTINCT_COUNT_NUMBER_ASC', + PortfoliosDistinctCountNumberDesc = 'PORTFOLIOS_DISTINCT_COUNT_NUMBER_DESC', + PortfoliosDistinctCountUpdatedBlockIdAsc = 'PORTFOLIOS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PortfoliosDistinctCountUpdatedBlockIdDesc = 'PORTFOLIOS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PortfoliosMaxBlockRangeAsc = 'PORTFOLIOS_MAX_BLOCK_RANGE_ASC', + PortfoliosMaxBlockRangeDesc = 'PORTFOLIOS_MAX_BLOCK_RANGE_DESC', + PortfoliosMaxCreatedAtAsc = 'PORTFOLIOS_MAX_CREATED_AT_ASC', + PortfoliosMaxCreatedAtDesc = 'PORTFOLIOS_MAX_CREATED_AT_DESC', + PortfoliosMaxCreatedBlockIdAsc = 'PORTFOLIOS_MAX_CREATED_BLOCK_ID_ASC', + PortfoliosMaxCreatedBlockIdDesc = 'PORTFOLIOS_MAX_CREATED_BLOCK_ID_DESC', + PortfoliosMaxCustodianIdAsc = 'PORTFOLIOS_MAX_CUSTODIAN_ID_ASC', + PortfoliosMaxCustodianIdDesc = 'PORTFOLIOS_MAX_CUSTODIAN_ID_DESC', + PortfoliosMaxDeletedAtAsc = 'PORTFOLIOS_MAX_DELETED_AT_ASC', + PortfoliosMaxDeletedAtDesc = 'PORTFOLIOS_MAX_DELETED_AT_DESC', + PortfoliosMaxEventIdxAsc = 'PORTFOLIOS_MAX_EVENT_IDX_ASC', + PortfoliosMaxEventIdxDesc = 'PORTFOLIOS_MAX_EVENT_IDX_DESC', + PortfoliosMaxIdentityIdAsc = 'PORTFOLIOS_MAX_IDENTITY_ID_ASC', + PortfoliosMaxIdentityIdDesc = 'PORTFOLIOS_MAX_IDENTITY_ID_DESC', + PortfoliosMaxIdAsc = 'PORTFOLIOS_MAX_ID_ASC', + PortfoliosMaxIdDesc = 'PORTFOLIOS_MAX_ID_DESC', + PortfoliosMaxNameAsc = 'PORTFOLIOS_MAX_NAME_ASC', + PortfoliosMaxNameDesc = 'PORTFOLIOS_MAX_NAME_DESC', + PortfoliosMaxNumberAsc = 'PORTFOLIOS_MAX_NUMBER_ASC', + PortfoliosMaxNumberDesc = 'PORTFOLIOS_MAX_NUMBER_DESC', + PortfoliosMaxUpdatedBlockIdAsc = 'PORTFOLIOS_MAX_UPDATED_BLOCK_ID_ASC', + PortfoliosMaxUpdatedBlockIdDesc = 'PORTFOLIOS_MAX_UPDATED_BLOCK_ID_DESC', + PortfoliosMinBlockRangeAsc = 'PORTFOLIOS_MIN_BLOCK_RANGE_ASC', + PortfoliosMinBlockRangeDesc = 'PORTFOLIOS_MIN_BLOCK_RANGE_DESC', + PortfoliosMinCreatedAtAsc = 'PORTFOLIOS_MIN_CREATED_AT_ASC', + PortfoliosMinCreatedAtDesc = 'PORTFOLIOS_MIN_CREATED_AT_DESC', + PortfoliosMinCreatedBlockIdAsc = 'PORTFOLIOS_MIN_CREATED_BLOCK_ID_ASC', + PortfoliosMinCreatedBlockIdDesc = 'PORTFOLIOS_MIN_CREATED_BLOCK_ID_DESC', + PortfoliosMinCustodianIdAsc = 'PORTFOLIOS_MIN_CUSTODIAN_ID_ASC', + PortfoliosMinCustodianIdDesc = 'PORTFOLIOS_MIN_CUSTODIAN_ID_DESC', + PortfoliosMinDeletedAtAsc = 'PORTFOLIOS_MIN_DELETED_AT_ASC', + PortfoliosMinDeletedAtDesc = 'PORTFOLIOS_MIN_DELETED_AT_DESC', + PortfoliosMinEventIdxAsc = 'PORTFOLIOS_MIN_EVENT_IDX_ASC', + PortfoliosMinEventIdxDesc = 'PORTFOLIOS_MIN_EVENT_IDX_DESC', + PortfoliosMinIdentityIdAsc = 'PORTFOLIOS_MIN_IDENTITY_ID_ASC', + PortfoliosMinIdentityIdDesc = 'PORTFOLIOS_MIN_IDENTITY_ID_DESC', + PortfoliosMinIdAsc = 'PORTFOLIOS_MIN_ID_ASC', + PortfoliosMinIdDesc = 'PORTFOLIOS_MIN_ID_DESC', + PortfoliosMinNameAsc = 'PORTFOLIOS_MIN_NAME_ASC', + PortfoliosMinNameDesc = 'PORTFOLIOS_MIN_NAME_DESC', + PortfoliosMinNumberAsc = 'PORTFOLIOS_MIN_NUMBER_ASC', + PortfoliosMinNumberDesc = 'PORTFOLIOS_MIN_NUMBER_DESC', + PortfoliosMinUpdatedBlockIdAsc = 'PORTFOLIOS_MIN_UPDATED_BLOCK_ID_ASC', + PortfoliosMinUpdatedBlockIdDesc = 'PORTFOLIOS_MIN_UPDATED_BLOCK_ID_DESC', + PortfoliosStddevPopulationBlockRangeAsc = 'PORTFOLIOS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PortfoliosStddevPopulationBlockRangeDesc = 'PORTFOLIOS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PortfoliosStddevPopulationCreatedAtAsc = 'PORTFOLIOS_STDDEV_POPULATION_CREATED_AT_ASC', + PortfoliosStddevPopulationCreatedAtDesc = 'PORTFOLIOS_STDDEV_POPULATION_CREATED_AT_DESC', + PortfoliosStddevPopulationCreatedBlockIdAsc = 'PORTFOLIOS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PortfoliosStddevPopulationCreatedBlockIdDesc = 'PORTFOLIOS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PortfoliosStddevPopulationCustodianIdAsc = 'PORTFOLIOS_STDDEV_POPULATION_CUSTODIAN_ID_ASC', + PortfoliosStddevPopulationCustodianIdDesc = 'PORTFOLIOS_STDDEV_POPULATION_CUSTODIAN_ID_DESC', + PortfoliosStddevPopulationDeletedAtAsc = 'PORTFOLIOS_STDDEV_POPULATION_DELETED_AT_ASC', + PortfoliosStddevPopulationDeletedAtDesc = 'PORTFOLIOS_STDDEV_POPULATION_DELETED_AT_DESC', + PortfoliosStddevPopulationEventIdxAsc = 'PORTFOLIOS_STDDEV_POPULATION_EVENT_IDX_ASC', + PortfoliosStddevPopulationEventIdxDesc = 'PORTFOLIOS_STDDEV_POPULATION_EVENT_IDX_DESC', + PortfoliosStddevPopulationIdentityIdAsc = 'PORTFOLIOS_STDDEV_POPULATION_IDENTITY_ID_ASC', + PortfoliosStddevPopulationIdentityIdDesc = 'PORTFOLIOS_STDDEV_POPULATION_IDENTITY_ID_DESC', + PortfoliosStddevPopulationIdAsc = 'PORTFOLIOS_STDDEV_POPULATION_ID_ASC', + PortfoliosStddevPopulationIdDesc = 'PORTFOLIOS_STDDEV_POPULATION_ID_DESC', + PortfoliosStddevPopulationNameAsc = 'PORTFOLIOS_STDDEV_POPULATION_NAME_ASC', + PortfoliosStddevPopulationNameDesc = 'PORTFOLIOS_STDDEV_POPULATION_NAME_DESC', + PortfoliosStddevPopulationNumberAsc = 'PORTFOLIOS_STDDEV_POPULATION_NUMBER_ASC', + PortfoliosStddevPopulationNumberDesc = 'PORTFOLIOS_STDDEV_POPULATION_NUMBER_DESC', + PortfoliosStddevPopulationUpdatedBlockIdAsc = 'PORTFOLIOS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfoliosStddevPopulationUpdatedBlockIdDesc = 'PORTFOLIOS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfoliosStddevSampleBlockRangeAsc = 'PORTFOLIOS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PortfoliosStddevSampleBlockRangeDesc = 'PORTFOLIOS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PortfoliosStddevSampleCreatedAtAsc = 'PORTFOLIOS_STDDEV_SAMPLE_CREATED_AT_ASC', + PortfoliosStddevSampleCreatedAtDesc = 'PORTFOLIOS_STDDEV_SAMPLE_CREATED_AT_DESC', + PortfoliosStddevSampleCreatedBlockIdAsc = 'PORTFOLIOS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfoliosStddevSampleCreatedBlockIdDesc = 'PORTFOLIOS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfoliosStddevSampleCustodianIdAsc = 'PORTFOLIOS_STDDEV_SAMPLE_CUSTODIAN_ID_ASC', + PortfoliosStddevSampleCustodianIdDesc = 'PORTFOLIOS_STDDEV_SAMPLE_CUSTODIAN_ID_DESC', + PortfoliosStddevSampleDeletedAtAsc = 'PORTFOLIOS_STDDEV_SAMPLE_DELETED_AT_ASC', + PortfoliosStddevSampleDeletedAtDesc = 'PORTFOLIOS_STDDEV_SAMPLE_DELETED_AT_DESC', + PortfoliosStddevSampleEventIdxAsc = 'PORTFOLIOS_STDDEV_SAMPLE_EVENT_IDX_ASC', + PortfoliosStddevSampleEventIdxDesc = 'PORTFOLIOS_STDDEV_SAMPLE_EVENT_IDX_DESC', + PortfoliosStddevSampleIdentityIdAsc = 'PORTFOLIOS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + PortfoliosStddevSampleIdentityIdDesc = 'PORTFOLIOS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + PortfoliosStddevSampleIdAsc = 'PORTFOLIOS_STDDEV_SAMPLE_ID_ASC', + PortfoliosStddevSampleIdDesc = 'PORTFOLIOS_STDDEV_SAMPLE_ID_DESC', + PortfoliosStddevSampleNameAsc = 'PORTFOLIOS_STDDEV_SAMPLE_NAME_ASC', + PortfoliosStddevSampleNameDesc = 'PORTFOLIOS_STDDEV_SAMPLE_NAME_DESC', + PortfoliosStddevSampleNumberAsc = 'PORTFOLIOS_STDDEV_SAMPLE_NUMBER_ASC', + PortfoliosStddevSampleNumberDesc = 'PORTFOLIOS_STDDEV_SAMPLE_NUMBER_DESC', + PortfoliosStddevSampleUpdatedBlockIdAsc = 'PORTFOLIOS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfoliosStddevSampleUpdatedBlockIdDesc = 'PORTFOLIOS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfoliosSumBlockRangeAsc = 'PORTFOLIOS_SUM_BLOCK_RANGE_ASC', + PortfoliosSumBlockRangeDesc = 'PORTFOLIOS_SUM_BLOCK_RANGE_DESC', + PortfoliosSumCreatedAtAsc = 'PORTFOLIOS_SUM_CREATED_AT_ASC', + PortfoliosSumCreatedAtDesc = 'PORTFOLIOS_SUM_CREATED_AT_DESC', + PortfoliosSumCreatedBlockIdAsc = 'PORTFOLIOS_SUM_CREATED_BLOCK_ID_ASC', + PortfoliosSumCreatedBlockIdDesc = 'PORTFOLIOS_SUM_CREATED_BLOCK_ID_DESC', + PortfoliosSumCustodianIdAsc = 'PORTFOLIOS_SUM_CUSTODIAN_ID_ASC', + PortfoliosSumCustodianIdDesc = 'PORTFOLIOS_SUM_CUSTODIAN_ID_DESC', + PortfoliosSumDeletedAtAsc = 'PORTFOLIOS_SUM_DELETED_AT_ASC', + PortfoliosSumDeletedAtDesc = 'PORTFOLIOS_SUM_DELETED_AT_DESC', + PortfoliosSumEventIdxAsc = 'PORTFOLIOS_SUM_EVENT_IDX_ASC', + PortfoliosSumEventIdxDesc = 'PORTFOLIOS_SUM_EVENT_IDX_DESC', + PortfoliosSumIdentityIdAsc = 'PORTFOLIOS_SUM_IDENTITY_ID_ASC', + PortfoliosSumIdentityIdDesc = 'PORTFOLIOS_SUM_IDENTITY_ID_DESC', + PortfoliosSumIdAsc = 'PORTFOLIOS_SUM_ID_ASC', + PortfoliosSumIdDesc = 'PORTFOLIOS_SUM_ID_DESC', + PortfoliosSumNameAsc = 'PORTFOLIOS_SUM_NAME_ASC', + PortfoliosSumNameDesc = 'PORTFOLIOS_SUM_NAME_DESC', + PortfoliosSumNumberAsc = 'PORTFOLIOS_SUM_NUMBER_ASC', + PortfoliosSumNumberDesc = 'PORTFOLIOS_SUM_NUMBER_DESC', + PortfoliosSumUpdatedBlockIdAsc = 'PORTFOLIOS_SUM_UPDATED_BLOCK_ID_ASC', + PortfoliosSumUpdatedBlockIdDesc = 'PORTFOLIOS_SUM_UPDATED_BLOCK_ID_DESC', + PortfoliosVariancePopulationBlockRangeAsc = 'PORTFOLIOS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PortfoliosVariancePopulationBlockRangeDesc = 'PORTFOLIOS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PortfoliosVariancePopulationCreatedAtAsc = 'PORTFOLIOS_VARIANCE_POPULATION_CREATED_AT_ASC', + PortfoliosVariancePopulationCreatedAtDesc = 'PORTFOLIOS_VARIANCE_POPULATION_CREATED_AT_DESC', + PortfoliosVariancePopulationCreatedBlockIdAsc = 'PORTFOLIOS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PortfoliosVariancePopulationCreatedBlockIdDesc = 'PORTFOLIOS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PortfoliosVariancePopulationCustodianIdAsc = 'PORTFOLIOS_VARIANCE_POPULATION_CUSTODIAN_ID_ASC', + PortfoliosVariancePopulationCustodianIdDesc = 'PORTFOLIOS_VARIANCE_POPULATION_CUSTODIAN_ID_DESC', + PortfoliosVariancePopulationDeletedAtAsc = 'PORTFOLIOS_VARIANCE_POPULATION_DELETED_AT_ASC', + PortfoliosVariancePopulationDeletedAtDesc = 'PORTFOLIOS_VARIANCE_POPULATION_DELETED_AT_DESC', + PortfoliosVariancePopulationEventIdxAsc = 'PORTFOLIOS_VARIANCE_POPULATION_EVENT_IDX_ASC', + PortfoliosVariancePopulationEventIdxDesc = 'PORTFOLIOS_VARIANCE_POPULATION_EVENT_IDX_DESC', + PortfoliosVariancePopulationIdentityIdAsc = 'PORTFOLIOS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + PortfoliosVariancePopulationIdentityIdDesc = 'PORTFOLIOS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + PortfoliosVariancePopulationIdAsc = 'PORTFOLIOS_VARIANCE_POPULATION_ID_ASC', + PortfoliosVariancePopulationIdDesc = 'PORTFOLIOS_VARIANCE_POPULATION_ID_DESC', + PortfoliosVariancePopulationNameAsc = 'PORTFOLIOS_VARIANCE_POPULATION_NAME_ASC', + PortfoliosVariancePopulationNameDesc = 'PORTFOLIOS_VARIANCE_POPULATION_NAME_DESC', + PortfoliosVariancePopulationNumberAsc = 'PORTFOLIOS_VARIANCE_POPULATION_NUMBER_ASC', + PortfoliosVariancePopulationNumberDesc = 'PORTFOLIOS_VARIANCE_POPULATION_NUMBER_DESC', + PortfoliosVariancePopulationUpdatedBlockIdAsc = 'PORTFOLIOS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfoliosVariancePopulationUpdatedBlockIdDesc = 'PORTFOLIOS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfoliosVarianceSampleBlockRangeAsc = 'PORTFOLIOS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PortfoliosVarianceSampleBlockRangeDesc = 'PORTFOLIOS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PortfoliosVarianceSampleCreatedAtAsc = 'PORTFOLIOS_VARIANCE_SAMPLE_CREATED_AT_ASC', + PortfoliosVarianceSampleCreatedAtDesc = 'PORTFOLIOS_VARIANCE_SAMPLE_CREATED_AT_DESC', + PortfoliosVarianceSampleCreatedBlockIdAsc = 'PORTFOLIOS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfoliosVarianceSampleCreatedBlockIdDesc = 'PORTFOLIOS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfoliosVarianceSampleCustodianIdAsc = 'PORTFOLIOS_VARIANCE_SAMPLE_CUSTODIAN_ID_ASC', + PortfoliosVarianceSampleCustodianIdDesc = 'PORTFOLIOS_VARIANCE_SAMPLE_CUSTODIAN_ID_DESC', + PortfoliosVarianceSampleDeletedAtAsc = 'PORTFOLIOS_VARIANCE_SAMPLE_DELETED_AT_ASC', + PortfoliosVarianceSampleDeletedAtDesc = 'PORTFOLIOS_VARIANCE_SAMPLE_DELETED_AT_DESC', + PortfoliosVarianceSampleEventIdxAsc = 'PORTFOLIOS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + PortfoliosVarianceSampleEventIdxDesc = 'PORTFOLIOS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + PortfoliosVarianceSampleIdentityIdAsc = 'PORTFOLIOS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + PortfoliosVarianceSampleIdentityIdDesc = 'PORTFOLIOS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + PortfoliosVarianceSampleIdAsc = 'PORTFOLIOS_VARIANCE_SAMPLE_ID_ASC', + PortfoliosVarianceSampleIdDesc = 'PORTFOLIOS_VARIANCE_SAMPLE_ID_DESC', + PortfoliosVarianceSampleNameAsc = 'PORTFOLIOS_VARIANCE_SAMPLE_NAME_ASC', + PortfoliosVarianceSampleNameDesc = 'PORTFOLIOS_VARIANCE_SAMPLE_NAME_DESC', + PortfoliosVarianceSampleNumberAsc = 'PORTFOLIOS_VARIANCE_SAMPLE_NUMBER_ASC', + PortfoliosVarianceSampleNumberDesc = 'PORTFOLIOS_VARIANCE_SAMPLE_NUMBER_DESC', + PortfoliosVarianceSampleUpdatedBlockIdAsc = 'PORTFOLIOS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfoliosVarianceSampleUpdatedBlockIdDesc = 'PORTFOLIOS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PrimaryAccountAsc = 'PRIMARY_ACCOUNT_ASC', + PrimaryAccountDesc = 'PRIMARY_ACCOUNT_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ProposalsByOwnerIdAverageBalanceAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_BALANCE_ASC', + ProposalsByOwnerIdAverageBalanceDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_BALANCE_DESC', + ProposalsByOwnerIdAverageBlockRangeAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_BLOCK_RANGE_ASC', + ProposalsByOwnerIdAverageBlockRangeDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_BLOCK_RANGE_DESC', + ProposalsByOwnerIdAverageCreatedAtAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_CREATED_AT_ASC', + ProposalsByOwnerIdAverageCreatedAtDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_CREATED_AT_DESC', + ProposalsByOwnerIdAverageCreatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + ProposalsByOwnerIdAverageCreatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + ProposalsByOwnerIdAverageDescriptionAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_DESCRIPTION_ASC', + ProposalsByOwnerIdAverageDescriptionDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_DESCRIPTION_DESC', + ProposalsByOwnerIdAverageIdAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_ID_ASC', + ProposalsByOwnerIdAverageIdDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_ID_DESC', + ProposalsByOwnerIdAverageOwnerIdAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_OWNER_ID_ASC', + ProposalsByOwnerIdAverageOwnerIdDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_OWNER_ID_DESC', + ProposalsByOwnerIdAverageProposerAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_PROPOSER_ASC', + ProposalsByOwnerIdAverageProposerDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_PROPOSER_DESC', + ProposalsByOwnerIdAverageSnapshottedAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_SNAPSHOTTED_ASC', + ProposalsByOwnerIdAverageSnapshottedDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_SNAPSHOTTED_DESC', + ProposalsByOwnerIdAverageStateAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_STATE_ASC', + ProposalsByOwnerIdAverageStateDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_STATE_DESC', + ProposalsByOwnerIdAverageTotalAyeWeightAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_TOTAL_AYE_WEIGHT_ASC', + ProposalsByOwnerIdAverageTotalAyeWeightDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_TOTAL_AYE_WEIGHT_DESC', + ProposalsByOwnerIdAverageTotalNayWeightAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_TOTAL_NAY_WEIGHT_ASC', + ProposalsByOwnerIdAverageTotalNayWeightDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_TOTAL_NAY_WEIGHT_DESC', + ProposalsByOwnerIdAverageUpdatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + ProposalsByOwnerIdAverageUpdatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + ProposalsByOwnerIdAverageUrlAsc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_URL_ASC', + ProposalsByOwnerIdAverageUrlDesc = 'PROPOSALS_BY_OWNER_ID_AVERAGE_URL_DESC', + ProposalsByOwnerIdCountAsc = 'PROPOSALS_BY_OWNER_ID_COUNT_ASC', + ProposalsByOwnerIdCountDesc = 'PROPOSALS_BY_OWNER_ID_COUNT_DESC', + ProposalsByOwnerIdDistinctCountBalanceAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_BALANCE_ASC', + ProposalsByOwnerIdDistinctCountBalanceDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_BALANCE_DESC', + ProposalsByOwnerIdDistinctCountBlockRangeAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ProposalsByOwnerIdDistinctCountBlockRangeDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ProposalsByOwnerIdDistinctCountCreatedAtAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_CREATED_AT_ASC', + ProposalsByOwnerIdDistinctCountCreatedAtDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_CREATED_AT_DESC', + ProposalsByOwnerIdDistinctCountCreatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ProposalsByOwnerIdDistinctCountCreatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ProposalsByOwnerIdDistinctCountDescriptionAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_DESCRIPTION_ASC', + ProposalsByOwnerIdDistinctCountDescriptionDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_DESCRIPTION_DESC', + ProposalsByOwnerIdDistinctCountIdAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_ID_ASC', + ProposalsByOwnerIdDistinctCountIdDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_ID_DESC', + ProposalsByOwnerIdDistinctCountOwnerIdAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_OWNER_ID_ASC', + ProposalsByOwnerIdDistinctCountOwnerIdDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_OWNER_ID_DESC', + ProposalsByOwnerIdDistinctCountProposerAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_PROPOSER_ASC', + ProposalsByOwnerIdDistinctCountProposerDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_PROPOSER_DESC', + ProposalsByOwnerIdDistinctCountSnapshottedAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_SNAPSHOTTED_ASC', + ProposalsByOwnerIdDistinctCountSnapshottedDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_SNAPSHOTTED_DESC', + ProposalsByOwnerIdDistinctCountStateAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_STATE_ASC', + ProposalsByOwnerIdDistinctCountStateDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_STATE_DESC', + ProposalsByOwnerIdDistinctCountTotalAyeWeightAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_TOTAL_AYE_WEIGHT_ASC', + ProposalsByOwnerIdDistinctCountTotalAyeWeightDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_TOTAL_AYE_WEIGHT_DESC', + ProposalsByOwnerIdDistinctCountTotalNayWeightAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_TOTAL_NAY_WEIGHT_ASC', + ProposalsByOwnerIdDistinctCountTotalNayWeightDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_TOTAL_NAY_WEIGHT_DESC', + ProposalsByOwnerIdDistinctCountUpdatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ProposalsByOwnerIdDistinctCountUpdatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ProposalsByOwnerIdDistinctCountUrlAsc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_URL_ASC', + ProposalsByOwnerIdDistinctCountUrlDesc = 'PROPOSALS_BY_OWNER_ID_DISTINCT_COUNT_URL_DESC', + ProposalsByOwnerIdMaxBalanceAsc = 'PROPOSALS_BY_OWNER_ID_MAX_BALANCE_ASC', + ProposalsByOwnerIdMaxBalanceDesc = 'PROPOSALS_BY_OWNER_ID_MAX_BALANCE_DESC', + ProposalsByOwnerIdMaxBlockRangeAsc = 'PROPOSALS_BY_OWNER_ID_MAX_BLOCK_RANGE_ASC', + ProposalsByOwnerIdMaxBlockRangeDesc = 'PROPOSALS_BY_OWNER_ID_MAX_BLOCK_RANGE_DESC', + ProposalsByOwnerIdMaxCreatedAtAsc = 'PROPOSALS_BY_OWNER_ID_MAX_CREATED_AT_ASC', + ProposalsByOwnerIdMaxCreatedAtDesc = 'PROPOSALS_BY_OWNER_ID_MAX_CREATED_AT_DESC', + ProposalsByOwnerIdMaxCreatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_MAX_CREATED_BLOCK_ID_ASC', + ProposalsByOwnerIdMaxCreatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_MAX_CREATED_BLOCK_ID_DESC', + ProposalsByOwnerIdMaxDescriptionAsc = 'PROPOSALS_BY_OWNER_ID_MAX_DESCRIPTION_ASC', + ProposalsByOwnerIdMaxDescriptionDesc = 'PROPOSALS_BY_OWNER_ID_MAX_DESCRIPTION_DESC', + ProposalsByOwnerIdMaxIdAsc = 'PROPOSALS_BY_OWNER_ID_MAX_ID_ASC', + ProposalsByOwnerIdMaxIdDesc = 'PROPOSALS_BY_OWNER_ID_MAX_ID_DESC', + ProposalsByOwnerIdMaxOwnerIdAsc = 'PROPOSALS_BY_OWNER_ID_MAX_OWNER_ID_ASC', + ProposalsByOwnerIdMaxOwnerIdDesc = 'PROPOSALS_BY_OWNER_ID_MAX_OWNER_ID_DESC', + ProposalsByOwnerIdMaxProposerAsc = 'PROPOSALS_BY_OWNER_ID_MAX_PROPOSER_ASC', + ProposalsByOwnerIdMaxProposerDesc = 'PROPOSALS_BY_OWNER_ID_MAX_PROPOSER_DESC', + ProposalsByOwnerIdMaxSnapshottedAsc = 'PROPOSALS_BY_OWNER_ID_MAX_SNAPSHOTTED_ASC', + ProposalsByOwnerIdMaxSnapshottedDesc = 'PROPOSALS_BY_OWNER_ID_MAX_SNAPSHOTTED_DESC', + ProposalsByOwnerIdMaxStateAsc = 'PROPOSALS_BY_OWNER_ID_MAX_STATE_ASC', + ProposalsByOwnerIdMaxStateDesc = 'PROPOSALS_BY_OWNER_ID_MAX_STATE_DESC', + ProposalsByOwnerIdMaxTotalAyeWeightAsc = 'PROPOSALS_BY_OWNER_ID_MAX_TOTAL_AYE_WEIGHT_ASC', + ProposalsByOwnerIdMaxTotalAyeWeightDesc = 'PROPOSALS_BY_OWNER_ID_MAX_TOTAL_AYE_WEIGHT_DESC', + ProposalsByOwnerIdMaxTotalNayWeightAsc = 'PROPOSALS_BY_OWNER_ID_MAX_TOTAL_NAY_WEIGHT_ASC', + ProposalsByOwnerIdMaxTotalNayWeightDesc = 'PROPOSALS_BY_OWNER_ID_MAX_TOTAL_NAY_WEIGHT_DESC', + ProposalsByOwnerIdMaxUpdatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_MAX_UPDATED_BLOCK_ID_ASC', + ProposalsByOwnerIdMaxUpdatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_MAX_UPDATED_BLOCK_ID_DESC', + ProposalsByOwnerIdMaxUrlAsc = 'PROPOSALS_BY_OWNER_ID_MAX_URL_ASC', + ProposalsByOwnerIdMaxUrlDesc = 'PROPOSALS_BY_OWNER_ID_MAX_URL_DESC', + ProposalsByOwnerIdMinBalanceAsc = 'PROPOSALS_BY_OWNER_ID_MIN_BALANCE_ASC', + ProposalsByOwnerIdMinBalanceDesc = 'PROPOSALS_BY_OWNER_ID_MIN_BALANCE_DESC', + ProposalsByOwnerIdMinBlockRangeAsc = 'PROPOSALS_BY_OWNER_ID_MIN_BLOCK_RANGE_ASC', + ProposalsByOwnerIdMinBlockRangeDesc = 'PROPOSALS_BY_OWNER_ID_MIN_BLOCK_RANGE_DESC', + ProposalsByOwnerIdMinCreatedAtAsc = 'PROPOSALS_BY_OWNER_ID_MIN_CREATED_AT_ASC', + ProposalsByOwnerIdMinCreatedAtDesc = 'PROPOSALS_BY_OWNER_ID_MIN_CREATED_AT_DESC', + ProposalsByOwnerIdMinCreatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_MIN_CREATED_BLOCK_ID_ASC', + ProposalsByOwnerIdMinCreatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_MIN_CREATED_BLOCK_ID_DESC', + ProposalsByOwnerIdMinDescriptionAsc = 'PROPOSALS_BY_OWNER_ID_MIN_DESCRIPTION_ASC', + ProposalsByOwnerIdMinDescriptionDesc = 'PROPOSALS_BY_OWNER_ID_MIN_DESCRIPTION_DESC', + ProposalsByOwnerIdMinIdAsc = 'PROPOSALS_BY_OWNER_ID_MIN_ID_ASC', + ProposalsByOwnerIdMinIdDesc = 'PROPOSALS_BY_OWNER_ID_MIN_ID_DESC', + ProposalsByOwnerIdMinOwnerIdAsc = 'PROPOSALS_BY_OWNER_ID_MIN_OWNER_ID_ASC', + ProposalsByOwnerIdMinOwnerIdDesc = 'PROPOSALS_BY_OWNER_ID_MIN_OWNER_ID_DESC', + ProposalsByOwnerIdMinProposerAsc = 'PROPOSALS_BY_OWNER_ID_MIN_PROPOSER_ASC', + ProposalsByOwnerIdMinProposerDesc = 'PROPOSALS_BY_OWNER_ID_MIN_PROPOSER_DESC', + ProposalsByOwnerIdMinSnapshottedAsc = 'PROPOSALS_BY_OWNER_ID_MIN_SNAPSHOTTED_ASC', + ProposalsByOwnerIdMinSnapshottedDesc = 'PROPOSALS_BY_OWNER_ID_MIN_SNAPSHOTTED_DESC', + ProposalsByOwnerIdMinStateAsc = 'PROPOSALS_BY_OWNER_ID_MIN_STATE_ASC', + ProposalsByOwnerIdMinStateDesc = 'PROPOSALS_BY_OWNER_ID_MIN_STATE_DESC', + ProposalsByOwnerIdMinTotalAyeWeightAsc = 'PROPOSALS_BY_OWNER_ID_MIN_TOTAL_AYE_WEIGHT_ASC', + ProposalsByOwnerIdMinTotalAyeWeightDesc = 'PROPOSALS_BY_OWNER_ID_MIN_TOTAL_AYE_WEIGHT_DESC', + ProposalsByOwnerIdMinTotalNayWeightAsc = 'PROPOSALS_BY_OWNER_ID_MIN_TOTAL_NAY_WEIGHT_ASC', + ProposalsByOwnerIdMinTotalNayWeightDesc = 'PROPOSALS_BY_OWNER_ID_MIN_TOTAL_NAY_WEIGHT_DESC', + ProposalsByOwnerIdMinUpdatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_MIN_UPDATED_BLOCK_ID_ASC', + ProposalsByOwnerIdMinUpdatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_MIN_UPDATED_BLOCK_ID_DESC', + ProposalsByOwnerIdMinUrlAsc = 'PROPOSALS_BY_OWNER_ID_MIN_URL_ASC', + ProposalsByOwnerIdMinUrlDesc = 'PROPOSALS_BY_OWNER_ID_MIN_URL_DESC', + ProposalsByOwnerIdStddevPopulationBalanceAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_BALANCE_ASC', + ProposalsByOwnerIdStddevPopulationBalanceDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_BALANCE_DESC', + ProposalsByOwnerIdStddevPopulationBlockRangeAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ProposalsByOwnerIdStddevPopulationBlockRangeDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ProposalsByOwnerIdStddevPopulationCreatedAtAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_CREATED_AT_ASC', + ProposalsByOwnerIdStddevPopulationCreatedAtDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_CREATED_AT_DESC', + ProposalsByOwnerIdStddevPopulationCreatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalsByOwnerIdStddevPopulationCreatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalsByOwnerIdStddevPopulationDescriptionAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_DESCRIPTION_ASC', + ProposalsByOwnerIdStddevPopulationDescriptionDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_DESCRIPTION_DESC', + ProposalsByOwnerIdStddevPopulationIdAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_ID_ASC', + ProposalsByOwnerIdStddevPopulationIdDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_ID_DESC', + ProposalsByOwnerIdStddevPopulationOwnerIdAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_OWNER_ID_ASC', + ProposalsByOwnerIdStddevPopulationOwnerIdDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_OWNER_ID_DESC', + ProposalsByOwnerIdStddevPopulationProposerAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_PROPOSER_ASC', + ProposalsByOwnerIdStddevPopulationProposerDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_PROPOSER_DESC', + ProposalsByOwnerIdStddevPopulationSnapshottedAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_SNAPSHOTTED_ASC', + ProposalsByOwnerIdStddevPopulationSnapshottedDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_SNAPSHOTTED_DESC', + ProposalsByOwnerIdStddevPopulationStateAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_STATE_ASC', + ProposalsByOwnerIdStddevPopulationStateDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_STATE_DESC', + ProposalsByOwnerIdStddevPopulationTotalAyeWeightAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_TOTAL_AYE_WEIGHT_ASC', + ProposalsByOwnerIdStddevPopulationTotalAyeWeightDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_TOTAL_AYE_WEIGHT_DESC', + ProposalsByOwnerIdStddevPopulationTotalNayWeightAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_TOTAL_NAY_WEIGHT_ASC', + ProposalsByOwnerIdStddevPopulationTotalNayWeightDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_TOTAL_NAY_WEIGHT_DESC', + ProposalsByOwnerIdStddevPopulationUpdatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalsByOwnerIdStddevPopulationUpdatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalsByOwnerIdStddevPopulationUrlAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_URL_ASC', + ProposalsByOwnerIdStddevPopulationUrlDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_POPULATION_URL_DESC', + ProposalsByOwnerIdStddevSampleBalanceAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_BALANCE_ASC', + ProposalsByOwnerIdStddevSampleBalanceDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_BALANCE_DESC', + ProposalsByOwnerIdStddevSampleBlockRangeAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ProposalsByOwnerIdStddevSampleBlockRangeDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ProposalsByOwnerIdStddevSampleCreatedAtAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + ProposalsByOwnerIdStddevSampleCreatedAtDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + ProposalsByOwnerIdStddevSampleCreatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalsByOwnerIdStddevSampleCreatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalsByOwnerIdStddevSampleDescriptionAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_DESCRIPTION_ASC', + ProposalsByOwnerIdStddevSampleDescriptionDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_DESCRIPTION_DESC', + ProposalsByOwnerIdStddevSampleIdAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_ID_ASC', + ProposalsByOwnerIdStddevSampleIdDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_ID_DESC', + ProposalsByOwnerIdStddevSampleOwnerIdAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_OWNER_ID_ASC', + ProposalsByOwnerIdStddevSampleOwnerIdDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_OWNER_ID_DESC', + ProposalsByOwnerIdStddevSampleProposerAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_PROPOSER_ASC', + ProposalsByOwnerIdStddevSampleProposerDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_PROPOSER_DESC', + ProposalsByOwnerIdStddevSampleSnapshottedAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_SNAPSHOTTED_ASC', + ProposalsByOwnerIdStddevSampleSnapshottedDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_SNAPSHOTTED_DESC', + ProposalsByOwnerIdStddevSampleStateAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_STATE_ASC', + ProposalsByOwnerIdStddevSampleStateDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_STATE_DESC', + ProposalsByOwnerIdStddevSampleTotalAyeWeightAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_TOTAL_AYE_WEIGHT_ASC', + ProposalsByOwnerIdStddevSampleTotalAyeWeightDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_TOTAL_AYE_WEIGHT_DESC', + ProposalsByOwnerIdStddevSampleTotalNayWeightAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_TOTAL_NAY_WEIGHT_ASC', + ProposalsByOwnerIdStddevSampleTotalNayWeightDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_TOTAL_NAY_WEIGHT_DESC', + ProposalsByOwnerIdStddevSampleUpdatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalsByOwnerIdStddevSampleUpdatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ProposalsByOwnerIdStddevSampleUrlAsc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_URL_ASC', + ProposalsByOwnerIdStddevSampleUrlDesc = 'PROPOSALS_BY_OWNER_ID_STDDEV_SAMPLE_URL_DESC', + ProposalsByOwnerIdSumBalanceAsc = 'PROPOSALS_BY_OWNER_ID_SUM_BALANCE_ASC', + ProposalsByOwnerIdSumBalanceDesc = 'PROPOSALS_BY_OWNER_ID_SUM_BALANCE_DESC', + ProposalsByOwnerIdSumBlockRangeAsc = 'PROPOSALS_BY_OWNER_ID_SUM_BLOCK_RANGE_ASC', + ProposalsByOwnerIdSumBlockRangeDesc = 'PROPOSALS_BY_OWNER_ID_SUM_BLOCK_RANGE_DESC', + ProposalsByOwnerIdSumCreatedAtAsc = 'PROPOSALS_BY_OWNER_ID_SUM_CREATED_AT_ASC', + ProposalsByOwnerIdSumCreatedAtDesc = 'PROPOSALS_BY_OWNER_ID_SUM_CREATED_AT_DESC', + ProposalsByOwnerIdSumCreatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_SUM_CREATED_BLOCK_ID_ASC', + ProposalsByOwnerIdSumCreatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_SUM_CREATED_BLOCK_ID_DESC', + ProposalsByOwnerIdSumDescriptionAsc = 'PROPOSALS_BY_OWNER_ID_SUM_DESCRIPTION_ASC', + ProposalsByOwnerIdSumDescriptionDesc = 'PROPOSALS_BY_OWNER_ID_SUM_DESCRIPTION_DESC', + ProposalsByOwnerIdSumIdAsc = 'PROPOSALS_BY_OWNER_ID_SUM_ID_ASC', + ProposalsByOwnerIdSumIdDesc = 'PROPOSALS_BY_OWNER_ID_SUM_ID_DESC', + ProposalsByOwnerIdSumOwnerIdAsc = 'PROPOSALS_BY_OWNER_ID_SUM_OWNER_ID_ASC', + ProposalsByOwnerIdSumOwnerIdDesc = 'PROPOSALS_BY_OWNER_ID_SUM_OWNER_ID_DESC', + ProposalsByOwnerIdSumProposerAsc = 'PROPOSALS_BY_OWNER_ID_SUM_PROPOSER_ASC', + ProposalsByOwnerIdSumProposerDesc = 'PROPOSALS_BY_OWNER_ID_SUM_PROPOSER_DESC', + ProposalsByOwnerIdSumSnapshottedAsc = 'PROPOSALS_BY_OWNER_ID_SUM_SNAPSHOTTED_ASC', + ProposalsByOwnerIdSumSnapshottedDesc = 'PROPOSALS_BY_OWNER_ID_SUM_SNAPSHOTTED_DESC', + ProposalsByOwnerIdSumStateAsc = 'PROPOSALS_BY_OWNER_ID_SUM_STATE_ASC', + ProposalsByOwnerIdSumStateDesc = 'PROPOSALS_BY_OWNER_ID_SUM_STATE_DESC', + ProposalsByOwnerIdSumTotalAyeWeightAsc = 'PROPOSALS_BY_OWNER_ID_SUM_TOTAL_AYE_WEIGHT_ASC', + ProposalsByOwnerIdSumTotalAyeWeightDesc = 'PROPOSALS_BY_OWNER_ID_SUM_TOTAL_AYE_WEIGHT_DESC', + ProposalsByOwnerIdSumTotalNayWeightAsc = 'PROPOSALS_BY_OWNER_ID_SUM_TOTAL_NAY_WEIGHT_ASC', + ProposalsByOwnerIdSumTotalNayWeightDesc = 'PROPOSALS_BY_OWNER_ID_SUM_TOTAL_NAY_WEIGHT_DESC', + ProposalsByOwnerIdSumUpdatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_SUM_UPDATED_BLOCK_ID_ASC', + ProposalsByOwnerIdSumUpdatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_SUM_UPDATED_BLOCK_ID_DESC', + ProposalsByOwnerIdSumUrlAsc = 'PROPOSALS_BY_OWNER_ID_SUM_URL_ASC', + ProposalsByOwnerIdSumUrlDesc = 'PROPOSALS_BY_OWNER_ID_SUM_URL_DESC', + ProposalsByOwnerIdVariancePopulationBalanceAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_BALANCE_ASC', + ProposalsByOwnerIdVariancePopulationBalanceDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_BALANCE_DESC', + ProposalsByOwnerIdVariancePopulationBlockRangeAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ProposalsByOwnerIdVariancePopulationBlockRangeDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ProposalsByOwnerIdVariancePopulationCreatedAtAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + ProposalsByOwnerIdVariancePopulationCreatedAtDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + ProposalsByOwnerIdVariancePopulationCreatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalsByOwnerIdVariancePopulationCreatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalsByOwnerIdVariancePopulationDescriptionAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_DESCRIPTION_ASC', + ProposalsByOwnerIdVariancePopulationDescriptionDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_DESCRIPTION_DESC', + ProposalsByOwnerIdVariancePopulationIdAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_ID_ASC', + ProposalsByOwnerIdVariancePopulationIdDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_ID_DESC', + ProposalsByOwnerIdVariancePopulationOwnerIdAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_OWNER_ID_ASC', + ProposalsByOwnerIdVariancePopulationOwnerIdDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_OWNER_ID_DESC', + ProposalsByOwnerIdVariancePopulationProposerAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_PROPOSER_ASC', + ProposalsByOwnerIdVariancePopulationProposerDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_PROPOSER_DESC', + ProposalsByOwnerIdVariancePopulationSnapshottedAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_SNAPSHOTTED_ASC', + ProposalsByOwnerIdVariancePopulationSnapshottedDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_SNAPSHOTTED_DESC', + ProposalsByOwnerIdVariancePopulationStateAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_STATE_ASC', + ProposalsByOwnerIdVariancePopulationStateDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_STATE_DESC', + ProposalsByOwnerIdVariancePopulationTotalAyeWeightAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_TOTAL_AYE_WEIGHT_ASC', + ProposalsByOwnerIdVariancePopulationTotalAyeWeightDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_TOTAL_AYE_WEIGHT_DESC', + ProposalsByOwnerIdVariancePopulationTotalNayWeightAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_TOTAL_NAY_WEIGHT_ASC', + ProposalsByOwnerIdVariancePopulationTotalNayWeightDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_TOTAL_NAY_WEIGHT_DESC', + ProposalsByOwnerIdVariancePopulationUpdatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalsByOwnerIdVariancePopulationUpdatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalsByOwnerIdVariancePopulationUrlAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_URL_ASC', + ProposalsByOwnerIdVariancePopulationUrlDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_POPULATION_URL_DESC', + ProposalsByOwnerIdVarianceSampleBalanceAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_BALANCE_ASC', + ProposalsByOwnerIdVarianceSampleBalanceDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_BALANCE_DESC', + ProposalsByOwnerIdVarianceSampleBlockRangeAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ProposalsByOwnerIdVarianceSampleBlockRangeDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ProposalsByOwnerIdVarianceSampleCreatedAtAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + ProposalsByOwnerIdVarianceSampleCreatedAtDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + ProposalsByOwnerIdVarianceSampleCreatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalsByOwnerIdVarianceSampleCreatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalsByOwnerIdVarianceSampleDescriptionAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_DESCRIPTION_ASC', + ProposalsByOwnerIdVarianceSampleDescriptionDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_DESCRIPTION_DESC', + ProposalsByOwnerIdVarianceSampleIdAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_ID_ASC', + ProposalsByOwnerIdVarianceSampleIdDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_ID_DESC', + ProposalsByOwnerIdVarianceSampleOwnerIdAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_OWNER_ID_ASC', + ProposalsByOwnerIdVarianceSampleOwnerIdDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_OWNER_ID_DESC', + ProposalsByOwnerIdVarianceSampleProposerAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_PROPOSER_ASC', + ProposalsByOwnerIdVarianceSampleProposerDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_PROPOSER_DESC', + ProposalsByOwnerIdVarianceSampleSnapshottedAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_SNAPSHOTTED_ASC', + ProposalsByOwnerIdVarianceSampleSnapshottedDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_SNAPSHOTTED_DESC', + ProposalsByOwnerIdVarianceSampleStateAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_STATE_ASC', + ProposalsByOwnerIdVarianceSampleStateDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_STATE_DESC', + ProposalsByOwnerIdVarianceSampleTotalAyeWeightAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_TOTAL_AYE_WEIGHT_ASC', + ProposalsByOwnerIdVarianceSampleTotalAyeWeightDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_TOTAL_AYE_WEIGHT_DESC', + ProposalsByOwnerIdVarianceSampleTotalNayWeightAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_TOTAL_NAY_WEIGHT_ASC', + ProposalsByOwnerIdVarianceSampleTotalNayWeightDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_TOTAL_NAY_WEIGHT_DESC', + ProposalsByOwnerIdVarianceSampleUpdatedBlockIdAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalsByOwnerIdVarianceSampleUpdatedBlockIdDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + ProposalsByOwnerIdVarianceSampleUrlAsc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_URL_ASC', + ProposalsByOwnerIdVarianceSampleUrlDesc = 'PROPOSALS_BY_OWNER_ID_VARIANCE_SAMPLE_URL_DESC', + SecondaryAccountsAverageAddressAsc = 'SECONDARY_ACCOUNTS_AVERAGE_ADDRESS_ASC', + SecondaryAccountsAverageAddressDesc = 'SECONDARY_ACCOUNTS_AVERAGE_ADDRESS_DESC', + SecondaryAccountsAverageBlockRangeAsc = 'SECONDARY_ACCOUNTS_AVERAGE_BLOCK_RANGE_ASC', + SecondaryAccountsAverageBlockRangeDesc = 'SECONDARY_ACCOUNTS_AVERAGE_BLOCK_RANGE_DESC', + SecondaryAccountsAverageCreatedAtAsc = 'SECONDARY_ACCOUNTS_AVERAGE_CREATED_AT_ASC', + SecondaryAccountsAverageCreatedAtDesc = 'SECONDARY_ACCOUNTS_AVERAGE_CREATED_AT_DESC', + SecondaryAccountsAverageCreatedBlockIdAsc = 'SECONDARY_ACCOUNTS_AVERAGE_CREATED_BLOCK_ID_ASC', + SecondaryAccountsAverageCreatedBlockIdDesc = 'SECONDARY_ACCOUNTS_AVERAGE_CREATED_BLOCK_ID_DESC', + SecondaryAccountsAverageDatetimeAsc = 'SECONDARY_ACCOUNTS_AVERAGE_DATETIME_ASC', + SecondaryAccountsAverageDatetimeDesc = 'SECONDARY_ACCOUNTS_AVERAGE_DATETIME_DESC', + SecondaryAccountsAverageEventIdAsc = 'SECONDARY_ACCOUNTS_AVERAGE_EVENT_ID_ASC', + SecondaryAccountsAverageEventIdDesc = 'SECONDARY_ACCOUNTS_AVERAGE_EVENT_ID_DESC', + SecondaryAccountsAverageIdentityIdAsc = 'SECONDARY_ACCOUNTS_AVERAGE_IDENTITY_ID_ASC', + SecondaryAccountsAverageIdentityIdDesc = 'SECONDARY_ACCOUNTS_AVERAGE_IDENTITY_ID_DESC', + SecondaryAccountsAverageIdAsc = 'SECONDARY_ACCOUNTS_AVERAGE_ID_ASC', + SecondaryAccountsAverageIdDesc = 'SECONDARY_ACCOUNTS_AVERAGE_ID_DESC', + SecondaryAccountsAveragePermissionsIdAsc = 'SECONDARY_ACCOUNTS_AVERAGE_PERMISSIONS_ID_ASC', + SecondaryAccountsAveragePermissionsIdDesc = 'SECONDARY_ACCOUNTS_AVERAGE_PERMISSIONS_ID_DESC', + SecondaryAccountsAverageUpdatedBlockIdAsc = 'SECONDARY_ACCOUNTS_AVERAGE_UPDATED_BLOCK_ID_ASC', + SecondaryAccountsAverageUpdatedBlockIdDesc = 'SECONDARY_ACCOUNTS_AVERAGE_UPDATED_BLOCK_ID_DESC', + SecondaryAccountsCountAsc = 'SECONDARY_ACCOUNTS_COUNT_ASC', + SecondaryAccountsCountDesc = 'SECONDARY_ACCOUNTS_COUNT_DESC', + SecondaryAccountsDistinctCountAddressAsc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_ADDRESS_ASC', + SecondaryAccountsDistinctCountAddressDesc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_ADDRESS_DESC', + SecondaryAccountsDistinctCountBlockRangeAsc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + SecondaryAccountsDistinctCountBlockRangeDesc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + SecondaryAccountsDistinctCountCreatedAtAsc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_CREATED_AT_ASC', + SecondaryAccountsDistinctCountCreatedAtDesc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_CREATED_AT_DESC', + SecondaryAccountsDistinctCountCreatedBlockIdAsc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + SecondaryAccountsDistinctCountCreatedBlockIdDesc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + SecondaryAccountsDistinctCountDatetimeAsc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_DATETIME_ASC', + SecondaryAccountsDistinctCountDatetimeDesc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_DATETIME_DESC', + SecondaryAccountsDistinctCountEventIdAsc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_EVENT_ID_ASC', + SecondaryAccountsDistinctCountEventIdDesc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_EVENT_ID_DESC', + SecondaryAccountsDistinctCountIdentityIdAsc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_IDENTITY_ID_ASC', + SecondaryAccountsDistinctCountIdentityIdDesc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_IDENTITY_ID_DESC', + SecondaryAccountsDistinctCountIdAsc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_ID_ASC', + SecondaryAccountsDistinctCountIdDesc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_ID_DESC', + SecondaryAccountsDistinctCountPermissionsIdAsc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_PERMISSIONS_ID_ASC', + SecondaryAccountsDistinctCountPermissionsIdDesc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_PERMISSIONS_ID_DESC', + SecondaryAccountsDistinctCountUpdatedBlockIdAsc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + SecondaryAccountsDistinctCountUpdatedBlockIdDesc = 'SECONDARY_ACCOUNTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + SecondaryAccountsMaxAddressAsc = 'SECONDARY_ACCOUNTS_MAX_ADDRESS_ASC', + SecondaryAccountsMaxAddressDesc = 'SECONDARY_ACCOUNTS_MAX_ADDRESS_DESC', + SecondaryAccountsMaxBlockRangeAsc = 'SECONDARY_ACCOUNTS_MAX_BLOCK_RANGE_ASC', + SecondaryAccountsMaxBlockRangeDesc = 'SECONDARY_ACCOUNTS_MAX_BLOCK_RANGE_DESC', + SecondaryAccountsMaxCreatedAtAsc = 'SECONDARY_ACCOUNTS_MAX_CREATED_AT_ASC', + SecondaryAccountsMaxCreatedAtDesc = 'SECONDARY_ACCOUNTS_MAX_CREATED_AT_DESC', + SecondaryAccountsMaxCreatedBlockIdAsc = 'SECONDARY_ACCOUNTS_MAX_CREATED_BLOCK_ID_ASC', + SecondaryAccountsMaxCreatedBlockIdDesc = 'SECONDARY_ACCOUNTS_MAX_CREATED_BLOCK_ID_DESC', + SecondaryAccountsMaxDatetimeAsc = 'SECONDARY_ACCOUNTS_MAX_DATETIME_ASC', + SecondaryAccountsMaxDatetimeDesc = 'SECONDARY_ACCOUNTS_MAX_DATETIME_DESC', + SecondaryAccountsMaxEventIdAsc = 'SECONDARY_ACCOUNTS_MAX_EVENT_ID_ASC', + SecondaryAccountsMaxEventIdDesc = 'SECONDARY_ACCOUNTS_MAX_EVENT_ID_DESC', + SecondaryAccountsMaxIdentityIdAsc = 'SECONDARY_ACCOUNTS_MAX_IDENTITY_ID_ASC', + SecondaryAccountsMaxIdentityIdDesc = 'SECONDARY_ACCOUNTS_MAX_IDENTITY_ID_DESC', + SecondaryAccountsMaxIdAsc = 'SECONDARY_ACCOUNTS_MAX_ID_ASC', + SecondaryAccountsMaxIdDesc = 'SECONDARY_ACCOUNTS_MAX_ID_DESC', + SecondaryAccountsMaxPermissionsIdAsc = 'SECONDARY_ACCOUNTS_MAX_PERMISSIONS_ID_ASC', + SecondaryAccountsMaxPermissionsIdDesc = 'SECONDARY_ACCOUNTS_MAX_PERMISSIONS_ID_DESC', + SecondaryAccountsMaxUpdatedBlockIdAsc = 'SECONDARY_ACCOUNTS_MAX_UPDATED_BLOCK_ID_ASC', + SecondaryAccountsMaxUpdatedBlockIdDesc = 'SECONDARY_ACCOUNTS_MAX_UPDATED_BLOCK_ID_DESC', + SecondaryAccountsMinAddressAsc = 'SECONDARY_ACCOUNTS_MIN_ADDRESS_ASC', + SecondaryAccountsMinAddressDesc = 'SECONDARY_ACCOUNTS_MIN_ADDRESS_DESC', + SecondaryAccountsMinBlockRangeAsc = 'SECONDARY_ACCOUNTS_MIN_BLOCK_RANGE_ASC', + SecondaryAccountsMinBlockRangeDesc = 'SECONDARY_ACCOUNTS_MIN_BLOCK_RANGE_DESC', + SecondaryAccountsMinCreatedAtAsc = 'SECONDARY_ACCOUNTS_MIN_CREATED_AT_ASC', + SecondaryAccountsMinCreatedAtDesc = 'SECONDARY_ACCOUNTS_MIN_CREATED_AT_DESC', + SecondaryAccountsMinCreatedBlockIdAsc = 'SECONDARY_ACCOUNTS_MIN_CREATED_BLOCK_ID_ASC', + SecondaryAccountsMinCreatedBlockIdDesc = 'SECONDARY_ACCOUNTS_MIN_CREATED_BLOCK_ID_DESC', + SecondaryAccountsMinDatetimeAsc = 'SECONDARY_ACCOUNTS_MIN_DATETIME_ASC', + SecondaryAccountsMinDatetimeDesc = 'SECONDARY_ACCOUNTS_MIN_DATETIME_DESC', + SecondaryAccountsMinEventIdAsc = 'SECONDARY_ACCOUNTS_MIN_EVENT_ID_ASC', + SecondaryAccountsMinEventIdDesc = 'SECONDARY_ACCOUNTS_MIN_EVENT_ID_DESC', + SecondaryAccountsMinIdentityIdAsc = 'SECONDARY_ACCOUNTS_MIN_IDENTITY_ID_ASC', + SecondaryAccountsMinIdentityIdDesc = 'SECONDARY_ACCOUNTS_MIN_IDENTITY_ID_DESC', + SecondaryAccountsMinIdAsc = 'SECONDARY_ACCOUNTS_MIN_ID_ASC', + SecondaryAccountsMinIdDesc = 'SECONDARY_ACCOUNTS_MIN_ID_DESC', + SecondaryAccountsMinPermissionsIdAsc = 'SECONDARY_ACCOUNTS_MIN_PERMISSIONS_ID_ASC', + SecondaryAccountsMinPermissionsIdDesc = 'SECONDARY_ACCOUNTS_MIN_PERMISSIONS_ID_DESC', + SecondaryAccountsMinUpdatedBlockIdAsc = 'SECONDARY_ACCOUNTS_MIN_UPDATED_BLOCK_ID_ASC', + SecondaryAccountsMinUpdatedBlockIdDesc = 'SECONDARY_ACCOUNTS_MIN_UPDATED_BLOCK_ID_DESC', + SecondaryAccountsStddevPopulationAddressAsc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_ADDRESS_ASC', + SecondaryAccountsStddevPopulationAddressDesc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_ADDRESS_DESC', + SecondaryAccountsStddevPopulationBlockRangeAsc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + SecondaryAccountsStddevPopulationBlockRangeDesc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + SecondaryAccountsStddevPopulationCreatedAtAsc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_CREATED_AT_ASC', + SecondaryAccountsStddevPopulationCreatedAtDesc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_CREATED_AT_DESC', + SecondaryAccountsStddevPopulationCreatedBlockIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + SecondaryAccountsStddevPopulationCreatedBlockIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + SecondaryAccountsStddevPopulationDatetimeAsc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_DATETIME_ASC', + SecondaryAccountsStddevPopulationDatetimeDesc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_DATETIME_DESC', + SecondaryAccountsStddevPopulationEventIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_EVENT_ID_ASC', + SecondaryAccountsStddevPopulationEventIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_EVENT_ID_DESC', + SecondaryAccountsStddevPopulationIdentityIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_IDENTITY_ID_ASC', + SecondaryAccountsStddevPopulationIdentityIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_IDENTITY_ID_DESC', + SecondaryAccountsStddevPopulationIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_ID_ASC', + SecondaryAccountsStddevPopulationIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_ID_DESC', + SecondaryAccountsStddevPopulationPermissionsIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_PERMISSIONS_ID_ASC', + SecondaryAccountsStddevPopulationPermissionsIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_PERMISSIONS_ID_DESC', + SecondaryAccountsStddevPopulationUpdatedBlockIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + SecondaryAccountsStddevPopulationUpdatedBlockIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + SecondaryAccountsStddevSampleAddressAsc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_ADDRESS_ASC', + SecondaryAccountsStddevSampleAddressDesc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_ADDRESS_DESC', + SecondaryAccountsStddevSampleBlockRangeAsc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + SecondaryAccountsStddevSampleBlockRangeDesc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + SecondaryAccountsStddevSampleCreatedAtAsc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_CREATED_AT_ASC', + SecondaryAccountsStddevSampleCreatedAtDesc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_CREATED_AT_DESC', + SecondaryAccountsStddevSampleCreatedBlockIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + SecondaryAccountsStddevSampleCreatedBlockIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + SecondaryAccountsStddevSampleDatetimeAsc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_DATETIME_ASC', + SecondaryAccountsStddevSampleDatetimeDesc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_DATETIME_DESC', + SecondaryAccountsStddevSampleEventIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_EVENT_ID_ASC', + SecondaryAccountsStddevSampleEventIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_EVENT_ID_DESC', + SecondaryAccountsStddevSampleIdentityIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + SecondaryAccountsStddevSampleIdentityIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + SecondaryAccountsStddevSampleIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_ID_ASC', + SecondaryAccountsStddevSampleIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_ID_DESC', + SecondaryAccountsStddevSamplePermissionsIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_PERMISSIONS_ID_ASC', + SecondaryAccountsStddevSamplePermissionsIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_PERMISSIONS_ID_DESC', + SecondaryAccountsStddevSampleUpdatedBlockIdAsc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + SecondaryAccountsStddevSampleUpdatedBlockIdDesc = 'SECONDARY_ACCOUNTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + SecondaryAccountsSumAddressAsc = 'SECONDARY_ACCOUNTS_SUM_ADDRESS_ASC', + SecondaryAccountsSumAddressDesc = 'SECONDARY_ACCOUNTS_SUM_ADDRESS_DESC', + SecondaryAccountsSumBlockRangeAsc = 'SECONDARY_ACCOUNTS_SUM_BLOCK_RANGE_ASC', + SecondaryAccountsSumBlockRangeDesc = 'SECONDARY_ACCOUNTS_SUM_BLOCK_RANGE_DESC', + SecondaryAccountsSumCreatedAtAsc = 'SECONDARY_ACCOUNTS_SUM_CREATED_AT_ASC', + SecondaryAccountsSumCreatedAtDesc = 'SECONDARY_ACCOUNTS_SUM_CREATED_AT_DESC', + SecondaryAccountsSumCreatedBlockIdAsc = 'SECONDARY_ACCOUNTS_SUM_CREATED_BLOCK_ID_ASC', + SecondaryAccountsSumCreatedBlockIdDesc = 'SECONDARY_ACCOUNTS_SUM_CREATED_BLOCK_ID_DESC', + SecondaryAccountsSumDatetimeAsc = 'SECONDARY_ACCOUNTS_SUM_DATETIME_ASC', + SecondaryAccountsSumDatetimeDesc = 'SECONDARY_ACCOUNTS_SUM_DATETIME_DESC', + SecondaryAccountsSumEventIdAsc = 'SECONDARY_ACCOUNTS_SUM_EVENT_ID_ASC', + SecondaryAccountsSumEventIdDesc = 'SECONDARY_ACCOUNTS_SUM_EVENT_ID_DESC', + SecondaryAccountsSumIdentityIdAsc = 'SECONDARY_ACCOUNTS_SUM_IDENTITY_ID_ASC', + SecondaryAccountsSumIdentityIdDesc = 'SECONDARY_ACCOUNTS_SUM_IDENTITY_ID_DESC', + SecondaryAccountsSumIdAsc = 'SECONDARY_ACCOUNTS_SUM_ID_ASC', + SecondaryAccountsSumIdDesc = 'SECONDARY_ACCOUNTS_SUM_ID_DESC', + SecondaryAccountsSumPermissionsIdAsc = 'SECONDARY_ACCOUNTS_SUM_PERMISSIONS_ID_ASC', + SecondaryAccountsSumPermissionsIdDesc = 'SECONDARY_ACCOUNTS_SUM_PERMISSIONS_ID_DESC', + SecondaryAccountsSumUpdatedBlockIdAsc = 'SECONDARY_ACCOUNTS_SUM_UPDATED_BLOCK_ID_ASC', + SecondaryAccountsSumUpdatedBlockIdDesc = 'SECONDARY_ACCOUNTS_SUM_UPDATED_BLOCK_ID_DESC', + SecondaryAccountsVariancePopulationAddressAsc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_ADDRESS_ASC', + SecondaryAccountsVariancePopulationAddressDesc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_ADDRESS_DESC', + SecondaryAccountsVariancePopulationBlockRangeAsc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + SecondaryAccountsVariancePopulationBlockRangeDesc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + SecondaryAccountsVariancePopulationCreatedAtAsc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_CREATED_AT_ASC', + SecondaryAccountsVariancePopulationCreatedAtDesc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_CREATED_AT_DESC', + SecondaryAccountsVariancePopulationCreatedBlockIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + SecondaryAccountsVariancePopulationCreatedBlockIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + SecondaryAccountsVariancePopulationDatetimeAsc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_DATETIME_ASC', + SecondaryAccountsVariancePopulationDatetimeDesc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_DATETIME_DESC', + SecondaryAccountsVariancePopulationEventIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_EVENT_ID_ASC', + SecondaryAccountsVariancePopulationEventIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_EVENT_ID_DESC', + SecondaryAccountsVariancePopulationIdentityIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + SecondaryAccountsVariancePopulationIdentityIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + SecondaryAccountsVariancePopulationIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_ID_ASC', + SecondaryAccountsVariancePopulationIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_ID_DESC', + SecondaryAccountsVariancePopulationPermissionsIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_PERMISSIONS_ID_ASC', + SecondaryAccountsVariancePopulationPermissionsIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_PERMISSIONS_ID_DESC', + SecondaryAccountsVariancePopulationUpdatedBlockIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + SecondaryAccountsVariancePopulationUpdatedBlockIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + SecondaryAccountsVarianceSampleAddressAsc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_ADDRESS_ASC', + SecondaryAccountsVarianceSampleAddressDesc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_ADDRESS_DESC', + SecondaryAccountsVarianceSampleBlockRangeAsc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + SecondaryAccountsVarianceSampleBlockRangeDesc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + SecondaryAccountsVarianceSampleCreatedAtAsc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + SecondaryAccountsVarianceSampleCreatedAtDesc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + SecondaryAccountsVarianceSampleCreatedBlockIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + SecondaryAccountsVarianceSampleCreatedBlockIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + SecondaryAccountsVarianceSampleDatetimeAsc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_DATETIME_ASC', + SecondaryAccountsVarianceSampleDatetimeDesc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_DATETIME_DESC', + SecondaryAccountsVarianceSampleEventIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_EVENT_ID_ASC', + SecondaryAccountsVarianceSampleEventIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_EVENT_ID_DESC', + SecondaryAccountsVarianceSampleIdentityIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + SecondaryAccountsVarianceSampleIdentityIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + SecondaryAccountsVarianceSampleIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_ID_ASC', + SecondaryAccountsVarianceSampleIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_ID_DESC', + SecondaryAccountsVarianceSamplePermissionsIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_PERMISSIONS_ID_ASC', + SecondaryAccountsVarianceSamplePermissionsIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_PERMISSIONS_ID_DESC', + SecondaryAccountsVarianceSampleUpdatedBlockIdAsc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + SecondaryAccountsVarianceSampleUpdatedBlockIdDesc = 'SECONDARY_ACCOUNTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + SecondaryKeysFrozenAsc = 'SECONDARY_KEYS_FROZEN_ASC', + SecondaryKeysFrozenDesc = 'SECONDARY_KEYS_FROZEN_DESC', + StakingEventsAverageAmountAsc = 'STAKING_EVENTS_AVERAGE_AMOUNT_ASC', + StakingEventsAverageAmountDesc = 'STAKING_EVENTS_AVERAGE_AMOUNT_DESC', + StakingEventsAverageBlockRangeAsc = 'STAKING_EVENTS_AVERAGE_BLOCK_RANGE_ASC', + StakingEventsAverageBlockRangeDesc = 'STAKING_EVENTS_AVERAGE_BLOCK_RANGE_DESC', + StakingEventsAverageCreatedAtAsc = 'STAKING_EVENTS_AVERAGE_CREATED_AT_ASC', + StakingEventsAverageCreatedAtDesc = 'STAKING_EVENTS_AVERAGE_CREATED_AT_DESC', + StakingEventsAverageCreatedBlockIdAsc = 'STAKING_EVENTS_AVERAGE_CREATED_BLOCK_ID_ASC', + StakingEventsAverageCreatedBlockIdDesc = 'STAKING_EVENTS_AVERAGE_CREATED_BLOCK_ID_DESC', + StakingEventsAverageDatetimeAsc = 'STAKING_EVENTS_AVERAGE_DATETIME_ASC', + StakingEventsAverageDatetimeDesc = 'STAKING_EVENTS_AVERAGE_DATETIME_DESC', + StakingEventsAverageEventIdAsc = 'STAKING_EVENTS_AVERAGE_EVENT_ID_ASC', + StakingEventsAverageEventIdDesc = 'STAKING_EVENTS_AVERAGE_EVENT_ID_DESC', + StakingEventsAverageIdentityIdAsc = 'STAKING_EVENTS_AVERAGE_IDENTITY_ID_ASC', + StakingEventsAverageIdentityIdDesc = 'STAKING_EVENTS_AVERAGE_IDENTITY_ID_DESC', + StakingEventsAverageIdAsc = 'STAKING_EVENTS_AVERAGE_ID_ASC', + StakingEventsAverageIdDesc = 'STAKING_EVENTS_AVERAGE_ID_DESC', + StakingEventsAverageNominatedValidatorsAsc = 'STAKING_EVENTS_AVERAGE_NOMINATED_VALIDATORS_ASC', + StakingEventsAverageNominatedValidatorsDesc = 'STAKING_EVENTS_AVERAGE_NOMINATED_VALIDATORS_DESC', + StakingEventsAverageStashAccountAsc = 'STAKING_EVENTS_AVERAGE_STASH_ACCOUNT_ASC', + StakingEventsAverageStashAccountDesc = 'STAKING_EVENTS_AVERAGE_STASH_ACCOUNT_DESC', + StakingEventsAverageTransactionIdAsc = 'STAKING_EVENTS_AVERAGE_TRANSACTION_ID_ASC', + StakingEventsAverageTransactionIdDesc = 'STAKING_EVENTS_AVERAGE_TRANSACTION_ID_DESC', + StakingEventsAverageUpdatedBlockIdAsc = 'STAKING_EVENTS_AVERAGE_UPDATED_BLOCK_ID_ASC', + StakingEventsAverageUpdatedBlockIdDesc = 'STAKING_EVENTS_AVERAGE_UPDATED_BLOCK_ID_DESC', + StakingEventsCountAsc = 'STAKING_EVENTS_COUNT_ASC', + StakingEventsCountDesc = 'STAKING_EVENTS_COUNT_DESC', + StakingEventsDistinctCountAmountAsc = 'STAKING_EVENTS_DISTINCT_COUNT_AMOUNT_ASC', + StakingEventsDistinctCountAmountDesc = 'STAKING_EVENTS_DISTINCT_COUNT_AMOUNT_DESC', + StakingEventsDistinctCountBlockRangeAsc = 'STAKING_EVENTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StakingEventsDistinctCountBlockRangeDesc = 'STAKING_EVENTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StakingEventsDistinctCountCreatedAtAsc = 'STAKING_EVENTS_DISTINCT_COUNT_CREATED_AT_ASC', + StakingEventsDistinctCountCreatedAtDesc = 'STAKING_EVENTS_DISTINCT_COUNT_CREATED_AT_DESC', + StakingEventsDistinctCountCreatedBlockIdAsc = 'STAKING_EVENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StakingEventsDistinctCountCreatedBlockIdDesc = 'STAKING_EVENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StakingEventsDistinctCountDatetimeAsc = 'STAKING_EVENTS_DISTINCT_COUNT_DATETIME_ASC', + StakingEventsDistinctCountDatetimeDesc = 'STAKING_EVENTS_DISTINCT_COUNT_DATETIME_DESC', + StakingEventsDistinctCountEventIdAsc = 'STAKING_EVENTS_DISTINCT_COUNT_EVENT_ID_ASC', + StakingEventsDistinctCountEventIdDesc = 'STAKING_EVENTS_DISTINCT_COUNT_EVENT_ID_DESC', + StakingEventsDistinctCountIdentityIdAsc = 'STAKING_EVENTS_DISTINCT_COUNT_IDENTITY_ID_ASC', + StakingEventsDistinctCountIdentityIdDesc = 'STAKING_EVENTS_DISTINCT_COUNT_IDENTITY_ID_DESC', + StakingEventsDistinctCountIdAsc = 'STAKING_EVENTS_DISTINCT_COUNT_ID_ASC', + StakingEventsDistinctCountIdDesc = 'STAKING_EVENTS_DISTINCT_COUNT_ID_DESC', + StakingEventsDistinctCountNominatedValidatorsAsc = 'STAKING_EVENTS_DISTINCT_COUNT_NOMINATED_VALIDATORS_ASC', + StakingEventsDistinctCountNominatedValidatorsDesc = 'STAKING_EVENTS_DISTINCT_COUNT_NOMINATED_VALIDATORS_DESC', + StakingEventsDistinctCountStashAccountAsc = 'STAKING_EVENTS_DISTINCT_COUNT_STASH_ACCOUNT_ASC', + StakingEventsDistinctCountStashAccountDesc = 'STAKING_EVENTS_DISTINCT_COUNT_STASH_ACCOUNT_DESC', + StakingEventsDistinctCountTransactionIdAsc = 'STAKING_EVENTS_DISTINCT_COUNT_TRANSACTION_ID_ASC', + StakingEventsDistinctCountTransactionIdDesc = 'STAKING_EVENTS_DISTINCT_COUNT_TRANSACTION_ID_DESC', + StakingEventsDistinctCountUpdatedBlockIdAsc = 'STAKING_EVENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StakingEventsDistinctCountUpdatedBlockIdDesc = 'STAKING_EVENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StakingEventsMaxAmountAsc = 'STAKING_EVENTS_MAX_AMOUNT_ASC', + StakingEventsMaxAmountDesc = 'STAKING_EVENTS_MAX_AMOUNT_DESC', + StakingEventsMaxBlockRangeAsc = 'STAKING_EVENTS_MAX_BLOCK_RANGE_ASC', + StakingEventsMaxBlockRangeDesc = 'STAKING_EVENTS_MAX_BLOCK_RANGE_DESC', + StakingEventsMaxCreatedAtAsc = 'STAKING_EVENTS_MAX_CREATED_AT_ASC', + StakingEventsMaxCreatedAtDesc = 'STAKING_EVENTS_MAX_CREATED_AT_DESC', + StakingEventsMaxCreatedBlockIdAsc = 'STAKING_EVENTS_MAX_CREATED_BLOCK_ID_ASC', + StakingEventsMaxCreatedBlockIdDesc = 'STAKING_EVENTS_MAX_CREATED_BLOCK_ID_DESC', + StakingEventsMaxDatetimeAsc = 'STAKING_EVENTS_MAX_DATETIME_ASC', + StakingEventsMaxDatetimeDesc = 'STAKING_EVENTS_MAX_DATETIME_DESC', + StakingEventsMaxEventIdAsc = 'STAKING_EVENTS_MAX_EVENT_ID_ASC', + StakingEventsMaxEventIdDesc = 'STAKING_EVENTS_MAX_EVENT_ID_DESC', + StakingEventsMaxIdentityIdAsc = 'STAKING_EVENTS_MAX_IDENTITY_ID_ASC', + StakingEventsMaxIdentityIdDesc = 'STAKING_EVENTS_MAX_IDENTITY_ID_DESC', + StakingEventsMaxIdAsc = 'STAKING_EVENTS_MAX_ID_ASC', + StakingEventsMaxIdDesc = 'STAKING_EVENTS_MAX_ID_DESC', + StakingEventsMaxNominatedValidatorsAsc = 'STAKING_EVENTS_MAX_NOMINATED_VALIDATORS_ASC', + StakingEventsMaxNominatedValidatorsDesc = 'STAKING_EVENTS_MAX_NOMINATED_VALIDATORS_DESC', + StakingEventsMaxStashAccountAsc = 'STAKING_EVENTS_MAX_STASH_ACCOUNT_ASC', + StakingEventsMaxStashAccountDesc = 'STAKING_EVENTS_MAX_STASH_ACCOUNT_DESC', + StakingEventsMaxTransactionIdAsc = 'STAKING_EVENTS_MAX_TRANSACTION_ID_ASC', + StakingEventsMaxTransactionIdDesc = 'STAKING_EVENTS_MAX_TRANSACTION_ID_DESC', + StakingEventsMaxUpdatedBlockIdAsc = 'STAKING_EVENTS_MAX_UPDATED_BLOCK_ID_ASC', + StakingEventsMaxUpdatedBlockIdDesc = 'STAKING_EVENTS_MAX_UPDATED_BLOCK_ID_DESC', + StakingEventsMinAmountAsc = 'STAKING_EVENTS_MIN_AMOUNT_ASC', + StakingEventsMinAmountDesc = 'STAKING_EVENTS_MIN_AMOUNT_DESC', + StakingEventsMinBlockRangeAsc = 'STAKING_EVENTS_MIN_BLOCK_RANGE_ASC', + StakingEventsMinBlockRangeDesc = 'STAKING_EVENTS_MIN_BLOCK_RANGE_DESC', + StakingEventsMinCreatedAtAsc = 'STAKING_EVENTS_MIN_CREATED_AT_ASC', + StakingEventsMinCreatedAtDesc = 'STAKING_EVENTS_MIN_CREATED_AT_DESC', + StakingEventsMinCreatedBlockIdAsc = 'STAKING_EVENTS_MIN_CREATED_BLOCK_ID_ASC', + StakingEventsMinCreatedBlockIdDesc = 'STAKING_EVENTS_MIN_CREATED_BLOCK_ID_DESC', + StakingEventsMinDatetimeAsc = 'STAKING_EVENTS_MIN_DATETIME_ASC', + StakingEventsMinDatetimeDesc = 'STAKING_EVENTS_MIN_DATETIME_DESC', + StakingEventsMinEventIdAsc = 'STAKING_EVENTS_MIN_EVENT_ID_ASC', + StakingEventsMinEventIdDesc = 'STAKING_EVENTS_MIN_EVENT_ID_DESC', + StakingEventsMinIdentityIdAsc = 'STAKING_EVENTS_MIN_IDENTITY_ID_ASC', + StakingEventsMinIdentityIdDesc = 'STAKING_EVENTS_MIN_IDENTITY_ID_DESC', + StakingEventsMinIdAsc = 'STAKING_EVENTS_MIN_ID_ASC', + StakingEventsMinIdDesc = 'STAKING_EVENTS_MIN_ID_DESC', + StakingEventsMinNominatedValidatorsAsc = 'STAKING_EVENTS_MIN_NOMINATED_VALIDATORS_ASC', + StakingEventsMinNominatedValidatorsDesc = 'STAKING_EVENTS_MIN_NOMINATED_VALIDATORS_DESC', + StakingEventsMinStashAccountAsc = 'STAKING_EVENTS_MIN_STASH_ACCOUNT_ASC', + StakingEventsMinStashAccountDesc = 'STAKING_EVENTS_MIN_STASH_ACCOUNT_DESC', + StakingEventsMinTransactionIdAsc = 'STAKING_EVENTS_MIN_TRANSACTION_ID_ASC', + StakingEventsMinTransactionIdDesc = 'STAKING_EVENTS_MIN_TRANSACTION_ID_DESC', + StakingEventsMinUpdatedBlockIdAsc = 'STAKING_EVENTS_MIN_UPDATED_BLOCK_ID_ASC', + StakingEventsMinUpdatedBlockIdDesc = 'STAKING_EVENTS_MIN_UPDATED_BLOCK_ID_DESC', + StakingEventsStddevPopulationAmountAsc = 'STAKING_EVENTS_STDDEV_POPULATION_AMOUNT_ASC', + StakingEventsStddevPopulationAmountDesc = 'STAKING_EVENTS_STDDEV_POPULATION_AMOUNT_DESC', + StakingEventsStddevPopulationBlockRangeAsc = 'STAKING_EVENTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StakingEventsStddevPopulationBlockRangeDesc = 'STAKING_EVENTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StakingEventsStddevPopulationCreatedAtAsc = 'STAKING_EVENTS_STDDEV_POPULATION_CREATED_AT_ASC', + StakingEventsStddevPopulationCreatedAtDesc = 'STAKING_EVENTS_STDDEV_POPULATION_CREATED_AT_DESC', + StakingEventsStddevPopulationCreatedBlockIdAsc = 'STAKING_EVENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StakingEventsStddevPopulationCreatedBlockIdDesc = 'STAKING_EVENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StakingEventsStddevPopulationDatetimeAsc = 'STAKING_EVENTS_STDDEV_POPULATION_DATETIME_ASC', + StakingEventsStddevPopulationDatetimeDesc = 'STAKING_EVENTS_STDDEV_POPULATION_DATETIME_DESC', + StakingEventsStddevPopulationEventIdAsc = 'STAKING_EVENTS_STDDEV_POPULATION_EVENT_ID_ASC', + StakingEventsStddevPopulationEventIdDesc = 'STAKING_EVENTS_STDDEV_POPULATION_EVENT_ID_DESC', + StakingEventsStddevPopulationIdentityIdAsc = 'STAKING_EVENTS_STDDEV_POPULATION_IDENTITY_ID_ASC', + StakingEventsStddevPopulationIdentityIdDesc = 'STAKING_EVENTS_STDDEV_POPULATION_IDENTITY_ID_DESC', + StakingEventsStddevPopulationIdAsc = 'STAKING_EVENTS_STDDEV_POPULATION_ID_ASC', + StakingEventsStddevPopulationIdDesc = 'STAKING_EVENTS_STDDEV_POPULATION_ID_DESC', + StakingEventsStddevPopulationNominatedValidatorsAsc = 'STAKING_EVENTS_STDDEV_POPULATION_NOMINATED_VALIDATORS_ASC', + StakingEventsStddevPopulationNominatedValidatorsDesc = 'STAKING_EVENTS_STDDEV_POPULATION_NOMINATED_VALIDATORS_DESC', + StakingEventsStddevPopulationStashAccountAsc = 'STAKING_EVENTS_STDDEV_POPULATION_STASH_ACCOUNT_ASC', + StakingEventsStddevPopulationStashAccountDesc = 'STAKING_EVENTS_STDDEV_POPULATION_STASH_ACCOUNT_DESC', + StakingEventsStddevPopulationTransactionIdAsc = 'STAKING_EVENTS_STDDEV_POPULATION_TRANSACTION_ID_ASC', + StakingEventsStddevPopulationTransactionIdDesc = 'STAKING_EVENTS_STDDEV_POPULATION_TRANSACTION_ID_DESC', + StakingEventsStddevPopulationUpdatedBlockIdAsc = 'STAKING_EVENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StakingEventsStddevPopulationUpdatedBlockIdDesc = 'STAKING_EVENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StakingEventsStddevSampleAmountAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_AMOUNT_ASC', + StakingEventsStddevSampleAmountDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_AMOUNT_DESC', + StakingEventsStddevSampleBlockRangeAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StakingEventsStddevSampleBlockRangeDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StakingEventsStddevSampleCreatedAtAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_CREATED_AT_ASC', + StakingEventsStddevSampleCreatedAtDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_CREATED_AT_DESC', + StakingEventsStddevSampleCreatedBlockIdAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StakingEventsStddevSampleCreatedBlockIdDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StakingEventsStddevSampleDatetimeAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_DATETIME_ASC', + StakingEventsStddevSampleDatetimeDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_DATETIME_DESC', + StakingEventsStddevSampleEventIdAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_EVENT_ID_ASC', + StakingEventsStddevSampleEventIdDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_EVENT_ID_DESC', + StakingEventsStddevSampleIdentityIdAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + StakingEventsStddevSampleIdentityIdDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + StakingEventsStddevSampleIdAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_ID_ASC', + StakingEventsStddevSampleIdDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_ID_DESC', + StakingEventsStddevSampleNominatedValidatorsAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_NOMINATED_VALIDATORS_ASC', + StakingEventsStddevSampleNominatedValidatorsDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_NOMINATED_VALIDATORS_DESC', + StakingEventsStddevSampleStashAccountAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_STASH_ACCOUNT_ASC', + StakingEventsStddevSampleStashAccountDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_STASH_ACCOUNT_DESC', + StakingEventsStddevSampleTransactionIdAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_TRANSACTION_ID_ASC', + StakingEventsStddevSampleTransactionIdDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_TRANSACTION_ID_DESC', + StakingEventsStddevSampleUpdatedBlockIdAsc = 'STAKING_EVENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StakingEventsStddevSampleUpdatedBlockIdDesc = 'STAKING_EVENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StakingEventsSumAmountAsc = 'STAKING_EVENTS_SUM_AMOUNT_ASC', + StakingEventsSumAmountDesc = 'STAKING_EVENTS_SUM_AMOUNT_DESC', + StakingEventsSumBlockRangeAsc = 'STAKING_EVENTS_SUM_BLOCK_RANGE_ASC', + StakingEventsSumBlockRangeDesc = 'STAKING_EVENTS_SUM_BLOCK_RANGE_DESC', + StakingEventsSumCreatedAtAsc = 'STAKING_EVENTS_SUM_CREATED_AT_ASC', + StakingEventsSumCreatedAtDesc = 'STAKING_EVENTS_SUM_CREATED_AT_DESC', + StakingEventsSumCreatedBlockIdAsc = 'STAKING_EVENTS_SUM_CREATED_BLOCK_ID_ASC', + StakingEventsSumCreatedBlockIdDesc = 'STAKING_EVENTS_SUM_CREATED_BLOCK_ID_DESC', + StakingEventsSumDatetimeAsc = 'STAKING_EVENTS_SUM_DATETIME_ASC', + StakingEventsSumDatetimeDesc = 'STAKING_EVENTS_SUM_DATETIME_DESC', + StakingEventsSumEventIdAsc = 'STAKING_EVENTS_SUM_EVENT_ID_ASC', + StakingEventsSumEventIdDesc = 'STAKING_EVENTS_SUM_EVENT_ID_DESC', + StakingEventsSumIdentityIdAsc = 'STAKING_EVENTS_SUM_IDENTITY_ID_ASC', + StakingEventsSumIdentityIdDesc = 'STAKING_EVENTS_SUM_IDENTITY_ID_DESC', + StakingEventsSumIdAsc = 'STAKING_EVENTS_SUM_ID_ASC', + StakingEventsSumIdDesc = 'STAKING_EVENTS_SUM_ID_DESC', + StakingEventsSumNominatedValidatorsAsc = 'STAKING_EVENTS_SUM_NOMINATED_VALIDATORS_ASC', + StakingEventsSumNominatedValidatorsDesc = 'STAKING_EVENTS_SUM_NOMINATED_VALIDATORS_DESC', + StakingEventsSumStashAccountAsc = 'STAKING_EVENTS_SUM_STASH_ACCOUNT_ASC', + StakingEventsSumStashAccountDesc = 'STAKING_EVENTS_SUM_STASH_ACCOUNT_DESC', + StakingEventsSumTransactionIdAsc = 'STAKING_EVENTS_SUM_TRANSACTION_ID_ASC', + StakingEventsSumTransactionIdDesc = 'STAKING_EVENTS_SUM_TRANSACTION_ID_DESC', + StakingEventsSumUpdatedBlockIdAsc = 'STAKING_EVENTS_SUM_UPDATED_BLOCK_ID_ASC', + StakingEventsSumUpdatedBlockIdDesc = 'STAKING_EVENTS_SUM_UPDATED_BLOCK_ID_DESC', + StakingEventsVariancePopulationAmountAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_AMOUNT_ASC', + StakingEventsVariancePopulationAmountDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_AMOUNT_DESC', + StakingEventsVariancePopulationBlockRangeAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StakingEventsVariancePopulationBlockRangeDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StakingEventsVariancePopulationCreatedAtAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_CREATED_AT_ASC', + StakingEventsVariancePopulationCreatedAtDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_CREATED_AT_DESC', + StakingEventsVariancePopulationCreatedBlockIdAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StakingEventsVariancePopulationCreatedBlockIdDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StakingEventsVariancePopulationDatetimeAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_DATETIME_ASC', + StakingEventsVariancePopulationDatetimeDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_DATETIME_DESC', + StakingEventsVariancePopulationEventIdAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_EVENT_ID_ASC', + StakingEventsVariancePopulationEventIdDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_EVENT_ID_DESC', + StakingEventsVariancePopulationIdentityIdAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + StakingEventsVariancePopulationIdentityIdDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + StakingEventsVariancePopulationIdAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_ID_ASC', + StakingEventsVariancePopulationIdDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_ID_DESC', + StakingEventsVariancePopulationNominatedValidatorsAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_NOMINATED_VALIDATORS_ASC', + StakingEventsVariancePopulationNominatedValidatorsDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_NOMINATED_VALIDATORS_DESC', + StakingEventsVariancePopulationStashAccountAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_STASH_ACCOUNT_ASC', + StakingEventsVariancePopulationStashAccountDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_STASH_ACCOUNT_DESC', + StakingEventsVariancePopulationTransactionIdAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_TRANSACTION_ID_ASC', + StakingEventsVariancePopulationTransactionIdDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_TRANSACTION_ID_DESC', + StakingEventsVariancePopulationUpdatedBlockIdAsc = 'STAKING_EVENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StakingEventsVariancePopulationUpdatedBlockIdDesc = 'STAKING_EVENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StakingEventsVarianceSampleAmountAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_AMOUNT_ASC', + StakingEventsVarianceSampleAmountDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_AMOUNT_DESC', + StakingEventsVarianceSampleBlockRangeAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StakingEventsVarianceSampleBlockRangeDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StakingEventsVarianceSampleCreatedAtAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + StakingEventsVarianceSampleCreatedAtDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + StakingEventsVarianceSampleCreatedBlockIdAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StakingEventsVarianceSampleCreatedBlockIdDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StakingEventsVarianceSampleDatetimeAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_DATETIME_ASC', + StakingEventsVarianceSampleDatetimeDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_DATETIME_DESC', + StakingEventsVarianceSampleEventIdAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_EVENT_ID_ASC', + StakingEventsVarianceSampleEventIdDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_EVENT_ID_DESC', + StakingEventsVarianceSampleIdentityIdAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + StakingEventsVarianceSampleIdentityIdDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + StakingEventsVarianceSampleIdAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_ID_ASC', + StakingEventsVarianceSampleIdDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_ID_DESC', + StakingEventsVarianceSampleNominatedValidatorsAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_NOMINATED_VALIDATORS_ASC', + StakingEventsVarianceSampleNominatedValidatorsDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_NOMINATED_VALIDATORS_DESC', + StakingEventsVarianceSampleStashAccountAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_STASH_ACCOUNT_ASC', + StakingEventsVarianceSampleStashAccountDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_STASH_ACCOUNT_DESC', + StakingEventsVarianceSampleTransactionIdAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_TRANSACTION_ID_ASC', + StakingEventsVarianceSampleTransactionIdDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_TRANSACTION_ID_DESC', + StakingEventsVarianceSampleUpdatedBlockIdAsc = 'STAKING_EVENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StakingEventsVarianceSampleUpdatedBlockIdDesc = 'STAKING_EVENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdAverageAssetIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_ASSET_ID_ASC', + StatTypesByClaimIssuerIdAverageAssetIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_ASSET_ID_DESC', + StatTypesByClaimIssuerIdAverageBlockRangeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_BLOCK_RANGE_ASC', + StatTypesByClaimIssuerIdAverageBlockRangeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_BLOCK_RANGE_DESC', + StatTypesByClaimIssuerIdAverageClaimIssuerIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_CLAIM_ISSUER_ID_ASC', + StatTypesByClaimIssuerIdAverageClaimIssuerIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_CLAIM_ISSUER_ID_DESC', + StatTypesByClaimIssuerIdAverageClaimTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_CLAIM_TYPE_ASC', + StatTypesByClaimIssuerIdAverageClaimTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_CLAIM_TYPE_DESC', + StatTypesByClaimIssuerIdAverageCreatedAtAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_CREATED_AT_ASC', + StatTypesByClaimIssuerIdAverageCreatedAtDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_CREATED_AT_DESC', + StatTypesByClaimIssuerIdAverageCreatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdAverageCreatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdAverageCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByClaimIssuerIdAverageCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByClaimIssuerIdAverageIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_ID_ASC', + StatTypesByClaimIssuerIdAverageIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_ID_DESC', + StatTypesByClaimIssuerIdAverageOpTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_OP_TYPE_ASC', + StatTypesByClaimIssuerIdAverageOpTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_OP_TYPE_DESC', + StatTypesByClaimIssuerIdAverageUpdatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdAverageUpdatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdCountAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_COUNT_ASC', + StatTypesByClaimIssuerIdCountDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_COUNT_DESC', + StatTypesByClaimIssuerIdDistinctCountAssetIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_ASSET_ID_ASC', + StatTypesByClaimIssuerIdDistinctCountAssetIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_ASSET_ID_DESC', + StatTypesByClaimIssuerIdDistinctCountBlockRangeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StatTypesByClaimIssuerIdDistinctCountBlockRangeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StatTypesByClaimIssuerIdDistinctCountClaimIssuerIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_ASC', + StatTypesByClaimIssuerIdDistinctCountClaimIssuerIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_DESC', + StatTypesByClaimIssuerIdDistinctCountClaimTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CLAIM_TYPE_ASC', + StatTypesByClaimIssuerIdDistinctCountClaimTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CLAIM_TYPE_DESC', + StatTypesByClaimIssuerIdDistinctCountCreatedAtAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CREATED_AT_ASC', + StatTypesByClaimIssuerIdDistinctCountCreatedAtDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CREATED_AT_DESC', + StatTypesByClaimIssuerIdDistinctCountCreatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdDistinctCountCreatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdDistinctCountCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByClaimIssuerIdDistinctCountCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByClaimIssuerIdDistinctCountIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_ID_ASC', + StatTypesByClaimIssuerIdDistinctCountIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_ID_DESC', + StatTypesByClaimIssuerIdDistinctCountOpTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_OP_TYPE_ASC', + StatTypesByClaimIssuerIdDistinctCountOpTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_OP_TYPE_DESC', + StatTypesByClaimIssuerIdDistinctCountUpdatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdDistinctCountUpdatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdMaxAssetIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_ASSET_ID_ASC', + StatTypesByClaimIssuerIdMaxAssetIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_ASSET_ID_DESC', + StatTypesByClaimIssuerIdMaxBlockRangeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_BLOCK_RANGE_ASC', + StatTypesByClaimIssuerIdMaxBlockRangeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_BLOCK_RANGE_DESC', + StatTypesByClaimIssuerIdMaxClaimIssuerIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_CLAIM_ISSUER_ID_ASC', + StatTypesByClaimIssuerIdMaxClaimIssuerIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_CLAIM_ISSUER_ID_DESC', + StatTypesByClaimIssuerIdMaxClaimTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_CLAIM_TYPE_ASC', + StatTypesByClaimIssuerIdMaxClaimTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_CLAIM_TYPE_DESC', + StatTypesByClaimIssuerIdMaxCreatedAtAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_CREATED_AT_ASC', + StatTypesByClaimIssuerIdMaxCreatedAtDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_CREATED_AT_DESC', + StatTypesByClaimIssuerIdMaxCreatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_CREATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdMaxCreatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_CREATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdMaxCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByClaimIssuerIdMaxCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByClaimIssuerIdMaxIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_ID_ASC', + StatTypesByClaimIssuerIdMaxIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_ID_DESC', + StatTypesByClaimIssuerIdMaxOpTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_OP_TYPE_ASC', + StatTypesByClaimIssuerIdMaxOpTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_OP_TYPE_DESC', + StatTypesByClaimIssuerIdMaxUpdatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_UPDATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdMaxUpdatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MAX_UPDATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdMinAssetIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_ASSET_ID_ASC', + StatTypesByClaimIssuerIdMinAssetIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_ASSET_ID_DESC', + StatTypesByClaimIssuerIdMinBlockRangeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_BLOCK_RANGE_ASC', + StatTypesByClaimIssuerIdMinBlockRangeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_BLOCK_RANGE_DESC', + StatTypesByClaimIssuerIdMinClaimIssuerIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_CLAIM_ISSUER_ID_ASC', + StatTypesByClaimIssuerIdMinClaimIssuerIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_CLAIM_ISSUER_ID_DESC', + StatTypesByClaimIssuerIdMinClaimTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_CLAIM_TYPE_ASC', + StatTypesByClaimIssuerIdMinClaimTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_CLAIM_TYPE_DESC', + StatTypesByClaimIssuerIdMinCreatedAtAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_CREATED_AT_ASC', + StatTypesByClaimIssuerIdMinCreatedAtDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_CREATED_AT_DESC', + StatTypesByClaimIssuerIdMinCreatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_CREATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdMinCreatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_CREATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdMinCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByClaimIssuerIdMinCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByClaimIssuerIdMinIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_ID_ASC', + StatTypesByClaimIssuerIdMinIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_ID_DESC', + StatTypesByClaimIssuerIdMinOpTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_OP_TYPE_ASC', + StatTypesByClaimIssuerIdMinOpTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_OP_TYPE_DESC', + StatTypesByClaimIssuerIdMinUpdatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_UPDATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdMinUpdatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_MIN_UPDATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdStddevPopulationAssetIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_ASSET_ID_ASC', + StatTypesByClaimIssuerIdStddevPopulationAssetIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_ASSET_ID_DESC', + StatTypesByClaimIssuerIdStddevPopulationBlockRangeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StatTypesByClaimIssuerIdStddevPopulationBlockRangeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StatTypesByClaimIssuerIdStddevPopulationClaimIssuerIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_ASC', + StatTypesByClaimIssuerIdStddevPopulationClaimIssuerIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_DESC', + StatTypesByClaimIssuerIdStddevPopulationClaimTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CLAIM_TYPE_ASC', + StatTypesByClaimIssuerIdStddevPopulationClaimTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CLAIM_TYPE_DESC', + StatTypesByClaimIssuerIdStddevPopulationCreatedAtAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CREATED_AT_ASC', + StatTypesByClaimIssuerIdStddevPopulationCreatedAtDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CREATED_AT_DESC', + StatTypesByClaimIssuerIdStddevPopulationCreatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdStddevPopulationCreatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdStddevPopulationCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByClaimIssuerIdStddevPopulationCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByClaimIssuerIdStddevPopulationIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_ID_ASC', + StatTypesByClaimIssuerIdStddevPopulationIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_ID_DESC', + StatTypesByClaimIssuerIdStddevPopulationOpTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_OP_TYPE_ASC', + StatTypesByClaimIssuerIdStddevPopulationOpTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_OP_TYPE_DESC', + StatTypesByClaimIssuerIdStddevPopulationUpdatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdStddevPopulationUpdatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdStddevSampleAssetIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + StatTypesByClaimIssuerIdStddevSampleAssetIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + StatTypesByClaimIssuerIdStddevSampleBlockRangeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StatTypesByClaimIssuerIdStddevSampleBlockRangeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StatTypesByClaimIssuerIdStddevSampleClaimIssuerIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_ASC', + StatTypesByClaimIssuerIdStddevSampleClaimIssuerIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_DESC', + StatTypesByClaimIssuerIdStddevSampleClaimTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + StatTypesByClaimIssuerIdStddevSampleClaimTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + StatTypesByClaimIssuerIdStddevSampleCreatedAtAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + StatTypesByClaimIssuerIdStddevSampleCreatedAtDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + StatTypesByClaimIssuerIdStddevSampleCreatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdStddevSampleCreatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdStddevSampleCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByClaimIssuerIdStddevSampleCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByClaimIssuerIdStddevSampleIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_ID_ASC', + StatTypesByClaimIssuerIdStddevSampleIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_ID_DESC', + StatTypesByClaimIssuerIdStddevSampleOpTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_OP_TYPE_ASC', + StatTypesByClaimIssuerIdStddevSampleOpTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_OP_TYPE_DESC', + StatTypesByClaimIssuerIdStddevSampleUpdatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdStddevSampleUpdatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdSumAssetIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_ASSET_ID_ASC', + StatTypesByClaimIssuerIdSumAssetIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_ASSET_ID_DESC', + StatTypesByClaimIssuerIdSumBlockRangeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_BLOCK_RANGE_ASC', + StatTypesByClaimIssuerIdSumBlockRangeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_BLOCK_RANGE_DESC', + StatTypesByClaimIssuerIdSumClaimIssuerIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_CLAIM_ISSUER_ID_ASC', + StatTypesByClaimIssuerIdSumClaimIssuerIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_CLAIM_ISSUER_ID_DESC', + StatTypesByClaimIssuerIdSumClaimTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_CLAIM_TYPE_ASC', + StatTypesByClaimIssuerIdSumClaimTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_CLAIM_TYPE_DESC', + StatTypesByClaimIssuerIdSumCreatedAtAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_CREATED_AT_ASC', + StatTypesByClaimIssuerIdSumCreatedAtDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_CREATED_AT_DESC', + StatTypesByClaimIssuerIdSumCreatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_CREATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdSumCreatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_CREATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdSumCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByClaimIssuerIdSumCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByClaimIssuerIdSumIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_ID_ASC', + StatTypesByClaimIssuerIdSumIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_ID_DESC', + StatTypesByClaimIssuerIdSumOpTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_OP_TYPE_ASC', + StatTypesByClaimIssuerIdSumOpTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_OP_TYPE_DESC', + StatTypesByClaimIssuerIdSumUpdatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_UPDATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdSumUpdatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_SUM_UPDATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdVariancePopulationAssetIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + StatTypesByClaimIssuerIdVariancePopulationAssetIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + StatTypesByClaimIssuerIdVariancePopulationBlockRangeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StatTypesByClaimIssuerIdVariancePopulationBlockRangeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StatTypesByClaimIssuerIdVariancePopulationClaimIssuerIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_ASC', + StatTypesByClaimIssuerIdVariancePopulationClaimIssuerIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_DESC', + StatTypesByClaimIssuerIdVariancePopulationClaimTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + StatTypesByClaimIssuerIdVariancePopulationClaimTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + StatTypesByClaimIssuerIdVariancePopulationCreatedAtAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + StatTypesByClaimIssuerIdVariancePopulationCreatedAtDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + StatTypesByClaimIssuerIdVariancePopulationCreatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdVariancePopulationCreatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdVariancePopulationCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByClaimIssuerIdVariancePopulationCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByClaimIssuerIdVariancePopulationIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_ID_ASC', + StatTypesByClaimIssuerIdVariancePopulationIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_ID_DESC', + StatTypesByClaimIssuerIdVariancePopulationOpTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_OP_TYPE_ASC', + StatTypesByClaimIssuerIdVariancePopulationOpTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_OP_TYPE_DESC', + StatTypesByClaimIssuerIdVariancePopulationUpdatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdVariancePopulationUpdatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdVarianceSampleAssetIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + StatTypesByClaimIssuerIdVarianceSampleAssetIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + StatTypesByClaimIssuerIdVarianceSampleBlockRangeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StatTypesByClaimIssuerIdVarianceSampleBlockRangeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StatTypesByClaimIssuerIdVarianceSampleClaimIssuerIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_ASC', + StatTypesByClaimIssuerIdVarianceSampleClaimIssuerIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_DESC', + StatTypesByClaimIssuerIdVarianceSampleClaimTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + StatTypesByClaimIssuerIdVarianceSampleClaimTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + StatTypesByClaimIssuerIdVarianceSampleCreatedAtAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + StatTypesByClaimIssuerIdVarianceSampleCreatedAtDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + StatTypesByClaimIssuerIdVarianceSampleCreatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdVarianceSampleCreatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StatTypesByClaimIssuerIdVarianceSampleCustomClaimTypeIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_ASC', + StatTypesByClaimIssuerIdVarianceSampleCustomClaimTypeIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CUSTOM_CLAIM_TYPE_ID_DESC', + StatTypesByClaimIssuerIdVarianceSampleIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_ID_ASC', + StatTypesByClaimIssuerIdVarianceSampleIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_ID_DESC', + StatTypesByClaimIssuerIdVarianceSampleOpTypeAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_OP_TYPE_ASC', + StatTypesByClaimIssuerIdVarianceSampleOpTypeDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_OP_TYPE_DESC', + StatTypesByClaimIssuerIdVarianceSampleUpdatedBlockIdAsc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StatTypesByClaimIssuerIdVarianceSampleUpdatedBlockIdDesc = 'STAT_TYPES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByCreatorIdAverageBlockRangeAsc = 'STOS_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_ASC', + StosByCreatorIdAverageBlockRangeDesc = 'STOS_BY_CREATOR_ID_AVERAGE_BLOCK_RANGE_DESC', + StosByCreatorIdAverageCreatedAtAsc = 'STOS_BY_CREATOR_ID_AVERAGE_CREATED_AT_ASC', + StosByCreatorIdAverageCreatedAtDesc = 'STOS_BY_CREATOR_ID_AVERAGE_CREATED_AT_DESC', + StosByCreatorIdAverageCreatedBlockIdAsc = 'STOS_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + StosByCreatorIdAverageCreatedBlockIdDesc = 'STOS_BY_CREATOR_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + StosByCreatorIdAverageCreatorIdAsc = 'STOS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_ASC', + StosByCreatorIdAverageCreatorIdDesc = 'STOS_BY_CREATOR_ID_AVERAGE_CREATOR_ID_DESC', + StosByCreatorIdAverageEndAsc = 'STOS_BY_CREATOR_ID_AVERAGE_END_ASC', + StosByCreatorIdAverageEndDesc = 'STOS_BY_CREATOR_ID_AVERAGE_END_DESC', + StosByCreatorIdAverageIdAsc = 'STOS_BY_CREATOR_ID_AVERAGE_ID_ASC', + StosByCreatorIdAverageIdDesc = 'STOS_BY_CREATOR_ID_AVERAGE_ID_DESC', + StosByCreatorIdAverageMinimumInvestmentAsc = 'STOS_BY_CREATOR_ID_AVERAGE_MINIMUM_INVESTMENT_ASC', + StosByCreatorIdAverageMinimumInvestmentDesc = 'STOS_BY_CREATOR_ID_AVERAGE_MINIMUM_INVESTMENT_DESC', + StosByCreatorIdAverageNameAsc = 'STOS_BY_CREATOR_ID_AVERAGE_NAME_ASC', + StosByCreatorIdAverageNameDesc = 'STOS_BY_CREATOR_ID_AVERAGE_NAME_DESC', + StosByCreatorIdAverageOfferingAssetIdAsc = 'STOS_BY_CREATOR_ID_AVERAGE_OFFERING_ASSET_ID_ASC', + StosByCreatorIdAverageOfferingAssetIdDesc = 'STOS_BY_CREATOR_ID_AVERAGE_OFFERING_ASSET_ID_DESC', + StosByCreatorIdAverageOfferingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_AVERAGE_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatorIdAverageOfferingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_AVERAGE_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatorIdAverageRaisingAssetIdAsc = 'STOS_BY_CREATOR_ID_AVERAGE_RAISING_ASSET_ID_ASC', + StosByCreatorIdAverageRaisingAssetIdDesc = 'STOS_BY_CREATOR_ID_AVERAGE_RAISING_ASSET_ID_DESC', + StosByCreatorIdAverageRaisingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_AVERAGE_RAISING_PORTFOLIO_ID_ASC', + StosByCreatorIdAverageRaisingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_AVERAGE_RAISING_PORTFOLIO_ID_DESC', + StosByCreatorIdAverageRaisingTickerAsc = 'STOS_BY_CREATOR_ID_AVERAGE_RAISING_TICKER_ASC', + StosByCreatorIdAverageRaisingTickerDesc = 'STOS_BY_CREATOR_ID_AVERAGE_RAISING_TICKER_DESC', + StosByCreatorIdAverageStartAsc = 'STOS_BY_CREATOR_ID_AVERAGE_START_ASC', + StosByCreatorIdAverageStartDesc = 'STOS_BY_CREATOR_ID_AVERAGE_START_DESC', + StosByCreatorIdAverageStatusAsc = 'STOS_BY_CREATOR_ID_AVERAGE_STATUS_ASC', + StosByCreatorIdAverageStatusDesc = 'STOS_BY_CREATOR_ID_AVERAGE_STATUS_DESC', + StosByCreatorIdAverageStoIdAsc = 'STOS_BY_CREATOR_ID_AVERAGE_STO_ID_ASC', + StosByCreatorIdAverageStoIdDesc = 'STOS_BY_CREATOR_ID_AVERAGE_STO_ID_DESC', + StosByCreatorIdAverageTiersAsc = 'STOS_BY_CREATOR_ID_AVERAGE_TIERS_ASC', + StosByCreatorIdAverageTiersDesc = 'STOS_BY_CREATOR_ID_AVERAGE_TIERS_DESC', + StosByCreatorIdAverageUpdatedBlockIdAsc = 'STOS_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + StosByCreatorIdAverageUpdatedBlockIdDesc = 'STOS_BY_CREATOR_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + StosByCreatorIdAverageVenueIdAsc = 'STOS_BY_CREATOR_ID_AVERAGE_VENUE_ID_ASC', + StosByCreatorIdAverageVenueIdDesc = 'STOS_BY_CREATOR_ID_AVERAGE_VENUE_ID_DESC', + StosByCreatorIdCountAsc = 'STOS_BY_CREATOR_ID_COUNT_ASC', + StosByCreatorIdCountDesc = 'STOS_BY_CREATOR_ID_COUNT_DESC', + StosByCreatorIdDistinctCountBlockRangeAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StosByCreatorIdDistinctCountBlockRangeDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StosByCreatorIdDistinctCountCreatedAtAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_ASC', + StosByCreatorIdDistinctCountCreatedAtDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_AT_DESC', + StosByCreatorIdDistinctCountCreatedBlockIdAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StosByCreatorIdDistinctCountCreatedBlockIdDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StosByCreatorIdDistinctCountCreatorIdAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + StosByCreatorIdDistinctCountCreatorIdDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + StosByCreatorIdDistinctCountEndAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_END_ASC', + StosByCreatorIdDistinctCountEndDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_END_DESC', + StosByCreatorIdDistinctCountIdAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_ID_ASC', + StosByCreatorIdDistinctCountIdDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_ID_DESC', + StosByCreatorIdDistinctCountMinimumInvestmentAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_ASC', + StosByCreatorIdDistinctCountMinimumInvestmentDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_DESC', + StosByCreatorIdDistinctCountNameAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_NAME_ASC', + StosByCreatorIdDistinctCountNameDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_NAME_DESC', + StosByCreatorIdDistinctCountOfferingAssetIdAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_ASC', + StosByCreatorIdDistinctCountOfferingAssetIdDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_DESC', + StosByCreatorIdDistinctCountOfferingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatorIdDistinctCountOfferingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatorIdDistinctCountRaisingAssetIdAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_RAISING_ASSET_ID_ASC', + StosByCreatorIdDistinctCountRaisingAssetIdDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_RAISING_ASSET_ID_DESC', + StosByCreatorIdDistinctCountRaisingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_ASC', + StosByCreatorIdDistinctCountRaisingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_DESC', + StosByCreatorIdDistinctCountRaisingTickerAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_RAISING_TICKER_ASC', + StosByCreatorIdDistinctCountRaisingTickerDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_RAISING_TICKER_DESC', + StosByCreatorIdDistinctCountStartAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_START_ASC', + StosByCreatorIdDistinctCountStartDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_START_DESC', + StosByCreatorIdDistinctCountStatusAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_STATUS_ASC', + StosByCreatorIdDistinctCountStatusDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_STATUS_DESC', + StosByCreatorIdDistinctCountStoIdAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_STO_ID_ASC', + StosByCreatorIdDistinctCountStoIdDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_STO_ID_DESC', + StosByCreatorIdDistinctCountTiersAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_TIERS_ASC', + StosByCreatorIdDistinctCountTiersDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_TIERS_DESC', + StosByCreatorIdDistinctCountUpdatedBlockIdAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StosByCreatorIdDistinctCountUpdatedBlockIdDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StosByCreatorIdDistinctCountVenueIdAsc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_VENUE_ID_ASC', + StosByCreatorIdDistinctCountVenueIdDesc = 'STOS_BY_CREATOR_ID_DISTINCT_COUNT_VENUE_ID_DESC', + StosByCreatorIdMaxBlockRangeAsc = 'STOS_BY_CREATOR_ID_MAX_BLOCK_RANGE_ASC', + StosByCreatorIdMaxBlockRangeDesc = 'STOS_BY_CREATOR_ID_MAX_BLOCK_RANGE_DESC', + StosByCreatorIdMaxCreatedAtAsc = 'STOS_BY_CREATOR_ID_MAX_CREATED_AT_ASC', + StosByCreatorIdMaxCreatedAtDesc = 'STOS_BY_CREATOR_ID_MAX_CREATED_AT_DESC', + StosByCreatorIdMaxCreatedBlockIdAsc = 'STOS_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_ASC', + StosByCreatorIdMaxCreatedBlockIdDesc = 'STOS_BY_CREATOR_ID_MAX_CREATED_BLOCK_ID_DESC', + StosByCreatorIdMaxCreatorIdAsc = 'STOS_BY_CREATOR_ID_MAX_CREATOR_ID_ASC', + StosByCreatorIdMaxCreatorIdDesc = 'STOS_BY_CREATOR_ID_MAX_CREATOR_ID_DESC', + StosByCreatorIdMaxEndAsc = 'STOS_BY_CREATOR_ID_MAX_END_ASC', + StosByCreatorIdMaxEndDesc = 'STOS_BY_CREATOR_ID_MAX_END_DESC', + StosByCreatorIdMaxIdAsc = 'STOS_BY_CREATOR_ID_MAX_ID_ASC', + StosByCreatorIdMaxIdDesc = 'STOS_BY_CREATOR_ID_MAX_ID_DESC', + StosByCreatorIdMaxMinimumInvestmentAsc = 'STOS_BY_CREATOR_ID_MAX_MINIMUM_INVESTMENT_ASC', + StosByCreatorIdMaxMinimumInvestmentDesc = 'STOS_BY_CREATOR_ID_MAX_MINIMUM_INVESTMENT_DESC', + StosByCreatorIdMaxNameAsc = 'STOS_BY_CREATOR_ID_MAX_NAME_ASC', + StosByCreatorIdMaxNameDesc = 'STOS_BY_CREATOR_ID_MAX_NAME_DESC', + StosByCreatorIdMaxOfferingAssetIdAsc = 'STOS_BY_CREATOR_ID_MAX_OFFERING_ASSET_ID_ASC', + StosByCreatorIdMaxOfferingAssetIdDesc = 'STOS_BY_CREATOR_ID_MAX_OFFERING_ASSET_ID_DESC', + StosByCreatorIdMaxOfferingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_MAX_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatorIdMaxOfferingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_MAX_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatorIdMaxRaisingAssetIdAsc = 'STOS_BY_CREATOR_ID_MAX_RAISING_ASSET_ID_ASC', + StosByCreatorIdMaxRaisingAssetIdDesc = 'STOS_BY_CREATOR_ID_MAX_RAISING_ASSET_ID_DESC', + StosByCreatorIdMaxRaisingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_MAX_RAISING_PORTFOLIO_ID_ASC', + StosByCreatorIdMaxRaisingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_MAX_RAISING_PORTFOLIO_ID_DESC', + StosByCreatorIdMaxRaisingTickerAsc = 'STOS_BY_CREATOR_ID_MAX_RAISING_TICKER_ASC', + StosByCreatorIdMaxRaisingTickerDesc = 'STOS_BY_CREATOR_ID_MAX_RAISING_TICKER_DESC', + StosByCreatorIdMaxStartAsc = 'STOS_BY_CREATOR_ID_MAX_START_ASC', + StosByCreatorIdMaxStartDesc = 'STOS_BY_CREATOR_ID_MAX_START_DESC', + StosByCreatorIdMaxStatusAsc = 'STOS_BY_CREATOR_ID_MAX_STATUS_ASC', + StosByCreatorIdMaxStatusDesc = 'STOS_BY_CREATOR_ID_MAX_STATUS_DESC', + StosByCreatorIdMaxStoIdAsc = 'STOS_BY_CREATOR_ID_MAX_STO_ID_ASC', + StosByCreatorIdMaxStoIdDesc = 'STOS_BY_CREATOR_ID_MAX_STO_ID_DESC', + StosByCreatorIdMaxTiersAsc = 'STOS_BY_CREATOR_ID_MAX_TIERS_ASC', + StosByCreatorIdMaxTiersDesc = 'STOS_BY_CREATOR_ID_MAX_TIERS_DESC', + StosByCreatorIdMaxUpdatedBlockIdAsc = 'STOS_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_ASC', + StosByCreatorIdMaxUpdatedBlockIdDesc = 'STOS_BY_CREATOR_ID_MAX_UPDATED_BLOCK_ID_DESC', + StosByCreatorIdMaxVenueIdAsc = 'STOS_BY_CREATOR_ID_MAX_VENUE_ID_ASC', + StosByCreatorIdMaxVenueIdDesc = 'STOS_BY_CREATOR_ID_MAX_VENUE_ID_DESC', + StosByCreatorIdMinBlockRangeAsc = 'STOS_BY_CREATOR_ID_MIN_BLOCK_RANGE_ASC', + StosByCreatorIdMinBlockRangeDesc = 'STOS_BY_CREATOR_ID_MIN_BLOCK_RANGE_DESC', + StosByCreatorIdMinCreatedAtAsc = 'STOS_BY_CREATOR_ID_MIN_CREATED_AT_ASC', + StosByCreatorIdMinCreatedAtDesc = 'STOS_BY_CREATOR_ID_MIN_CREATED_AT_DESC', + StosByCreatorIdMinCreatedBlockIdAsc = 'STOS_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_ASC', + StosByCreatorIdMinCreatedBlockIdDesc = 'STOS_BY_CREATOR_ID_MIN_CREATED_BLOCK_ID_DESC', + StosByCreatorIdMinCreatorIdAsc = 'STOS_BY_CREATOR_ID_MIN_CREATOR_ID_ASC', + StosByCreatorIdMinCreatorIdDesc = 'STOS_BY_CREATOR_ID_MIN_CREATOR_ID_DESC', + StosByCreatorIdMinEndAsc = 'STOS_BY_CREATOR_ID_MIN_END_ASC', + StosByCreatorIdMinEndDesc = 'STOS_BY_CREATOR_ID_MIN_END_DESC', + StosByCreatorIdMinIdAsc = 'STOS_BY_CREATOR_ID_MIN_ID_ASC', + StosByCreatorIdMinIdDesc = 'STOS_BY_CREATOR_ID_MIN_ID_DESC', + StosByCreatorIdMinMinimumInvestmentAsc = 'STOS_BY_CREATOR_ID_MIN_MINIMUM_INVESTMENT_ASC', + StosByCreatorIdMinMinimumInvestmentDesc = 'STOS_BY_CREATOR_ID_MIN_MINIMUM_INVESTMENT_DESC', + StosByCreatorIdMinNameAsc = 'STOS_BY_CREATOR_ID_MIN_NAME_ASC', + StosByCreatorIdMinNameDesc = 'STOS_BY_CREATOR_ID_MIN_NAME_DESC', + StosByCreatorIdMinOfferingAssetIdAsc = 'STOS_BY_CREATOR_ID_MIN_OFFERING_ASSET_ID_ASC', + StosByCreatorIdMinOfferingAssetIdDesc = 'STOS_BY_CREATOR_ID_MIN_OFFERING_ASSET_ID_DESC', + StosByCreatorIdMinOfferingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_MIN_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatorIdMinOfferingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_MIN_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatorIdMinRaisingAssetIdAsc = 'STOS_BY_CREATOR_ID_MIN_RAISING_ASSET_ID_ASC', + StosByCreatorIdMinRaisingAssetIdDesc = 'STOS_BY_CREATOR_ID_MIN_RAISING_ASSET_ID_DESC', + StosByCreatorIdMinRaisingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_MIN_RAISING_PORTFOLIO_ID_ASC', + StosByCreatorIdMinRaisingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_MIN_RAISING_PORTFOLIO_ID_DESC', + StosByCreatorIdMinRaisingTickerAsc = 'STOS_BY_CREATOR_ID_MIN_RAISING_TICKER_ASC', + StosByCreatorIdMinRaisingTickerDesc = 'STOS_BY_CREATOR_ID_MIN_RAISING_TICKER_DESC', + StosByCreatorIdMinStartAsc = 'STOS_BY_CREATOR_ID_MIN_START_ASC', + StosByCreatorIdMinStartDesc = 'STOS_BY_CREATOR_ID_MIN_START_DESC', + StosByCreatorIdMinStatusAsc = 'STOS_BY_CREATOR_ID_MIN_STATUS_ASC', + StosByCreatorIdMinStatusDesc = 'STOS_BY_CREATOR_ID_MIN_STATUS_DESC', + StosByCreatorIdMinStoIdAsc = 'STOS_BY_CREATOR_ID_MIN_STO_ID_ASC', + StosByCreatorIdMinStoIdDesc = 'STOS_BY_CREATOR_ID_MIN_STO_ID_DESC', + StosByCreatorIdMinTiersAsc = 'STOS_BY_CREATOR_ID_MIN_TIERS_ASC', + StosByCreatorIdMinTiersDesc = 'STOS_BY_CREATOR_ID_MIN_TIERS_DESC', + StosByCreatorIdMinUpdatedBlockIdAsc = 'STOS_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_ASC', + StosByCreatorIdMinUpdatedBlockIdDesc = 'STOS_BY_CREATOR_ID_MIN_UPDATED_BLOCK_ID_DESC', + StosByCreatorIdMinVenueIdAsc = 'STOS_BY_CREATOR_ID_MIN_VENUE_ID_ASC', + StosByCreatorIdMinVenueIdDesc = 'STOS_BY_CREATOR_ID_MIN_VENUE_ID_DESC', + StosByCreatorIdStddevPopulationBlockRangeAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StosByCreatorIdStddevPopulationBlockRangeDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StosByCreatorIdStddevPopulationCreatedAtAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_ASC', + StosByCreatorIdStddevPopulationCreatedAtDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_AT_DESC', + StosByCreatorIdStddevPopulationCreatedBlockIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StosByCreatorIdStddevPopulationCreatedBlockIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StosByCreatorIdStddevPopulationCreatorIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + StosByCreatorIdStddevPopulationCreatorIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + StosByCreatorIdStddevPopulationEndAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_END_ASC', + StosByCreatorIdStddevPopulationEndDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_END_DESC', + StosByCreatorIdStddevPopulationIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_ID_ASC', + StosByCreatorIdStddevPopulationIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_ID_DESC', + StosByCreatorIdStddevPopulationMinimumInvestmentAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByCreatorIdStddevPopulationMinimumInvestmentDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByCreatorIdStddevPopulationNameAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_NAME_ASC', + StosByCreatorIdStddevPopulationNameDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_NAME_DESC', + StosByCreatorIdStddevPopulationOfferingAssetIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_ASC', + StosByCreatorIdStddevPopulationOfferingAssetIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_DESC', + StosByCreatorIdStddevPopulationOfferingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatorIdStddevPopulationOfferingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatorIdStddevPopulationRaisingAssetIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_RAISING_ASSET_ID_ASC', + StosByCreatorIdStddevPopulationRaisingAssetIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_RAISING_ASSET_ID_DESC', + StosByCreatorIdStddevPopulationRaisingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByCreatorIdStddevPopulationRaisingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByCreatorIdStddevPopulationRaisingTickerAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_RAISING_TICKER_ASC', + StosByCreatorIdStddevPopulationRaisingTickerDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_RAISING_TICKER_DESC', + StosByCreatorIdStddevPopulationStartAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_START_ASC', + StosByCreatorIdStddevPopulationStartDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_START_DESC', + StosByCreatorIdStddevPopulationStatusAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_STATUS_ASC', + StosByCreatorIdStddevPopulationStatusDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_STATUS_DESC', + StosByCreatorIdStddevPopulationStoIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_STO_ID_ASC', + StosByCreatorIdStddevPopulationStoIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_STO_ID_DESC', + StosByCreatorIdStddevPopulationTiersAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_TIERS_ASC', + StosByCreatorIdStddevPopulationTiersDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_TIERS_DESC', + StosByCreatorIdStddevPopulationUpdatedBlockIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByCreatorIdStddevPopulationUpdatedBlockIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByCreatorIdStddevPopulationVenueIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_VENUE_ID_ASC', + StosByCreatorIdStddevPopulationVenueIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_POPULATION_VENUE_ID_DESC', + StosByCreatorIdStddevSampleBlockRangeAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StosByCreatorIdStddevSampleBlockRangeDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StosByCreatorIdStddevSampleCreatedAtAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + StosByCreatorIdStddevSampleCreatedAtDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + StosByCreatorIdStddevSampleCreatedBlockIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByCreatorIdStddevSampleCreatedBlockIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByCreatorIdStddevSampleCreatorIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + StosByCreatorIdStddevSampleCreatorIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + StosByCreatorIdStddevSampleEndAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_END_ASC', + StosByCreatorIdStddevSampleEndDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_END_DESC', + StosByCreatorIdStddevSampleIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_ASC', + StosByCreatorIdStddevSampleIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_ID_DESC', + StosByCreatorIdStddevSampleMinimumInvestmentAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByCreatorIdStddevSampleMinimumInvestmentDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByCreatorIdStddevSampleNameAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_NAME_ASC', + StosByCreatorIdStddevSampleNameDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_NAME_DESC', + StosByCreatorIdStddevSampleOfferingAssetIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByCreatorIdStddevSampleOfferingAssetIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByCreatorIdStddevSampleOfferingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatorIdStddevSampleOfferingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatorIdStddevSampleRaisingAssetIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_ASC', + StosByCreatorIdStddevSampleRaisingAssetIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_DESC', + StosByCreatorIdStddevSampleRaisingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByCreatorIdStddevSampleRaisingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByCreatorIdStddevSampleRaisingTickerAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_RAISING_TICKER_ASC', + StosByCreatorIdStddevSampleRaisingTickerDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_RAISING_TICKER_DESC', + StosByCreatorIdStddevSampleStartAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_START_ASC', + StosByCreatorIdStddevSampleStartDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_START_DESC', + StosByCreatorIdStddevSampleStatusAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_STATUS_ASC', + StosByCreatorIdStddevSampleStatusDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_STATUS_DESC', + StosByCreatorIdStddevSampleStoIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_STO_ID_ASC', + StosByCreatorIdStddevSampleStoIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_STO_ID_DESC', + StosByCreatorIdStddevSampleTiersAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_TIERS_ASC', + StosByCreatorIdStddevSampleTiersDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_TIERS_DESC', + StosByCreatorIdStddevSampleUpdatedBlockIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByCreatorIdStddevSampleUpdatedBlockIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByCreatorIdStddevSampleVenueIdAsc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + StosByCreatorIdStddevSampleVenueIdDesc = 'STOS_BY_CREATOR_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + StosByCreatorIdSumBlockRangeAsc = 'STOS_BY_CREATOR_ID_SUM_BLOCK_RANGE_ASC', + StosByCreatorIdSumBlockRangeDesc = 'STOS_BY_CREATOR_ID_SUM_BLOCK_RANGE_DESC', + StosByCreatorIdSumCreatedAtAsc = 'STOS_BY_CREATOR_ID_SUM_CREATED_AT_ASC', + StosByCreatorIdSumCreatedAtDesc = 'STOS_BY_CREATOR_ID_SUM_CREATED_AT_DESC', + StosByCreatorIdSumCreatedBlockIdAsc = 'STOS_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_ASC', + StosByCreatorIdSumCreatedBlockIdDesc = 'STOS_BY_CREATOR_ID_SUM_CREATED_BLOCK_ID_DESC', + StosByCreatorIdSumCreatorIdAsc = 'STOS_BY_CREATOR_ID_SUM_CREATOR_ID_ASC', + StosByCreatorIdSumCreatorIdDesc = 'STOS_BY_CREATOR_ID_SUM_CREATOR_ID_DESC', + StosByCreatorIdSumEndAsc = 'STOS_BY_CREATOR_ID_SUM_END_ASC', + StosByCreatorIdSumEndDesc = 'STOS_BY_CREATOR_ID_SUM_END_DESC', + StosByCreatorIdSumIdAsc = 'STOS_BY_CREATOR_ID_SUM_ID_ASC', + StosByCreatorIdSumIdDesc = 'STOS_BY_CREATOR_ID_SUM_ID_DESC', + StosByCreatorIdSumMinimumInvestmentAsc = 'STOS_BY_CREATOR_ID_SUM_MINIMUM_INVESTMENT_ASC', + StosByCreatorIdSumMinimumInvestmentDesc = 'STOS_BY_CREATOR_ID_SUM_MINIMUM_INVESTMENT_DESC', + StosByCreatorIdSumNameAsc = 'STOS_BY_CREATOR_ID_SUM_NAME_ASC', + StosByCreatorIdSumNameDesc = 'STOS_BY_CREATOR_ID_SUM_NAME_DESC', + StosByCreatorIdSumOfferingAssetIdAsc = 'STOS_BY_CREATOR_ID_SUM_OFFERING_ASSET_ID_ASC', + StosByCreatorIdSumOfferingAssetIdDesc = 'STOS_BY_CREATOR_ID_SUM_OFFERING_ASSET_ID_DESC', + StosByCreatorIdSumOfferingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_SUM_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatorIdSumOfferingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_SUM_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatorIdSumRaisingAssetIdAsc = 'STOS_BY_CREATOR_ID_SUM_RAISING_ASSET_ID_ASC', + StosByCreatorIdSumRaisingAssetIdDesc = 'STOS_BY_CREATOR_ID_SUM_RAISING_ASSET_ID_DESC', + StosByCreatorIdSumRaisingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_SUM_RAISING_PORTFOLIO_ID_ASC', + StosByCreatorIdSumRaisingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_SUM_RAISING_PORTFOLIO_ID_DESC', + StosByCreatorIdSumRaisingTickerAsc = 'STOS_BY_CREATOR_ID_SUM_RAISING_TICKER_ASC', + StosByCreatorIdSumRaisingTickerDesc = 'STOS_BY_CREATOR_ID_SUM_RAISING_TICKER_DESC', + StosByCreatorIdSumStartAsc = 'STOS_BY_CREATOR_ID_SUM_START_ASC', + StosByCreatorIdSumStartDesc = 'STOS_BY_CREATOR_ID_SUM_START_DESC', + StosByCreatorIdSumStatusAsc = 'STOS_BY_CREATOR_ID_SUM_STATUS_ASC', + StosByCreatorIdSumStatusDesc = 'STOS_BY_CREATOR_ID_SUM_STATUS_DESC', + StosByCreatorIdSumStoIdAsc = 'STOS_BY_CREATOR_ID_SUM_STO_ID_ASC', + StosByCreatorIdSumStoIdDesc = 'STOS_BY_CREATOR_ID_SUM_STO_ID_DESC', + StosByCreatorIdSumTiersAsc = 'STOS_BY_CREATOR_ID_SUM_TIERS_ASC', + StosByCreatorIdSumTiersDesc = 'STOS_BY_CREATOR_ID_SUM_TIERS_DESC', + StosByCreatorIdSumUpdatedBlockIdAsc = 'STOS_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_ASC', + StosByCreatorIdSumUpdatedBlockIdDesc = 'STOS_BY_CREATOR_ID_SUM_UPDATED_BLOCK_ID_DESC', + StosByCreatorIdSumVenueIdAsc = 'STOS_BY_CREATOR_ID_SUM_VENUE_ID_ASC', + StosByCreatorIdSumVenueIdDesc = 'STOS_BY_CREATOR_ID_SUM_VENUE_ID_DESC', + StosByCreatorIdVariancePopulationBlockRangeAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StosByCreatorIdVariancePopulationBlockRangeDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StosByCreatorIdVariancePopulationCreatedAtAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + StosByCreatorIdVariancePopulationCreatedAtDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + StosByCreatorIdVariancePopulationCreatedBlockIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StosByCreatorIdVariancePopulationCreatedBlockIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StosByCreatorIdVariancePopulationCreatorIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + StosByCreatorIdVariancePopulationCreatorIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + StosByCreatorIdVariancePopulationEndAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_END_ASC', + StosByCreatorIdVariancePopulationEndDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_END_DESC', + StosByCreatorIdVariancePopulationIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_ASC', + StosByCreatorIdVariancePopulationIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_ID_DESC', + StosByCreatorIdVariancePopulationMinimumInvestmentAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByCreatorIdVariancePopulationMinimumInvestmentDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByCreatorIdVariancePopulationNameAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_NAME_ASC', + StosByCreatorIdVariancePopulationNameDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_NAME_DESC', + StosByCreatorIdVariancePopulationOfferingAssetIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_ASC', + StosByCreatorIdVariancePopulationOfferingAssetIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_DESC', + StosByCreatorIdVariancePopulationOfferingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatorIdVariancePopulationOfferingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatorIdVariancePopulationRaisingAssetIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_ASC', + StosByCreatorIdVariancePopulationRaisingAssetIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_DESC', + StosByCreatorIdVariancePopulationRaisingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByCreatorIdVariancePopulationRaisingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByCreatorIdVariancePopulationRaisingTickerAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_RAISING_TICKER_ASC', + StosByCreatorIdVariancePopulationRaisingTickerDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_RAISING_TICKER_DESC', + StosByCreatorIdVariancePopulationStartAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_START_ASC', + StosByCreatorIdVariancePopulationStartDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_START_DESC', + StosByCreatorIdVariancePopulationStatusAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_STATUS_ASC', + StosByCreatorIdVariancePopulationStatusDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_STATUS_DESC', + StosByCreatorIdVariancePopulationStoIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_STO_ID_ASC', + StosByCreatorIdVariancePopulationStoIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_STO_ID_DESC', + StosByCreatorIdVariancePopulationTiersAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_TIERS_ASC', + StosByCreatorIdVariancePopulationTiersDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_TIERS_DESC', + StosByCreatorIdVariancePopulationUpdatedBlockIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByCreatorIdVariancePopulationUpdatedBlockIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByCreatorIdVariancePopulationVenueIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + StosByCreatorIdVariancePopulationVenueIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + StosByCreatorIdVarianceSampleBlockRangeAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StosByCreatorIdVarianceSampleBlockRangeDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StosByCreatorIdVarianceSampleCreatedAtAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + StosByCreatorIdVarianceSampleCreatedAtDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + StosByCreatorIdVarianceSampleCreatedBlockIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByCreatorIdVarianceSampleCreatedBlockIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByCreatorIdVarianceSampleCreatorIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + StosByCreatorIdVarianceSampleCreatorIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + StosByCreatorIdVarianceSampleEndAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_END_ASC', + StosByCreatorIdVarianceSampleEndDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_END_DESC', + StosByCreatorIdVarianceSampleIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_ASC', + StosByCreatorIdVarianceSampleIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_ID_DESC', + StosByCreatorIdVarianceSampleMinimumInvestmentAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByCreatorIdVarianceSampleMinimumInvestmentDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByCreatorIdVarianceSampleNameAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_NAME_ASC', + StosByCreatorIdVarianceSampleNameDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_NAME_DESC', + StosByCreatorIdVarianceSampleOfferingAssetIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByCreatorIdVarianceSampleOfferingAssetIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByCreatorIdVarianceSampleOfferingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByCreatorIdVarianceSampleOfferingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByCreatorIdVarianceSampleRaisingAssetIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_ASC', + StosByCreatorIdVarianceSampleRaisingAssetIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_DESC', + StosByCreatorIdVarianceSampleRaisingPortfolioIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByCreatorIdVarianceSampleRaisingPortfolioIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByCreatorIdVarianceSampleRaisingTickerAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_RAISING_TICKER_ASC', + StosByCreatorIdVarianceSampleRaisingTickerDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_RAISING_TICKER_DESC', + StosByCreatorIdVarianceSampleStartAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_START_ASC', + StosByCreatorIdVarianceSampleStartDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_START_DESC', + StosByCreatorIdVarianceSampleStatusAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_STATUS_ASC', + StosByCreatorIdVarianceSampleStatusDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_STATUS_DESC', + StosByCreatorIdVarianceSampleStoIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_STO_ID_ASC', + StosByCreatorIdVarianceSampleStoIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_STO_ID_DESC', + StosByCreatorIdVarianceSampleTiersAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_TIERS_ASC', + StosByCreatorIdVarianceSampleTiersDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_TIERS_DESC', + StosByCreatorIdVarianceSampleUpdatedBlockIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByCreatorIdVarianceSampleUpdatedBlockIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByCreatorIdVarianceSampleVenueIdAsc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + StosByCreatorIdVarianceSampleVenueIdDesc = 'STOS_BY_CREATOR_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + TickerExternalAgentsByCallerIdAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentsByCallerIdAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentsByCallerIdAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentsByCallerIdAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentsByCallerIdAverageCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_CALLER_ID_ASC', + TickerExternalAgentsByCallerIdAverageCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_CALLER_ID_DESC', + TickerExternalAgentsByCallerIdAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentsByCallerIdAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentsByCallerIdAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdAverageDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_DATETIME_ASC', + TickerExternalAgentsByCallerIdAverageDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_DATETIME_DESC', + TickerExternalAgentsByCallerIdAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentsByCallerIdAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentsByCallerIdAverageIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_ID_ASC', + TickerExternalAgentsByCallerIdAverageIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_ID_DESC', + TickerExternalAgentsByCallerIdAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdCountAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_COUNT_ASC', + TickerExternalAgentsByCallerIdCountDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_COUNT_DESC', + TickerExternalAgentsByCallerIdDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentsByCallerIdDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentsByCallerIdDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentsByCallerIdDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentsByCallerIdDistinctCountCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_CALLER_ID_ASC', + TickerExternalAgentsByCallerIdDistinctCountCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_CALLER_ID_DESC', + TickerExternalAgentsByCallerIdDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentsByCallerIdDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentsByCallerIdDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdDistinctCountDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_DATETIME_ASC', + TickerExternalAgentsByCallerIdDistinctCountDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_DATETIME_DESC', + TickerExternalAgentsByCallerIdDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentsByCallerIdDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentsByCallerIdDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentsByCallerIdDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentsByCallerIdDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_ASSET_ID_ASC', + TickerExternalAgentsByCallerIdMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_ASSET_ID_DESC', + TickerExternalAgentsByCallerIdMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentsByCallerIdMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentsByCallerIdMaxCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_CALLER_ID_ASC', + TickerExternalAgentsByCallerIdMaxCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_CALLER_ID_DESC', + TickerExternalAgentsByCallerIdMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_CREATED_AT_ASC', + TickerExternalAgentsByCallerIdMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_CREATED_AT_DESC', + TickerExternalAgentsByCallerIdMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdMaxDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_DATETIME_ASC', + TickerExternalAgentsByCallerIdMaxDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_DATETIME_DESC', + TickerExternalAgentsByCallerIdMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_EVENT_IDX_ASC', + TickerExternalAgentsByCallerIdMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_EVENT_IDX_DESC', + TickerExternalAgentsByCallerIdMaxIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_ID_ASC', + TickerExternalAgentsByCallerIdMaxIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_ID_DESC', + TickerExternalAgentsByCallerIdMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdMinAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_ASSET_ID_ASC', + TickerExternalAgentsByCallerIdMinAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_ASSET_ID_DESC', + TickerExternalAgentsByCallerIdMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentsByCallerIdMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentsByCallerIdMinCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_CALLER_ID_ASC', + TickerExternalAgentsByCallerIdMinCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_CALLER_ID_DESC', + TickerExternalAgentsByCallerIdMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_CREATED_AT_ASC', + TickerExternalAgentsByCallerIdMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_CREATED_AT_DESC', + TickerExternalAgentsByCallerIdMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdMinDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_DATETIME_ASC', + TickerExternalAgentsByCallerIdMinDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_DATETIME_DESC', + TickerExternalAgentsByCallerIdMinEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_EVENT_IDX_ASC', + TickerExternalAgentsByCallerIdMinEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_EVENT_IDX_DESC', + TickerExternalAgentsByCallerIdMinIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_ID_ASC', + TickerExternalAgentsByCallerIdMinIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_ID_DESC', + TickerExternalAgentsByCallerIdMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentsByCallerIdStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentsByCallerIdStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentsByCallerIdStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentsByCallerIdStddevPopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_CALLER_ID_ASC', + TickerExternalAgentsByCallerIdStddevPopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_CALLER_ID_DESC', + TickerExternalAgentsByCallerIdStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentsByCallerIdStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentsByCallerIdStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdStddevPopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_DATETIME_ASC', + TickerExternalAgentsByCallerIdStddevPopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_DATETIME_DESC', + TickerExternalAgentsByCallerIdStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentsByCallerIdStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentsByCallerIdStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentsByCallerIdStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentsByCallerIdStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentsByCallerIdStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentsByCallerIdStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentsByCallerIdStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentsByCallerIdStddevSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentsByCallerIdStddevSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentsByCallerIdStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentsByCallerIdStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentsByCallerIdStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdStddevSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_DATETIME_ASC', + TickerExternalAgentsByCallerIdStddevSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_DATETIME_DESC', + TickerExternalAgentsByCallerIdStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentsByCallerIdStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentsByCallerIdStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentsByCallerIdStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentsByCallerIdStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdSumAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_ASSET_ID_ASC', + TickerExternalAgentsByCallerIdSumAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_ASSET_ID_DESC', + TickerExternalAgentsByCallerIdSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentsByCallerIdSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentsByCallerIdSumCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_CALLER_ID_ASC', + TickerExternalAgentsByCallerIdSumCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_CALLER_ID_DESC', + TickerExternalAgentsByCallerIdSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_CREATED_AT_ASC', + TickerExternalAgentsByCallerIdSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_CREATED_AT_DESC', + TickerExternalAgentsByCallerIdSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdSumDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_DATETIME_ASC', + TickerExternalAgentsByCallerIdSumDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_DATETIME_DESC', + TickerExternalAgentsByCallerIdSumEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_EVENT_IDX_ASC', + TickerExternalAgentsByCallerIdSumEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_EVENT_IDX_DESC', + TickerExternalAgentsByCallerIdSumIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_ID_ASC', + TickerExternalAgentsByCallerIdSumIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_ID_DESC', + TickerExternalAgentsByCallerIdSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentsByCallerIdVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentsByCallerIdVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentsByCallerIdVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentsByCallerIdVariancePopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_CALLER_ID_ASC', + TickerExternalAgentsByCallerIdVariancePopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_CALLER_ID_DESC', + TickerExternalAgentsByCallerIdVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentsByCallerIdVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentsByCallerIdVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdVariancePopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_DATETIME_ASC', + TickerExternalAgentsByCallerIdVariancePopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_DATETIME_DESC', + TickerExternalAgentsByCallerIdVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentsByCallerIdVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentsByCallerIdVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentsByCallerIdVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentsByCallerIdVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentsByCallerIdVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentsByCallerIdVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentsByCallerIdVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentsByCallerIdVarianceSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentsByCallerIdVarianceSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentsByCallerIdVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentsByCallerIdVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentsByCallerIdVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentsByCallerIdVarianceSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_DATETIME_ASC', + TickerExternalAgentsByCallerIdVarianceSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_DATETIME_DESC', + TickerExternalAgentsByCallerIdVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentsByCallerIdVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentsByCallerIdVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentsByCallerIdVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentsByCallerIdVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentsByCallerIdVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENTS_BY_CALLER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentActionsByCallerIdAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentActionsByCallerIdAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCallerIdAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCallerIdAverageCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_CALLER_ID_ASC', + TickerExternalAgentActionsByCallerIdAverageCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_CALLER_ID_DESC', + TickerExternalAgentActionsByCallerIdAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentActionsByCallerIdAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentActionsByCallerIdAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentActionsByCallerIdAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentActionsByCallerIdAverageEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_EVENT_ID_ASC', + TickerExternalAgentActionsByCallerIdAverageEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_EVENT_ID_DESC', + TickerExternalAgentActionsByCallerIdAverageIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_ID_ASC', + TickerExternalAgentActionsByCallerIdAverageIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_ID_DESC', + TickerExternalAgentActionsByCallerIdAveragePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_PALLET_NAME_ASC', + TickerExternalAgentActionsByCallerIdAveragePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_PALLET_NAME_DESC', + TickerExternalAgentActionsByCallerIdAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdCountAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_COUNT_ASC', + TickerExternalAgentActionsByCallerIdCountDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_COUNT_DESC', + TickerExternalAgentActionsByCallerIdDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentActionsByCallerIdDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentActionsByCallerIdDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCallerIdDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCallerIdDistinctCountCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_CALLER_ID_ASC', + TickerExternalAgentActionsByCallerIdDistinctCountCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_CALLER_ID_DESC', + TickerExternalAgentActionsByCallerIdDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentActionsByCallerIdDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentActionsByCallerIdDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentActionsByCallerIdDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentActionsByCallerIdDistinctCountEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_EVENT_ID_ASC', + TickerExternalAgentActionsByCallerIdDistinctCountEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_EVENT_ID_DESC', + TickerExternalAgentActionsByCallerIdDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentActionsByCallerIdDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentActionsByCallerIdDistinctCountPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_PALLET_NAME_ASC', + TickerExternalAgentActionsByCallerIdDistinctCountPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_PALLET_NAME_DESC', + TickerExternalAgentActionsByCallerIdDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_ASSET_ID_ASC', + TickerExternalAgentActionsByCallerIdMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_ASSET_ID_DESC', + TickerExternalAgentActionsByCallerIdMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCallerIdMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCallerIdMaxCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_CALLER_ID_ASC', + TickerExternalAgentActionsByCallerIdMaxCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_CALLER_ID_DESC', + TickerExternalAgentActionsByCallerIdMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_CREATED_AT_ASC', + TickerExternalAgentActionsByCallerIdMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_CREATED_AT_DESC', + TickerExternalAgentActionsByCallerIdMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_EVENT_IDX_ASC', + TickerExternalAgentActionsByCallerIdMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_EVENT_IDX_DESC', + TickerExternalAgentActionsByCallerIdMaxEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_EVENT_ID_ASC', + TickerExternalAgentActionsByCallerIdMaxEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_EVENT_ID_DESC', + TickerExternalAgentActionsByCallerIdMaxIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_ID_ASC', + TickerExternalAgentActionsByCallerIdMaxIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_ID_DESC', + TickerExternalAgentActionsByCallerIdMaxPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_PALLET_NAME_ASC', + TickerExternalAgentActionsByCallerIdMaxPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_PALLET_NAME_DESC', + TickerExternalAgentActionsByCallerIdMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdMinAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_ASSET_ID_ASC', + TickerExternalAgentActionsByCallerIdMinAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_ASSET_ID_DESC', + TickerExternalAgentActionsByCallerIdMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCallerIdMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCallerIdMinCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_CALLER_ID_ASC', + TickerExternalAgentActionsByCallerIdMinCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_CALLER_ID_DESC', + TickerExternalAgentActionsByCallerIdMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_CREATED_AT_ASC', + TickerExternalAgentActionsByCallerIdMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_CREATED_AT_DESC', + TickerExternalAgentActionsByCallerIdMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdMinEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_EVENT_IDX_ASC', + TickerExternalAgentActionsByCallerIdMinEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_EVENT_IDX_DESC', + TickerExternalAgentActionsByCallerIdMinEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_EVENT_ID_ASC', + TickerExternalAgentActionsByCallerIdMinEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_EVENT_ID_DESC', + TickerExternalAgentActionsByCallerIdMinIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_ID_ASC', + TickerExternalAgentActionsByCallerIdMinIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_ID_DESC', + TickerExternalAgentActionsByCallerIdMinPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_PALLET_NAME_ASC', + TickerExternalAgentActionsByCallerIdMinPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_PALLET_NAME_DESC', + TickerExternalAgentActionsByCallerIdMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCallerIdStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCallerIdStddevPopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_CALLER_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevPopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_CALLER_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentActionsByCallerIdStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentActionsByCallerIdStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentActionsByCallerIdStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentActionsByCallerIdStddevPopulationEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_EVENT_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevPopulationEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_EVENT_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevPopulationPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_PALLET_NAME_ASC', + TickerExternalAgentActionsByCallerIdStddevPopulationPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_PALLET_NAME_DESC', + TickerExternalAgentActionsByCallerIdStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCallerIdStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCallerIdStddevSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentActionsByCallerIdStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentActionsByCallerIdStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentActionsByCallerIdStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentActionsByCallerIdStddevSampleEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevSampleEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentActionsByCallerIdStddevSamplePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_PALLET_NAME_ASC', + TickerExternalAgentActionsByCallerIdStddevSamplePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_PALLET_NAME_DESC', + TickerExternalAgentActionsByCallerIdStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdSumAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_ASSET_ID_ASC', + TickerExternalAgentActionsByCallerIdSumAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_ASSET_ID_DESC', + TickerExternalAgentActionsByCallerIdSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCallerIdSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCallerIdSumCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_CALLER_ID_ASC', + TickerExternalAgentActionsByCallerIdSumCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_CALLER_ID_DESC', + TickerExternalAgentActionsByCallerIdSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_CREATED_AT_ASC', + TickerExternalAgentActionsByCallerIdSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_CREATED_AT_DESC', + TickerExternalAgentActionsByCallerIdSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdSumEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_EVENT_IDX_ASC', + TickerExternalAgentActionsByCallerIdSumEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_EVENT_IDX_DESC', + TickerExternalAgentActionsByCallerIdSumEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_EVENT_ID_ASC', + TickerExternalAgentActionsByCallerIdSumEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_EVENT_ID_DESC', + TickerExternalAgentActionsByCallerIdSumIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_ID_ASC', + TickerExternalAgentActionsByCallerIdSumIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_ID_DESC', + TickerExternalAgentActionsByCallerIdSumPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_PALLET_NAME_ASC', + TickerExternalAgentActionsByCallerIdSumPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_PALLET_NAME_DESC', + TickerExternalAgentActionsByCallerIdSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentActionsByCallerIdVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentActionsByCallerIdVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCallerIdVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCallerIdVariancePopulationCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_CALLER_ID_ASC', + TickerExternalAgentActionsByCallerIdVariancePopulationCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_CALLER_ID_DESC', + TickerExternalAgentActionsByCallerIdVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentActionsByCallerIdVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentActionsByCallerIdVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentActionsByCallerIdVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentActionsByCallerIdVariancePopulationEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + TickerExternalAgentActionsByCallerIdVariancePopulationEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + TickerExternalAgentActionsByCallerIdVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentActionsByCallerIdVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentActionsByCallerIdVariancePopulationPalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_PALLET_NAME_ASC', + TickerExternalAgentActionsByCallerIdVariancePopulationPalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_PALLET_NAME_DESC', + TickerExternalAgentActionsByCallerIdVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentActionsByCallerIdVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentActionsByCallerIdVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentActionsByCallerIdVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentActionsByCallerIdVarianceSampleCallerIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_CALLER_ID_ASC', + TickerExternalAgentActionsByCallerIdVarianceSampleCallerIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_CALLER_ID_DESC', + TickerExternalAgentActionsByCallerIdVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentActionsByCallerIdVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentActionsByCallerIdVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentActionsByCallerIdVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentActionsByCallerIdVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentActionsByCallerIdVarianceSampleEventIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + TickerExternalAgentActionsByCallerIdVarianceSampleEventIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + TickerExternalAgentActionsByCallerIdVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentActionsByCallerIdVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentActionsByCallerIdVarianceSamplePalletNameAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_PALLET_NAME_ASC', + TickerExternalAgentActionsByCallerIdVarianceSamplePalletNameDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_PALLET_NAME_DESC', + TickerExternalAgentActionsByCallerIdVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentActionsByCallerIdVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_ACTIONS_BY_CALLER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesAverageAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_ASSET_ID_ASC', + TickerExternalAgentHistoriesAverageAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_ASSET_ID_DESC', + TickerExternalAgentHistoriesAverageBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesAverageBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesAverageCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_CREATED_AT_ASC', + TickerExternalAgentHistoriesAverageCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_CREATED_AT_DESC', + TickerExternalAgentHistoriesAverageCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesAverageCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesAverageDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_DATETIME_ASC', + TickerExternalAgentHistoriesAverageDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_DATETIME_DESC', + TickerExternalAgentHistoriesAverageEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesAverageEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesAverageIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesAverageIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesAverageIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_ID_ASC', + TickerExternalAgentHistoriesAverageIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_ID_DESC', + TickerExternalAgentHistoriesAveragePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesAveragePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesAverageTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_TYPE_ASC', + TickerExternalAgentHistoriesAverageTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_TYPE_DESC', + TickerExternalAgentHistoriesAverageUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesAverageUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_AVERAGE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesCountAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_COUNT_ASC', + TickerExternalAgentHistoriesCountDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_COUNT_DESC', + TickerExternalAgentHistoriesDistinctCountAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_ASSET_ID_ASC', + TickerExternalAgentHistoriesDistinctCountAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_ASSET_ID_DESC', + TickerExternalAgentHistoriesDistinctCountBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesDistinctCountBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesDistinctCountCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_CREATED_AT_ASC', + TickerExternalAgentHistoriesDistinctCountCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_CREATED_AT_DESC', + TickerExternalAgentHistoriesDistinctCountCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesDistinctCountCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesDistinctCountDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_DATETIME_ASC', + TickerExternalAgentHistoriesDistinctCountDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_DATETIME_DESC', + TickerExternalAgentHistoriesDistinctCountEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_EVENT_IDX_ASC', + TickerExternalAgentHistoriesDistinctCountEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_EVENT_IDX_DESC', + TickerExternalAgentHistoriesDistinctCountIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesDistinctCountIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesDistinctCountIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_ID_ASC', + TickerExternalAgentHistoriesDistinctCountIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_ID_DESC', + TickerExternalAgentHistoriesDistinctCountPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_PERMISSIONS_ASC', + TickerExternalAgentHistoriesDistinctCountPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_PERMISSIONS_DESC', + TickerExternalAgentHistoriesDistinctCountTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_TYPE_ASC', + TickerExternalAgentHistoriesDistinctCountTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_TYPE_DESC', + TickerExternalAgentHistoriesDistinctCountUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesDistinctCountUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesMaxAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_ASSET_ID_ASC', + TickerExternalAgentHistoriesMaxAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_ASSET_ID_DESC', + TickerExternalAgentHistoriesMaxBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesMaxBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesMaxCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_CREATED_AT_ASC', + TickerExternalAgentHistoriesMaxCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_CREATED_AT_DESC', + TickerExternalAgentHistoriesMaxCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesMaxCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesMaxDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_DATETIME_ASC', + TickerExternalAgentHistoriesMaxDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_DATETIME_DESC', + TickerExternalAgentHistoriesMaxEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_EVENT_IDX_ASC', + TickerExternalAgentHistoriesMaxEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_EVENT_IDX_DESC', + TickerExternalAgentHistoriesMaxIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesMaxIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesMaxIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_ID_ASC', + TickerExternalAgentHistoriesMaxIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_ID_DESC', + TickerExternalAgentHistoriesMaxPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_PERMISSIONS_ASC', + TickerExternalAgentHistoriesMaxPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_PERMISSIONS_DESC', + TickerExternalAgentHistoriesMaxTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_TYPE_ASC', + TickerExternalAgentHistoriesMaxTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_TYPE_DESC', + TickerExternalAgentHistoriesMaxUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesMaxUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MAX_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesMinAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_ASSET_ID_ASC', + TickerExternalAgentHistoriesMinAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_ASSET_ID_DESC', + TickerExternalAgentHistoriesMinBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesMinBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesMinCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_CREATED_AT_ASC', + TickerExternalAgentHistoriesMinCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_CREATED_AT_DESC', + TickerExternalAgentHistoriesMinCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesMinCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesMinDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_DATETIME_ASC', + TickerExternalAgentHistoriesMinDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_DATETIME_DESC', + TickerExternalAgentHistoriesMinEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_EVENT_IDX_ASC', + TickerExternalAgentHistoriesMinEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_EVENT_IDX_DESC', + TickerExternalAgentHistoriesMinIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesMinIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesMinIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_ID_ASC', + TickerExternalAgentHistoriesMinIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_ID_DESC', + TickerExternalAgentHistoriesMinPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_PERMISSIONS_ASC', + TickerExternalAgentHistoriesMinPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_PERMISSIONS_DESC', + TickerExternalAgentHistoriesMinTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_TYPE_ASC', + TickerExternalAgentHistoriesMinTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_TYPE_DESC', + TickerExternalAgentHistoriesMinUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesMinUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_MIN_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesStddevPopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_ASSET_ID_ASC', + TickerExternalAgentHistoriesStddevPopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_ASSET_ID_DESC', + TickerExternalAgentHistoriesStddevPopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesStddevPopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesStddevPopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_CREATED_AT_ASC', + TickerExternalAgentHistoriesStddevPopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_CREATED_AT_DESC', + TickerExternalAgentHistoriesStddevPopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesStddevPopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesStddevPopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_DATETIME_ASC', + TickerExternalAgentHistoriesStddevPopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_DATETIME_DESC', + TickerExternalAgentHistoriesStddevPopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentHistoriesStddevPopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentHistoriesStddevPopulationIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesStddevPopulationIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesStddevPopulationIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_ID_ASC', + TickerExternalAgentHistoriesStddevPopulationIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_ID_DESC', + TickerExternalAgentHistoriesStddevPopulationPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_PERMISSIONS_ASC', + TickerExternalAgentHistoriesStddevPopulationPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_PERMISSIONS_DESC', + TickerExternalAgentHistoriesStddevPopulationTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_TYPE_ASC', + TickerExternalAgentHistoriesStddevPopulationTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_TYPE_DESC', + TickerExternalAgentHistoriesStddevPopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesStddevPopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesStddevSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentHistoriesStddevSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentHistoriesStddevSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesStddevSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesStddevSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentHistoriesStddevSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentHistoriesStddevSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesStddevSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesStddevSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_DATETIME_ASC', + TickerExternalAgentHistoriesStddevSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_DATETIME_DESC', + TickerExternalAgentHistoriesStddevSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesStddevSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesStddevSampleIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesStddevSampleIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesStddevSampleIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_ID_ASC', + TickerExternalAgentHistoriesStddevSampleIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_ID_DESC', + TickerExternalAgentHistoriesStddevSamplePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesStddevSamplePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesStddevSampleTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_TYPE_ASC', + TickerExternalAgentHistoriesStddevSampleTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_TYPE_DESC', + TickerExternalAgentHistoriesStddevSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesStddevSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesSumAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_ASSET_ID_ASC', + TickerExternalAgentHistoriesSumAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_ASSET_ID_DESC', + TickerExternalAgentHistoriesSumBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesSumBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesSumCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_CREATED_AT_ASC', + TickerExternalAgentHistoriesSumCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_CREATED_AT_DESC', + TickerExternalAgentHistoriesSumCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesSumCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesSumDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_DATETIME_ASC', + TickerExternalAgentHistoriesSumDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_DATETIME_DESC', + TickerExternalAgentHistoriesSumEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_EVENT_IDX_ASC', + TickerExternalAgentHistoriesSumEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_EVENT_IDX_DESC', + TickerExternalAgentHistoriesSumIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesSumIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesSumIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_ID_ASC', + TickerExternalAgentHistoriesSumIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_ID_DESC', + TickerExternalAgentHistoriesSumPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_PERMISSIONS_ASC', + TickerExternalAgentHistoriesSumPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_PERMISSIONS_DESC', + TickerExternalAgentHistoriesSumTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_TYPE_ASC', + TickerExternalAgentHistoriesSumTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_TYPE_DESC', + TickerExternalAgentHistoriesSumUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesSumUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_SUM_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesVariancePopulationAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_ASSET_ID_ASC', + TickerExternalAgentHistoriesVariancePopulationAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_ASSET_ID_DESC', + TickerExternalAgentHistoriesVariancePopulationBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesVariancePopulationBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesVariancePopulationCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_CREATED_AT_ASC', + TickerExternalAgentHistoriesVariancePopulationCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_CREATED_AT_DESC', + TickerExternalAgentHistoriesVariancePopulationCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesVariancePopulationCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesVariancePopulationDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_DATETIME_ASC', + TickerExternalAgentHistoriesVariancePopulationDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_DATETIME_DESC', + TickerExternalAgentHistoriesVariancePopulationEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_EVENT_IDX_ASC', + TickerExternalAgentHistoriesVariancePopulationEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_EVENT_IDX_DESC', + TickerExternalAgentHistoriesVariancePopulationIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesVariancePopulationIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesVariancePopulationIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_ID_ASC', + TickerExternalAgentHistoriesVariancePopulationIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_ID_DESC', + TickerExternalAgentHistoriesVariancePopulationPermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_PERMISSIONS_ASC', + TickerExternalAgentHistoriesVariancePopulationPermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_PERMISSIONS_DESC', + TickerExternalAgentHistoriesVariancePopulationTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_TYPE_ASC', + TickerExternalAgentHistoriesVariancePopulationTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_TYPE_DESC', + TickerExternalAgentHistoriesVariancePopulationUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesVariancePopulationUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesVarianceSampleAssetIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_ASSET_ID_ASC', + TickerExternalAgentHistoriesVarianceSampleAssetIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_ASSET_ID_DESC', + TickerExternalAgentHistoriesVarianceSampleBlockRangeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TickerExternalAgentHistoriesVarianceSampleBlockRangeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TickerExternalAgentHistoriesVarianceSampleCreatedAtAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_CREATED_AT_ASC', + TickerExternalAgentHistoriesVarianceSampleCreatedAtDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_CREATED_AT_DESC', + TickerExternalAgentHistoriesVarianceSampleCreatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesVarianceSampleCreatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TickerExternalAgentHistoriesVarianceSampleDatetimeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_DATETIME_ASC', + TickerExternalAgentHistoriesVarianceSampleDatetimeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_DATETIME_DESC', + TickerExternalAgentHistoriesVarianceSampleEventIdxAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_EVENT_IDX_ASC', + TickerExternalAgentHistoriesVarianceSampleEventIdxDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_EVENT_IDX_DESC', + TickerExternalAgentHistoriesVarianceSampleIdentityIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + TickerExternalAgentHistoriesVarianceSampleIdentityIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + TickerExternalAgentHistoriesVarianceSampleIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_ID_ASC', + TickerExternalAgentHistoriesVarianceSampleIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_ID_DESC', + TickerExternalAgentHistoriesVarianceSamplePermissionsAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_PERMISSIONS_ASC', + TickerExternalAgentHistoriesVarianceSamplePermissionsDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_PERMISSIONS_DESC', + TickerExternalAgentHistoriesVarianceSampleTypeAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_TYPE_ASC', + TickerExternalAgentHistoriesVarianceSampleTypeDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_TYPE_DESC', + TickerExternalAgentHistoriesVarianceSampleUpdatedBlockIdAsc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TickerExternalAgentHistoriesVarianceSampleUpdatedBlockIdDesc = 'TICKER_EXTERNAL_AGENT_HISTORIES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdAverageAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_ASSET_ID_ASC', + TransferCompliancesByClaimIssuerIdAverageAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_ASSET_ID_DESC', + TransferCompliancesByClaimIssuerIdAverageBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_BLOCK_RANGE_ASC', + TransferCompliancesByClaimIssuerIdAverageBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_BLOCK_RANGE_DESC', + TransferCompliancesByClaimIssuerIdAverageClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByClaimIssuerIdAverageClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByClaimIssuerIdAverageClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_CLAIM_TYPE_ASC', + TransferCompliancesByClaimIssuerIdAverageClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_CLAIM_TYPE_DESC', + TransferCompliancesByClaimIssuerIdAverageClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_CLAIM_VALUE_ASC', + TransferCompliancesByClaimIssuerIdAverageClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_CLAIM_VALUE_DESC', + TransferCompliancesByClaimIssuerIdAverageCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_CREATED_AT_ASC', + TransferCompliancesByClaimIssuerIdAverageCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_CREATED_AT_DESC', + TransferCompliancesByClaimIssuerIdAverageCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdAverageCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdAverageIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_ID_ASC', + TransferCompliancesByClaimIssuerIdAverageIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_ID_DESC', + TransferCompliancesByClaimIssuerIdAverageMaxAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_MAX_ASC', + TransferCompliancesByClaimIssuerIdAverageMaxDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_MAX_DESC', + TransferCompliancesByClaimIssuerIdAverageMinAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_MIN_ASC', + TransferCompliancesByClaimIssuerIdAverageMinDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_MIN_DESC', + TransferCompliancesByClaimIssuerIdAverageStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_STAT_TYPE_ID_ASC', + TransferCompliancesByClaimIssuerIdAverageStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_STAT_TYPE_ID_DESC', + TransferCompliancesByClaimIssuerIdAverageTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_TYPE_ASC', + TransferCompliancesByClaimIssuerIdAverageTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_TYPE_DESC', + TransferCompliancesByClaimIssuerIdAverageUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdAverageUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdAverageValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_VALUE_ASC', + TransferCompliancesByClaimIssuerIdAverageValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_AVERAGE_VALUE_DESC', + TransferCompliancesByClaimIssuerIdCountAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_COUNT_ASC', + TransferCompliancesByClaimIssuerIdCountDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_COUNT_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_ASSET_ID_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_ASSET_ID_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CLAIM_TYPE_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CLAIM_TYPE_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CLAIM_VALUE_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CLAIM_VALUE_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CREATED_AT_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CREATED_AT_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_ID_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_ID_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountMaxAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_MAX_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountMaxDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_MAX_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountMinAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_MIN_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountMinDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_MIN_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_STAT_TYPE_ID_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_STAT_TYPE_ID_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_TYPE_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_TYPE_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdDistinctCountValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_VALUE_ASC', + TransferCompliancesByClaimIssuerIdDistinctCountValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_DISTINCT_COUNT_VALUE_DESC', + TransferCompliancesByClaimIssuerIdMaxAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_ASSET_ID_ASC', + TransferCompliancesByClaimIssuerIdMaxAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_ASSET_ID_DESC', + TransferCompliancesByClaimIssuerIdMaxBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_BLOCK_RANGE_ASC', + TransferCompliancesByClaimIssuerIdMaxBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_BLOCK_RANGE_DESC', + TransferCompliancesByClaimIssuerIdMaxClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByClaimIssuerIdMaxClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByClaimIssuerIdMaxClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_CLAIM_TYPE_ASC', + TransferCompliancesByClaimIssuerIdMaxClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_CLAIM_TYPE_DESC', + TransferCompliancesByClaimIssuerIdMaxClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_CLAIM_VALUE_ASC', + TransferCompliancesByClaimIssuerIdMaxClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_CLAIM_VALUE_DESC', + TransferCompliancesByClaimIssuerIdMaxCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_CREATED_AT_ASC', + TransferCompliancesByClaimIssuerIdMaxCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_CREATED_AT_DESC', + TransferCompliancesByClaimIssuerIdMaxCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_CREATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdMaxCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_CREATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdMaxIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_ID_ASC', + TransferCompliancesByClaimIssuerIdMaxIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_ID_DESC', + TransferCompliancesByClaimIssuerIdMaxMaxAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_MAX_ASC', + TransferCompliancesByClaimIssuerIdMaxMaxDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_MAX_DESC', + TransferCompliancesByClaimIssuerIdMaxMinAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_MIN_ASC', + TransferCompliancesByClaimIssuerIdMaxMinDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_MIN_DESC', + TransferCompliancesByClaimIssuerIdMaxStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_STAT_TYPE_ID_ASC', + TransferCompliancesByClaimIssuerIdMaxStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_STAT_TYPE_ID_DESC', + TransferCompliancesByClaimIssuerIdMaxTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_TYPE_ASC', + TransferCompliancesByClaimIssuerIdMaxTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_TYPE_DESC', + TransferCompliancesByClaimIssuerIdMaxUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdMaxUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdMaxValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_VALUE_ASC', + TransferCompliancesByClaimIssuerIdMaxValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MAX_VALUE_DESC', + TransferCompliancesByClaimIssuerIdMinAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_ASSET_ID_ASC', + TransferCompliancesByClaimIssuerIdMinAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_ASSET_ID_DESC', + TransferCompliancesByClaimIssuerIdMinBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_BLOCK_RANGE_ASC', + TransferCompliancesByClaimIssuerIdMinBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_BLOCK_RANGE_DESC', + TransferCompliancesByClaimIssuerIdMinClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByClaimIssuerIdMinClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByClaimIssuerIdMinClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_CLAIM_TYPE_ASC', + TransferCompliancesByClaimIssuerIdMinClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_CLAIM_TYPE_DESC', + TransferCompliancesByClaimIssuerIdMinClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_CLAIM_VALUE_ASC', + TransferCompliancesByClaimIssuerIdMinClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_CLAIM_VALUE_DESC', + TransferCompliancesByClaimIssuerIdMinCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_CREATED_AT_ASC', + TransferCompliancesByClaimIssuerIdMinCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_CREATED_AT_DESC', + TransferCompliancesByClaimIssuerIdMinCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_CREATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdMinCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_CREATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdMinIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_ID_ASC', + TransferCompliancesByClaimIssuerIdMinIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_ID_DESC', + TransferCompliancesByClaimIssuerIdMinMaxAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_MAX_ASC', + TransferCompliancesByClaimIssuerIdMinMaxDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_MAX_DESC', + TransferCompliancesByClaimIssuerIdMinMinAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_MIN_ASC', + TransferCompliancesByClaimIssuerIdMinMinDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_MIN_DESC', + TransferCompliancesByClaimIssuerIdMinStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_STAT_TYPE_ID_ASC', + TransferCompliancesByClaimIssuerIdMinStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_STAT_TYPE_ID_DESC', + TransferCompliancesByClaimIssuerIdMinTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_TYPE_ASC', + TransferCompliancesByClaimIssuerIdMinTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_TYPE_DESC', + TransferCompliancesByClaimIssuerIdMinUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdMinUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdMinValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_VALUE_ASC', + TransferCompliancesByClaimIssuerIdMinValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_MIN_VALUE_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_ASSET_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_ASSET_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CLAIM_TYPE_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CLAIM_TYPE_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CLAIM_VALUE_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CLAIM_VALUE_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CREATED_AT_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CREATED_AT_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationMaxAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_MAX_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationMaxDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_MAX_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationMinAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_MIN_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationMinDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_MIN_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_STAT_TYPE_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_STAT_TYPE_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_TYPE_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_TYPE_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevPopulationValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_VALUE_ASC', + TransferCompliancesByClaimIssuerIdStddevPopulationValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_POPULATION_VALUE_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CLAIM_VALUE_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CLAIM_VALUE_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleMaxAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_MAX_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleMaxDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_MAX_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleMinAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_MIN_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleMinDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_MIN_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_STAT_TYPE_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_STAT_TYPE_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_TYPE_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_TYPE_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdStddevSampleValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_VALUE_ASC', + TransferCompliancesByClaimIssuerIdStddevSampleValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_STDDEV_SAMPLE_VALUE_DESC', + TransferCompliancesByClaimIssuerIdSumAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_ASSET_ID_ASC', + TransferCompliancesByClaimIssuerIdSumAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_ASSET_ID_DESC', + TransferCompliancesByClaimIssuerIdSumBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_BLOCK_RANGE_ASC', + TransferCompliancesByClaimIssuerIdSumBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_BLOCK_RANGE_DESC', + TransferCompliancesByClaimIssuerIdSumClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByClaimIssuerIdSumClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByClaimIssuerIdSumClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_CLAIM_TYPE_ASC', + TransferCompliancesByClaimIssuerIdSumClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_CLAIM_TYPE_DESC', + TransferCompliancesByClaimIssuerIdSumClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_CLAIM_VALUE_ASC', + TransferCompliancesByClaimIssuerIdSumClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_CLAIM_VALUE_DESC', + TransferCompliancesByClaimIssuerIdSumCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_CREATED_AT_ASC', + TransferCompliancesByClaimIssuerIdSumCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_CREATED_AT_DESC', + TransferCompliancesByClaimIssuerIdSumCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_CREATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdSumCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_CREATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdSumIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_ID_ASC', + TransferCompliancesByClaimIssuerIdSumIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_ID_DESC', + TransferCompliancesByClaimIssuerIdSumMaxAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_MAX_ASC', + TransferCompliancesByClaimIssuerIdSumMaxDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_MAX_DESC', + TransferCompliancesByClaimIssuerIdSumMinAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_MIN_ASC', + TransferCompliancesByClaimIssuerIdSumMinDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_MIN_DESC', + TransferCompliancesByClaimIssuerIdSumStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_STAT_TYPE_ID_ASC', + TransferCompliancesByClaimIssuerIdSumStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_STAT_TYPE_ID_DESC', + TransferCompliancesByClaimIssuerIdSumTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_TYPE_ASC', + TransferCompliancesByClaimIssuerIdSumTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_TYPE_DESC', + TransferCompliancesByClaimIssuerIdSumUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdSumUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdSumValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_VALUE_ASC', + TransferCompliancesByClaimIssuerIdSumValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_SUM_VALUE_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CLAIM_VALUE_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CLAIM_VALUE_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_ID_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_ID_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationMaxAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_MAX_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationMaxDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_MAX_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationMinAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_MIN_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationMinDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_MIN_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_STAT_TYPE_ID_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_STAT_TYPE_ID_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_TYPE_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_TYPE_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdVariancePopulationValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_VALUE_ASC', + TransferCompliancesByClaimIssuerIdVariancePopulationValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_POPULATION_VALUE_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleAssetIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleAssetIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleBlockRangeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleBlockRangeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleClaimTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleClaimTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleClaimValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CLAIM_VALUE_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleClaimValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CLAIM_VALUE_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleCreatedAtAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleCreatedAtDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_ID_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_ID_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleMaxAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_MAX_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleMaxDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_MAX_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleMinAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_MIN_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleMinDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_MIN_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleStatTypeIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_STAT_TYPE_ID_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleStatTypeIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_STAT_TYPE_ID_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleTypeAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_TYPE_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleTypeDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_TYPE_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesByClaimIssuerIdVarianceSampleValueAsc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_VALUE_ASC', + TransferCompliancesByClaimIssuerIdVarianceSampleValueDesc = 'TRANSFER_COMPLIANCES_BY_CLAIM_ISSUER_ID_VARIANCE_SAMPLE_VALUE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + VenuesByOwnerIdAverageBlockRangeAsc = 'VENUES_BY_OWNER_ID_AVERAGE_BLOCK_RANGE_ASC', + VenuesByOwnerIdAverageBlockRangeDesc = 'VENUES_BY_OWNER_ID_AVERAGE_BLOCK_RANGE_DESC', + VenuesByOwnerIdAverageCreatedAtAsc = 'VENUES_BY_OWNER_ID_AVERAGE_CREATED_AT_ASC', + VenuesByOwnerIdAverageCreatedAtDesc = 'VENUES_BY_OWNER_ID_AVERAGE_CREATED_AT_DESC', + VenuesByOwnerIdAverageCreatedBlockIdAsc = 'VENUES_BY_OWNER_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + VenuesByOwnerIdAverageCreatedBlockIdDesc = 'VENUES_BY_OWNER_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + VenuesByOwnerIdAverageDetailsAsc = 'VENUES_BY_OWNER_ID_AVERAGE_DETAILS_ASC', + VenuesByOwnerIdAverageDetailsDesc = 'VENUES_BY_OWNER_ID_AVERAGE_DETAILS_DESC', + VenuesByOwnerIdAverageIdAsc = 'VENUES_BY_OWNER_ID_AVERAGE_ID_ASC', + VenuesByOwnerIdAverageIdDesc = 'VENUES_BY_OWNER_ID_AVERAGE_ID_DESC', + VenuesByOwnerIdAverageOwnerIdAsc = 'VENUES_BY_OWNER_ID_AVERAGE_OWNER_ID_ASC', + VenuesByOwnerIdAverageOwnerIdDesc = 'VENUES_BY_OWNER_ID_AVERAGE_OWNER_ID_DESC', + VenuesByOwnerIdAverageSignersAsc = 'VENUES_BY_OWNER_ID_AVERAGE_SIGNERS_ASC', + VenuesByOwnerIdAverageSignersDesc = 'VENUES_BY_OWNER_ID_AVERAGE_SIGNERS_DESC', + VenuesByOwnerIdAverageTypeAsc = 'VENUES_BY_OWNER_ID_AVERAGE_TYPE_ASC', + VenuesByOwnerIdAverageTypeDesc = 'VENUES_BY_OWNER_ID_AVERAGE_TYPE_DESC', + VenuesByOwnerIdAverageUpdatedBlockIdAsc = 'VENUES_BY_OWNER_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + VenuesByOwnerIdAverageUpdatedBlockIdDesc = 'VENUES_BY_OWNER_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + VenuesByOwnerIdCountAsc = 'VENUES_BY_OWNER_ID_COUNT_ASC', + VenuesByOwnerIdCountDesc = 'VENUES_BY_OWNER_ID_COUNT_DESC', + VenuesByOwnerIdDistinctCountBlockRangeAsc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + VenuesByOwnerIdDistinctCountBlockRangeDesc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + VenuesByOwnerIdDistinctCountCreatedAtAsc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_CREATED_AT_ASC', + VenuesByOwnerIdDistinctCountCreatedAtDesc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_CREATED_AT_DESC', + VenuesByOwnerIdDistinctCountCreatedBlockIdAsc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + VenuesByOwnerIdDistinctCountCreatedBlockIdDesc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + VenuesByOwnerIdDistinctCountDetailsAsc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_DETAILS_ASC', + VenuesByOwnerIdDistinctCountDetailsDesc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_DETAILS_DESC', + VenuesByOwnerIdDistinctCountIdAsc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_ID_ASC', + VenuesByOwnerIdDistinctCountIdDesc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_ID_DESC', + VenuesByOwnerIdDistinctCountOwnerIdAsc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_OWNER_ID_ASC', + VenuesByOwnerIdDistinctCountOwnerIdDesc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_OWNER_ID_DESC', + VenuesByOwnerIdDistinctCountSignersAsc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_SIGNERS_ASC', + VenuesByOwnerIdDistinctCountSignersDesc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_SIGNERS_DESC', + VenuesByOwnerIdDistinctCountTypeAsc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_TYPE_ASC', + VenuesByOwnerIdDistinctCountTypeDesc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_TYPE_DESC', + VenuesByOwnerIdDistinctCountUpdatedBlockIdAsc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + VenuesByOwnerIdDistinctCountUpdatedBlockIdDesc = 'VENUES_BY_OWNER_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + VenuesByOwnerIdMaxBlockRangeAsc = 'VENUES_BY_OWNER_ID_MAX_BLOCK_RANGE_ASC', + VenuesByOwnerIdMaxBlockRangeDesc = 'VENUES_BY_OWNER_ID_MAX_BLOCK_RANGE_DESC', + VenuesByOwnerIdMaxCreatedAtAsc = 'VENUES_BY_OWNER_ID_MAX_CREATED_AT_ASC', + VenuesByOwnerIdMaxCreatedAtDesc = 'VENUES_BY_OWNER_ID_MAX_CREATED_AT_DESC', + VenuesByOwnerIdMaxCreatedBlockIdAsc = 'VENUES_BY_OWNER_ID_MAX_CREATED_BLOCK_ID_ASC', + VenuesByOwnerIdMaxCreatedBlockIdDesc = 'VENUES_BY_OWNER_ID_MAX_CREATED_BLOCK_ID_DESC', + VenuesByOwnerIdMaxDetailsAsc = 'VENUES_BY_OWNER_ID_MAX_DETAILS_ASC', + VenuesByOwnerIdMaxDetailsDesc = 'VENUES_BY_OWNER_ID_MAX_DETAILS_DESC', + VenuesByOwnerIdMaxIdAsc = 'VENUES_BY_OWNER_ID_MAX_ID_ASC', + VenuesByOwnerIdMaxIdDesc = 'VENUES_BY_OWNER_ID_MAX_ID_DESC', + VenuesByOwnerIdMaxOwnerIdAsc = 'VENUES_BY_OWNER_ID_MAX_OWNER_ID_ASC', + VenuesByOwnerIdMaxOwnerIdDesc = 'VENUES_BY_OWNER_ID_MAX_OWNER_ID_DESC', + VenuesByOwnerIdMaxSignersAsc = 'VENUES_BY_OWNER_ID_MAX_SIGNERS_ASC', + VenuesByOwnerIdMaxSignersDesc = 'VENUES_BY_OWNER_ID_MAX_SIGNERS_DESC', + VenuesByOwnerIdMaxTypeAsc = 'VENUES_BY_OWNER_ID_MAX_TYPE_ASC', + VenuesByOwnerIdMaxTypeDesc = 'VENUES_BY_OWNER_ID_MAX_TYPE_DESC', + VenuesByOwnerIdMaxUpdatedBlockIdAsc = 'VENUES_BY_OWNER_ID_MAX_UPDATED_BLOCK_ID_ASC', + VenuesByOwnerIdMaxUpdatedBlockIdDesc = 'VENUES_BY_OWNER_ID_MAX_UPDATED_BLOCK_ID_DESC', + VenuesByOwnerIdMinBlockRangeAsc = 'VENUES_BY_OWNER_ID_MIN_BLOCK_RANGE_ASC', + VenuesByOwnerIdMinBlockRangeDesc = 'VENUES_BY_OWNER_ID_MIN_BLOCK_RANGE_DESC', + VenuesByOwnerIdMinCreatedAtAsc = 'VENUES_BY_OWNER_ID_MIN_CREATED_AT_ASC', + VenuesByOwnerIdMinCreatedAtDesc = 'VENUES_BY_OWNER_ID_MIN_CREATED_AT_DESC', + VenuesByOwnerIdMinCreatedBlockIdAsc = 'VENUES_BY_OWNER_ID_MIN_CREATED_BLOCK_ID_ASC', + VenuesByOwnerIdMinCreatedBlockIdDesc = 'VENUES_BY_OWNER_ID_MIN_CREATED_BLOCK_ID_DESC', + VenuesByOwnerIdMinDetailsAsc = 'VENUES_BY_OWNER_ID_MIN_DETAILS_ASC', + VenuesByOwnerIdMinDetailsDesc = 'VENUES_BY_OWNER_ID_MIN_DETAILS_DESC', + VenuesByOwnerIdMinIdAsc = 'VENUES_BY_OWNER_ID_MIN_ID_ASC', + VenuesByOwnerIdMinIdDesc = 'VENUES_BY_OWNER_ID_MIN_ID_DESC', + VenuesByOwnerIdMinOwnerIdAsc = 'VENUES_BY_OWNER_ID_MIN_OWNER_ID_ASC', + VenuesByOwnerIdMinOwnerIdDesc = 'VENUES_BY_OWNER_ID_MIN_OWNER_ID_DESC', + VenuesByOwnerIdMinSignersAsc = 'VENUES_BY_OWNER_ID_MIN_SIGNERS_ASC', + VenuesByOwnerIdMinSignersDesc = 'VENUES_BY_OWNER_ID_MIN_SIGNERS_DESC', + VenuesByOwnerIdMinTypeAsc = 'VENUES_BY_OWNER_ID_MIN_TYPE_ASC', + VenuesByOwnerIdMinTypeDesc = 'VENUES_BY_OWNER_ID_MIN_TYPE_DESC', + VenuesByOwnerIdMinUpdatedBlockIdAsc = 'VENUES_BY_OWNER_ID_MIN_UPDATED_BLOCK_ID_ASC', + VenuesByOwnerIdMinUpdatedBlockIdDesc = 'VENUES_BY_OWNER_ID_MIN_UPDATED_BLOCK_ID_DESC', + VenuesByOwnerIdStddevPopulationBlockRangeAsc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + VenuesByOwnerIdStddevPopulationBlockRangeDesc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + VenuesByOwnerIdStddevPopulationCreatedAtAsc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_CREATED_AT_ASC', + VenuesByOwnerIdStddevPopulationCreatedAtDesc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_CREATED_AT_DESC', + VenuesByOwnerIdStddevPopulationCreatedBlockIdAsc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + VenuesByOwnerIdStddevPopulationCreatedBlockIdDesc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + VenuesByOwnerIdStddevPopulationDetailsAsc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_DETAILS_ASC', + VenuesByOwnerIdStddevPopulationDetailsDesc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_DETAILS_DESC', + VenuesByOwnerIdStddevPopulationIdAsc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_ID_ASC', + VenuesByOwnerIdStddevPopulationIdDesc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_ID_DESC', + VenuesByOwnerIdStddevPopulationOwnerIdAsc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_OWNER_ID_ASC', + VenuesByOwnerIdStddevPopulationOwnerIdDesc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_OWNER_ID_DESC', + VenuesByOwnerIdStddevPopulationSignersAsc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_SIGNERS_ASC', + VenuesByOwnerIdStddevPopulationSignersDesc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_SIGNERS_DESC', + VenuesByOwnerIdStddevPopulationTypeAsc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_TYPE_ASC', + VenuesByOwnerIdStddevPopulationTypeDesc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_TYPE_DESC', + VenuesByOwnerIdStddevPopulationUpdatedBlockIdAsc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + VenuesByOwnerIdStddevPopulationUpdatedBlockIdDesc = 'VENUES_BY_OWNER_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + VenuesByOwnerIdStddevSampleBlockRangeAsc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + VenuesByOwnerIdStddevSampleBlockRangeDesc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + VenuesByOwnerIdStddevSampleCreatedAtAsc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + VenuesByOwnerIdStddevSampleCreatedAtDesc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + VenuesByOwnerIdStddevSampleCreatedBlockIdAsc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + VenuesByOwnerIdStddevSampleCreatedBlockIdDesc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + VenuesByOwnerIdStddevSampleDetailsAsc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_DETAILS_ASC', + VenuesByOwnerIdStddevSampleDetailsDesc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_DETAILS_DESC', + VenuesByOwnerIdStddevSampleIdAsc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_ID_ASC', + VenuesByOwnerIdStddevSampleIdDesc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_ID_DESC', + VenuesByOwnerIdStddevSampleOwnerIdAsc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_OWNER_ID_ASC', + VenuesByOwnerIdStddevSampleOwnerIdDesc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_OWNER_ID_DESC', + VenuesByOwnerIdStddevSampleSignersAsc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_SIGNERS_ASC', + VenuesByOwnerIdStddevSampleSignersDesc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_SIGNERS_DESC', + VenuesByOwnerIdStddevSampleTypeAsc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_TYPE_ASC', + VenuesByOwnerIdStddevSampleTypeDesc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_TYPE_DESC', + VenuesByOwnerIdStddevSampleUpdatedBlockIdAsc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + VenuesByOwnerIdStddevSampleUpdatedBlockIdDesc = 'VENUES_BY_OWNER_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + VenuesByOwnerIdSumBlockRangeAsc = 'VENUES_BY_OWNER_ID_SUM_BLOCK_RANGE_ASC', + VenuesByOwnerIdSumBlockRangeDesc = 'VENUES_BY_OWNER_ID_SUM_BLOCK_RANGE_DESC', + VenuesByOwnerIdSumCreatedAtAsc = 'VENUES_BY_OWNER_ID_SUM_CREATED_AT_ASC', + VenuesByOwnerIdSumCreatedAtDesc = 'VENUES_BY_OWNER_ID_SUM_CREATED_AT_DESC', + VenuesByOwnerIdSumCreatedBlockIdAsc = 'VENUES_BY_OWNER_ID_SUM_CREATED_BLOCK_ID_ASC', + VenuesByOwnerIdSumCreatedBlockIdDesc = 'VENUES_BY_OWNER_ID_SUM_CREATED_BLOCK_ID_DESC', + VenuesByOwnerIdSumDetailsAsc = 'VENUES_BY_OWNER_ID_SUM_DETAILS_ASC', + VenuesByOwnerIdSumDetailsDesc = 'VENUES_BY_OWNER_ID_SUM_DETAILS_DESC', + VenuesByOwnerIdSumIdAsc = 'VENUES_BY_OWNER_ID_SUM_ID_ASC', + VenuesByOwnerIdSumIdDesc = 'VENUES_BY_OWNER_ID_SUM_ID_DESC', + VenuesByOwnerIdSumOwnerIdAsc = 'VENUES_BY_OWNER_ID_SUM_OWNER_ID_ASC', + VenuesByOwnerIdSumOwnerIdDesc = 'VENUES_BY_OWNER_ID_SUM_OWNER_ID_DESC', + VenuesByOwnerIdSumSignersAsc = 'VENUES_BY_OWNER_ID_SUM_SIGNERS_ASC', + VenuesByOwnerIdSumSignersDesc = 'VENUES_BY_OWNER_ID_SUM_SIGNERS_DESC', + VenuesByOwnerIdSumTypeAsc = 'VENUES_BY_OWNER_ID_SUM_TYPE_ASC', + VenuesByOwnerIdSumTypeDesc = 'VENUES_BY_OWNER_ID_SUM_TYPE_DESC', + VenuesByOwnerIdSumUpdatedBlockIdAsc = 'VENUES_BY_OWNER_ID_SUM_UPDATED_BLOCK_ID_ASC', + VenuesByOwnerIdSumUpdatedBlockIdDesc = 'VENUES_BY_OWNER_ID_SUM_UPDATED_BLOCK_ID_DESC', + VenuesByOwnerIdVariancePopulationBlockRangeAsc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + VenuesByOwnerIdVariancePopulationBlockRangeDesc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + VenuesByOwnerIdVariancePopulationCreatedAtAsc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + VenuesByOwnerIdVariancePopulationCreatedAtDesc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + VenuesByOwnerIdVariancePopulationCreatedBlockIdAsc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + VenuesByOwnerIdVariancePopulationCreatedBlockIdDesc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + VenuesByOwnerIdVariancePopulationDetailsAsc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_DETAILS_ASC', + VenuesByOwnerIdVariancePopulationDetailsDesc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_DETAILS_DESC', + VenuesByOwnerIdVariancePopulationIdAsc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_ID_ASC', + VenuesByOwnerIdVariancePopulationIdDesc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_ID_DESC', + VenuesByOwnerIdVariancePopulationOwnerIdAsc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_OWNER_ID_ASC', + VenuesByOwnerIdVariancePopulationOwnerIdDesc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_OWNER_ID_DESC', + VenuesByOwnerIdVariancePopulationSignersAsc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_SIGNERS_ASC', + VenuesByOwnerIdVariancePopulationSignersDesc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_SIGNERS_DESC', + VenuesByOwnerIdVariancePopulationTypeAsc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_TYPE_ASC', + VenuesByOwnerIdVariancePopulationTypeDesc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_TYPE_DESC', + VenuesByOwnerIdVariancePopulationUpdatedBlockIdAsc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + VenuesByOwnerIdVariancePopulationUpdatedBlockIdDesc = 'VENUES_BY_OWNER_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + VenuesByOwnerIdVarianceSampleBlockRangeAsc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + VenuesByOwnerIdVarianceSampleBlockRangeDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + VenuesByOwnerIdVarianceSampleCreatedAtAsc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + VenuesByOwnerIdVarianceSampleCreatedAtDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + VenuesByOwnerIdVarianceSampleCreatedBlockIdAsc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + VenuesByOwnerIdVarianceSampleCreatedBlockIdDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + VenuesByOwnerIdVarianceSampleDetailsAsc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_DETAILS_ASC', + VenuesByOwnerIdVarianceSampleDetailsDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_DETAILS_DESC', + VenuesByOwnerIdVarianceSampleIdAsc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_ID_ASC', + VenuesByOwnerIdVarianceSampleIdDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_ID_DESC', + VenuesByOwnerIdVarianceSampleOwnerIdAsc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_OWNER_ID_ASC', + VenuesByOwnerIdVarianceSampleOwnerIdDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_OWNER_ID_DESC', + VenuesByOwnerIdVarianceSampleSignersAsc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_SIGNERS_ASC', + VenuesByOwnerIdVarianceSampleSignersDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_SIGNERS_DESC', + VenuesByOwnerIdVarianceSampleTypeAsc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_TYPE_ASC', + VenuesByOwnerIdVarianceSampleTypeDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_TYPE_DESC', + VenuesByOwnerIdVarianceSampleUpdatedBlockIdAsc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + VenuesByOwnerIdVarianceSampleUpdatedBlockIdDesc = 'VENUES_BY_OWNER_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', +} + +export type Identity = Node & { + __typename?: 'Identity'; + /** Reads and enables pagination through a set of `Account`. */ + accountsByMultiSigCreatorIdAndCreatorAccountId: IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyConnection; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByAddedById: AssetMandatoryMediatorsConnection; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovals: AssetPreApprovalsConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetHolderIdentityIdAndAssetId: IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetMandatoryMediatorAddedByIdAndAssetId: IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetPreApprovalIdentityIdAndAssetId: IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByDistributionIdentityIdAndAssetId: IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByNftHolderIdentityIdAndAssetId: IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByOwnerId: AssetsConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByStatTypeClaimIssuerIdAndAssetId: IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByStoCreatorIdAndOfferingAssetId: IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTickerExternalAgentActionCallerIdAndAssetId: IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTickerExternalAgentCallerIdAndAssetId: IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTickerExternalAgentHistoryIdentityIdAndAssetId: IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTransferComplianceClaimIssuerIdAndAssetId: IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Authorization`. */ + authorizationsByFromId: AuthorizationsConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAccountIdentityIdAndCreatedBlockId: IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAccountIdentityIdAndUpdatedBlockId: IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetHolderIdentityIdAndCreatedBlockId: IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetHolderIdentityIdAndUpdatedBlockId: IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockId: IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockId: IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetOwnerIdAndCreatedBlockId: IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetOwnerIdAndUpdatedBlockId: IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetPreApprovalIdentityIdAndCreatedBlockId: IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetPreApprovalIdentityIdAndUpdatedBlockId: IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAuthorizationFromIdAndCreatedBlockId: IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAuthorizationFromIdAndUpdatedBlockId: IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByBridgeEventIdentityIdAndCreatedBlockId: IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByBridgeEventIdentityIdAndUpdatedBlockId: IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByChildIdentityChildIdAndCreatedBlockId: IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByChildIdentityChildIdAndUpdatedBlockId: IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByChildIdentityParentIdAndCreatedBlockId: IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByChildIdentityParentIdAndUpdatedBlockId: IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimIssuerIdAndCreatedBlockId: IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimIssuerIdAndUpdatedBlockId: IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimTargetIdAndCreatedBlockId: IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByClaimTargetIdAndUpdatedBlockId: IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAccountCreatorIdAndCreatedBlockId: IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAccountCreatorIdAndUpdatedBlockId: IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetCreatorIdAndCreatedBlockId: IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialAssetCreatorIdAndUpdatedBlockId: IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockId: IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockId: IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialVenueCreatorIdAndCreatedBlockId: IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByConfidentialVenueCreatorIdAndUpdatedBlockId: IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByCustomClaimTypeIdentityIdAndCreatedBlockId: IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByCustomClaimTypeIdentityIdAndUpdatedBlockId: IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionIdentityIdAndCreatedBlockId: IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionIdentityIdAndUpdatedBlockId: IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionPaymentTargetIdAndCreatedBlockId: IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionPaymentTargetIdAndUpdatedBlockId: IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInvestmentInvestorIdAndCreatedBlockId: IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInvestmentInvestorIdAndUpdatedBlockId: IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigCreatorIdAndCreatedBlockId: IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigCreatorIdAndUpdatedBlockId: IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalCreatorIdAndCreatedBlockId: IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalCreatorIdAndUpdatedBlockId: IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByNftHolderIdentityIdAndCreatedBlockId: IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByNftHolderIdentityIdAndUpdatedBlockId: IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioCustodianIdAndCreatedBlockId: IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioCustodianIdAndUpdatedBlockId: IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioIdentityIdAndCreatedBlockId: IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioIdentityIdAndUpdatedBlockId: IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByProposalOwnerIdAndCreatedBlockId: IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByProposalOwnerIdAndUpdatedBlockId: IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStakingEventIdentityIdAndCreatedBlockId: IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStakingEventIdentityIdAndUpdatedBlockId: IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStatTypeClaimIssuerIdAndCreatedBlockId: IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStatTypeClaimIssuerIdAndUpdatedBlockId: IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoCreatorIdAndCreatedBlockId: IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoCreatorIdAndUpdatedBlockId: IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentActionCallerIdAndCreatedBlockId: IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentActionCallerIdAndUpdatedBlockId: IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentCallerIdAndCreatedBlockId: IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentCallerIdAndUpdatedBlockId: IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockId: IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockId: IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceClaimIssuerIdAndCreatedBlockId: IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceClaimIssuerIdAndUpdatedBlockId: IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByVenueOwnerIdAndCreatedBlockId: IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByVenueOwnerIdAndUpdatedBlockId: IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `BridgeEvent`. */ + bridgeEvents: BridgeEventsConnection; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + children: ChildIdentitiesConnection; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByIssuerId: ClaimsConnection; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByTargetId: ClaimsConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountId: IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByCreatorId: ConfidentialAccountsConnection; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByCreatorId: ConfidentialAssetsConnection; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmations: ConfidentialTransactionAffirmationsConnection; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionId: IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyConnection; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenuesByCreatorId: ConfidentialVenuesConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Identity`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypes: CustomClaimTypesConnection; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByClaimIssuerIdAndCustomClaimTypeId: IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByClaimTargetIdAndCustomClaimTypeId: IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyConnection; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeId: IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection; + datetime: Scalars['Datetime']['output']; + did: Scalars['String']['output']; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByTargetId: DistributionPaymentsConnection; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByDistributionPaymentTargetIdAndDistributionId: IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyConnection; + eventId: EventIdEnum; + /** Reads and enables pagination through a set of `AssetHolder`. */ + heldAssets: AssetHoldersConnection; + /** Reads and enables pagination through a set of `NftHolder`. */ + heldNfts: NftHoldersConnection; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByChildIdentityChildIdAndParentId: IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByChildIdentityParentIdAndChildId: IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByClaimIssuerIdAndTargetId: IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByClaimTargetIdAndIssuerId: IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByPortfolioCustodianIdAndIdentityId: IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByPortfolioIdentityIdAndCustodianId: IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyConnection; + /** Reads and enables pagination through a set of `Investment`. */ + investmentsByInvestorId: InvestmentsConnection; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByCreatorId: MultiSigProposalsConnection; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatorId: MultiSigsConnection; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByMultiSigProposalCreatorIdAndMultisigId: IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyConnection; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + parentChildIdentities: ChildIdentitiesConnection; + /** Reads and enables pagination through a set of `Permission`. */ + permissionsByAccountIdentityIdAndPermissionsId: IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfolios: PortfoliosConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByCustodianId: PortfoliosConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByDistributionIdentityIdAndPortfolioId: IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoCreatorIdAndOfferingPortfolioId: IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoCreatorIdAndRaisingPortfolioId: IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyConnection; + primaryAccount: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Proposal`. */ + proposalsByOwnerId: ProposalsConnection; + /** Reads and enables pagination through a set of `Account`. */ + secondaryAccounts: AccountsConnection; + secondaryKeysFrozen: Scalars['Boolean']['output']; + /** Reads and enables pagination through a set of `StakingEvent`. */ + stakingEvents: StakingEventsConnection; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByClaimIssuerId: StatTypesConnection; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByTransferComplianceClaimIssuerIdAndStatTypeId: IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyConnection; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatorId: StosConnection; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByCallerId: TickerExternalAgentActionsConnection; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByCallerId: TickerExternalAgentsConnection; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByClaimIssuerId: TransferCompliancesConnection; + /** Reads a single `Block` that is related to this `Identity`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByOwnerId: VenuesConnection; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByStoCreatorIdAndVenueId: IdentityVenuesByStoCreatorIdAndVenueIdManyToManyConnection; +}; + +export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetMandatoryMediatorsByAddedByIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetPreApprovalsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByDistributionIdentityIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByNftHolderIdentityIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityAuthorizationsByFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityBridgeEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityChildrenArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityClaimsByIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityClaimsByTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type IdentityConfidentialAccountsByCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityConfidentialAssetsByCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityConfidentialTransactionAffirmationsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type IdentityConfidentialVenuesByCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityCustomClaimTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityDistributionPaymentsByTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityDistributionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityHeldAssetsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityHeldNftsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityIdentitiesByChildIdentityChildIdAndParentIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityIdentitiesByChildIdentityParentIdAndChildIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityIdentitiesByClaimIssuerIdAndTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityIdentitiesByClaimTargetIdAndIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityInvestmentsByInvestorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityMultiSigProposalsByCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityMultiSigsByCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityParentChildIdentitiesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityPortfoliosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityPortfoliosByCustodianIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityProposalsByOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentitySecondaryAccountsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityStakingEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityStatTypesByClaimIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityStosByCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityTickerExternalAgentActionsByCallerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityTickerExternalAgentHistoriesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityTickerExternalAgentsByCallerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityTransferCompliancesByClaimIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityVenuesByOwnerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type IdentityVenuesByStoCreatorIdAndVenueIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Account` values, with data from `MultiSig`. */ +export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyConnection = { + __typename?: 'IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Account`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Account` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Account` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Account` values, with data from `MultiSig`. */ +export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Account` edge in the connection, with data from `MultiSig`. */ +export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyEdge = { + __typename?: 'IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatorAccountId: MultiSigsConnection; + /** The `Account` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Account` edge in the connection, with data from `MultiSig`. */ +export type IdentityAccountsByMultiSigCreatorIdAndCreatorAccountIdManyToManyEdgeMultiSigsByCreatorAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type IdentityAggregates = { + __typename?: 'IdentityAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `Identity` object types. */ +export type IdentityAggregatesFilter = { + /** Distinct count aggregate over matching `Identity` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Identity` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +/** A connection to a list of `Asset` values, with data from `AssetHolder`. */ +export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyConnection = { + __typename?: 'IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetHolder`. */ +export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetHolder`. */ +export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyEdge = { + __typename?: 'IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AssetHolder`. */ + holders: AssetHoldersConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetHolder`. */ +export type IdentityAssetsByAssetHolderIdentityIdAndAssetIdManyToManyEdgeHoldersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `AssetMandatoryMediator`. */ +export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyConnection = { + __typename?: 'IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetMandatoryMediator`. */ +export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyEdge = { + __typename?: 'IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + mandatoryMediators: AssetMandatoryMediatorsConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type IdentityAssetsByAssetMandatoryMediatorAddedByIdAndAssetIdManyToManyEdgeMandatoryMediatorsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ +export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyConnection = { + __typename?: 'IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetPreApproval`. */ +export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ +export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyEdge = { + __typename?: 'IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovals: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetPreApproval`. */ +export type IdentityAssetsByAssetPreApprovalIdentityIdAndAssetIdManyToManyEdgeAssetPreApprovalsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `Distribution`. */ +export type IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyConnection = { + __typename?: 'IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Distribution`. */ +export type IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Distribution`. */ +export type IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyEdge = { + __typename?: 'IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `Distribution`. */ +export type IdentityAssetsByDistributionIdentityIdAndAssetIdManyToManyEdgeDistributionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `NftHolder`. */ +export type IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyConnection = { + __typename?: 'IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `NftHolder`. */ +export type IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `NftHolder`. */ +export type IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyEdge = { + __typename?: 'IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHolders: NftHoldersConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `NftHolder`. */ +export type IdentityAssetsByNftHolderIdentityIdAndAssetIdManyToManyEdgeNftHoldersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `StatType`. */ +export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyConnection = { + __typename?: 'IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `StatType`. */ +export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `StatType`. */ +export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyEdge = { + __typename?: 'IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypes: StatTypesConnection; +}; + +/** A `Asset` edge in the connection, with data from `StatType`. */ +export type IdentityAssetsByStatTypeClaimIssuerIdAndAssetIdManyToManyEdgeStatTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyConnection = { + __typename?: 'IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyEdge = { + __typename?: 'IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingAssetId: StosConnection; +}; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type IdentityAssetsByStoCreatorIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ +export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyConnection = { + __typename?: 'IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentAction`. */ +export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyEdge = { + __typename?: 'IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActions: TickerExternalAgentActionsConnection; +}; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type IdentityAssetsByTickerExternalAgentActionCallerIdAndAssetIdManyToManyEdgeTickerExternalAgentActionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ +export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyConnection = { + __typename?: 'IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgent`. */ +export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ +export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyEdge = { + __typename?: 'IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgents: TickerExternalAgentsConnection; +}; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgent`. */ +export type IdentityAssetsByTickerExternalAgentCallerIdAndAssetIdManyToManyEdgeTickerExternalAgentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ +export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyConnection = { + __typename?: 'IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TickerExternalAgentHistory`. */ +export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyEdge = { + __typename?: 'IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistories: TickerExternalAgentHistoriesConnection; +}; + +/** A `Asset` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type IdentityAssetsByTickerExternalAgentHistoryIdentityIdAndAssetIdManyToManyEdgeTickerExternalAgentHistoriesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ +export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyConnection = { + __typename?: 'IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ +export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TransferCompliance`. */ +export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyEdge = { + __typename?: 'IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliances: TransferCompliancesConnection; +}; + +/** A `Asset` edge in the connection, with data from `TransferCompliance`. */ +export type IdentityAssetsByTransferComplianceClaimIssuerIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Account`. */ + accountsByCreatedBlockId: AccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type IdentityBlocksByAccountIdentityIdAndCreatedBlockIdManyToManyEdgeAccountsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Account`. */ + accountsByUpdatedBlockId: AccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type IdentityBlocksByAccountIdentityIdAndUpdatedBlockIdManyToManyEdgeAccountsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetHolder`. */ + assetHoldersByCreatedBlockId: AssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type IdentityBlocksByAssetHolderIdentityIdAndCreatedBlockIdManyToManyEdgeAssetHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetHolder`. */ +export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetHolder`. */ + assetHoldersByUpdatedBlockId: AssetHoldersConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetHolder`. */ +export type IdentityBlocksByAssetHolderIdentityIdAndUpdatedBlockIdManyToManyEdgeAssetHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByCreatedBlockId: AssetMandatoryMediatorsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndCreatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetMandatoryMediator`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetMandatoryMediator`. */ +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediatorsByUpdatedBlockId: AssetMandatoryMediatorsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetMandatoryMediator`. */ +export type IdentityBlocksByAssetMandatoryMediatorAddedByIdAndUpdatedBlockIdManyToManyEdgeAssetMandatoryMediatorsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Asset`. */ +export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Asset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Asset`. */ +export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Asset`. */ +export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByCreatedBlockId: AssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Asset`. */ +export type IdentityBlocksByAssetOwnerIdAndCreatedBlockIdManyToManyEdgeAssetsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Asset`. */ +export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Asset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Asset`. */ +export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Asset`. */ +export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByUpdatedBlockId: AssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Asset`. */ +export type IdentityBlocksByAssetOwnerIdAndUpdatedBlockIdManyToManyEdgeAssetsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovalsByCreatedBlockId: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type IdentityBlocksByAssetPreApprovalIdentityIdAndCreatedBlockIdManyToManyEdgeAssetPreApprovalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetPreApproval`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetPreApproval`. */ +export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovalsByUpdatedBlockId: AssetPreApprovalsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetPreApproval`. */ +export type IdentityBlocksByAssetPreApprovalIdentityIdAndUpdatedBlockIdManyToManyEdgeAssetPreApprovalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Authorization`. */ +export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Authorization`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Authorization`. */ +export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Authorization`. */ +export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Authorization`. */ + authorizationsByCreatedBlockId: AuthorizationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Authorization`. */ +export type IdentityBlocksByAuthorizationFromIdAndCreatedBlockIdManyToManyEdgeAuthorizationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Authorization`. */ +export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Authorization`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Authorization`. */ +export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Authorization`. */ +export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Authorization`. */ + authorizationsByUpdatedBlockId: AuthorizationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Authorization`. */ +export type IdentityBlocksByAuthorizationFromIdAndUpdatedBlockIdManyToManyEdgeAuthorizationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `BridgeEvent`. */ +export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `BridgeEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `BridgeEvent`. */ +export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `BridgeEvent`. */ +export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `BridgeEvent`. */ + bridgeEventsByCreatedBlockId: BridgeEventsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `BridgeEvent`. */ +export type IdentityBlocksByBridgeEventIdentityIdAndCreatedBlockIdManyToManyEdgeBridgeEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `BridgeEvent`. */ +export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `BridgeEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `BridgeEvent`. */ +export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `BridgeEvent`. */ +export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `BridgeEvent`. */ + bridgeEventsByUpdatedBlockId: BridgeEventsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `BridgeEvent`. */ +export type IdentityBlocksByBridgeEventIdentityIdAndUpdatedBlockIdManyToManyEdgeBridgeEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + childIdentitiesByCreatedBlockId: ChildIdentitiesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityChildIdAndCreatedBlockIdManyToManyEdgeChildIdentitiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + childIdentitiesByUpdatedBlockId: ChildIdentitiesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityChildIdAndUpdatedBlockIdManyToManyEdgeChildIdentitiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + childIdentitiesByCreatedBlockId: ChildIdentitiesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityParentIdAndCreatedBlockIdManyToManyEdgeChildIdentitiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + childIdentitiesByUpdatedBlockId: ChildIdentitiesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityBlocksByChildIdentityParentIdAndUpdatedBlockIdManyToManyEdgeChildIdentitiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByCreatedBlockId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type IdentityBlocksByClaimIssuerIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByUpdatedBlockId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type IdentityBlocksByClaimIssuerIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByCreatedBlockId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type IdentityBlocksByClaimTargetIdAndCreatedBlockIdManyToManyEdgeClaimsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Claim`. */ +export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByUpdatedBlockId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Claim`. */ +export type IdentityBlocksByClaimTargetIdAndUpdatedBlockIdManyToManyEdgeClaimsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ +export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAccount`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ +export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ +export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByCreatedBlockId: ConfidentialAccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ +export type IdentityBlocksByConfidentialAccountCreatorIdAndCreatedBlockIdManyToManyEdgeConfidentialAccountsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ +export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAccount`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialAccount`. */ +export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ +export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccountsByUpdatedBlockId: ConfidentialAccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAccount`. */ +export type IdentityBlocksByConfidentialAccountCreatorIdAndUpdatedBlockIdManyToManyEdgeConfidentialAccountsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ +export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAsset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ +export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ +export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByCreatedBlockId: ConfidentialAssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ +export type IdentityBlocksByConfidentialAssetCreatorIdAndCreatedBlockIdManyToManyEdgeConfidentialAssetsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ +export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialAsset`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialAsset`. */ +export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ +export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssetsByUpdatedBlockId: ConfidentialAssetsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialAsset`. */ +export type IdentityBlocksByConfidentialAssetCreatorIdAndUpdatedBlockIdManyToManyEdgeConfidentialAssetsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByCreatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndCreatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByUpdatedBlockId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityBlocksByConfidentialTransactionAffirmationIdentityIdAndUpdatedBlockIdManyToManyEdgeConfidentialTransactionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ +export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialVenue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ +export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ +export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenuesByCreatedBlockId: ConfidentialVenuesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ +export type IdentityBlocksByConfidentialVenueCreatorIdAndCreatedBlockIdManyToManyEdgeConfidentialVenuesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ +export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ConfidentialVenue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ConfidentialVenue`. */ +export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ +export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenuesByUpdatedBlockId: ConfidentialVenuesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `ConfidentialVenue`. */ +export type IdentityBlocksByConfidentialVenueCreatorIdAndUpdatedBlockIdManyToManyEdgeConfidentialVenuesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `CustomClaimType`. */ +export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `CustomClaimType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `CustomClaimType`. */ +export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `CustomClaimType`. */ +export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByCreatedBlockId: CustomClaimTypesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `CustomClaimType`. */ +export type IdentityBlocksByCustomClaimTypeIdentityIdAndCreatedBlockIdManyToManyEdgeCustomClaimTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `CustomClaimType`. */ +export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `CustomClaimType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `CustomClaimType`. */ +export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `CustomClaimType`. */ +export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypesByUpdatedBlockId: CustomClaimTypesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `CustomClaimType`. */ +export type IdentityBlocksByCustomClaimTypeIdentityIdAndUpdatedBlockIdManyToManyEdgeCustomClaimTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByCreatedBlockId: DistributionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type IdentityBlocksByDistributionIdentityIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByUpdatedBlockId: DistributionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type IdentityBlocksByDistributionIdentityIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByCreatedBlockId: DistributionPaymentsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type IdentityBlocksByDistributionPaymentTargetIdAndCreatedBlockIdManyToManyEdgeDistributionPaymentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `DistributionPayment`. */ +export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPaymentsByUpdatedBlockId: DistributionPaymentsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `DistributionPayment`. */ +export type IdentityBlocksByDistributionPaymentTargetIdAndUpdatedBlockIdManyToManyEdgeDistributionPaymentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Investment`. */ +export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Investment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Investment`. */ +export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Investment`. */ +export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Investment`. */ + investmentsByCreatedBlockId: InvestmentsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Investment`. */ +export type IdentityBlocksByInvestmentInvestorIdAndCreatedBlockIdManyToManyEdgeInvestmentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Investment`. */ +export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Investment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Investment`. */ +export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Investment`. */ +export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Investment`. */ + investmentsByUpdatedBlockId: InvestmentsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Investment`. */ +export type IdentityBlocksByInvestmentInvestorIdAndUpdatedBlockIdManyToManyEdgeInvestmentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByCreatedBlockId: MultiSigsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type IdentityBlocksByMultiSigCreatorIdAndCreatedBlockIdManyToManyEdgeMultiSigsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSig`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSig`. */ +export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigsByUpdatedBlockId: MultiSigsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSig`. */ +export type IdentityBlocksByMultiSigCreatorIdAndUpdatedBlockIdManyToManyEdgeMultiSigsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByCreatedBlockId: MultiSigProposalsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type IdentityBlocksByMultiSigProposalCreatorIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByUpdatedBlockId: MultiSigProposalsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type IdentityBlocksByMultiSigProposalCreatorIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHoldersByCreatedBlockId: NftHoldersConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type IdentityBlocksByNftHolderIdentityIdAndCreatedBlockIdManyToManyEdgeNftHoldersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `NftHolder`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `NftHolder`. */ +export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHoldersByUpdatedBlockId: NftHoldersConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `NftHolder`. */ +export type IdentityBlocksByNftHolderIdentityIdAndUpdatedBlockIdManyToManyEdgeNftHoldersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByCreatedBlockId: PortfoliosConnection; +}; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioCustodianIdAndCreatedBlockIdManyToManyEdgePortfoliosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByUpdatedBlockId: PortfoliosConnection; +}; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioCustodianIdAndUpdatedBlockIdManyToManyEdgePortfoliosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByCreatedBlockId: PortfoliosConnection; +}; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioIdentityIdAndCreatedBlockIdManyToManyEdgePortfoliosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByUpdatedBlockId: PortfoliosConnection; +}; + +/** A `Block` edge in the connection, with data from `Portfolio`. */ +export type IdentityBlocksByPortfolioIdentityIdAndUpdatedBlockIdManyToManyEdgePortfoliosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Proposal`. */ +export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Proposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Proposal`. */ +export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Proposal`. */ +export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Proposal`. */ + proposalsByCreatedBlockId: ProposalsConnection; +}; + +/** A `Block` edge in the connection, with data from `Proposal`. */ +export type IdentityBlocksByProposalOwnerIdAndCreatedBlockIdManyToManyEdgeProposalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Proposal`. */ +export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Proposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Proposal`. */ +export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Proposal`. */ +export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Proposal`. */ + proposalsByUpdatedBlockId: ProposalsConnection; +}; + +/** A `Block` edge in the connection, with data from `Proposal`. */ +export type IdentityBlocksByProposalOwnerIdAndUpdatedBlockIdManyToManyEdgeProposalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StakingEvent`. */ +export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StakingEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `StakingEvent`. */ +export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StakingEvent`. */ +export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StakingEvent`. */ + stakingEventsByCreatedBlockId: StakingEventsConnection; +}; + +/** A `Block` edge in the connection, with data from `StakingEvent`. */ +export type IdentityBlocksByStakingEventIdentityIdAndCreatedBlockIdManyToManyEdgeStakingEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StakingEvent`. */ +export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StakingEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `StakingEvent`. */ +export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StakingEvent`. */ +export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StakingEvent`. */ + stakingEventsByUpdatedBlockId: StakingEventsConnection; +}; + +/** A `Block` edge in the connection, with data from `StakingEvent`. */ +export type IdentityBlocksByStakingEventIdentityIdAndUpdatedBlockIdManyToManyEdgeStakingEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByCreatedBlockId: StatTypesConnection; +}; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type IdentityBlocksByStatTypeClaimIssuerIdAndCreatedBlockIdManyToManyEdgeStatTypesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `StatType`. */ +export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypesByUpdatedBlockId: StatTypesConnection; +}; + +/** A `Block` edge in the connection, with data from `StatType`. */ +export type IdentityBlocksByStatTypeClaimIssuerIdAndUpdatedBlockIdManyToManyEdgeStatTypesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type IdentityBlocksByStoCreatorIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByUpdatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type IdentityBlocksByStoCreatorIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByCreatedBlockId: TickerExternalAgentActionsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentActionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentAction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentAction`. */ +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActionsByUpdatedBlockId: TickerExternalAgentActionsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentAction`. */ +export type IdentityBlocksByTickerExternalAgentActionCallerIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentActionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByCreatedBlockId: TickerExternalAgentsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type IdentityBlocksByTickerExternalAgentCallerIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgent`. */ +export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgentsByUpdatedBlockId: TickerExternalAgentsConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgent`. */ +export type IdentityBlocksByTickerExternalAgentCallerIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistoriesByCreatedBlockId: TickerExternalAgentHistoriesConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndCreatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TickerExternalAgentHistory`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `TickerExternalAgentHistory`. */ +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistoriesByUpdatedBlockId: TickerExternalAgentHistoriesConnection; +}; + +/** A `Block` edge in the connection, with data from `TickerExternalAgentHistory`. */ +export type IdentityBlocksByTickerExternalAgentHistoryIdentityIdAndUpdatedBlockIdManyToManyEdgeTickerExternalAgentHistoriesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByCreatedBlockId: TransferCompliancesConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByUpdatedBlockId: TransferCompliancesConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type IdentityBlocksByTransferComplianceClaimIssuerIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Venue`. */ +export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Venue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Venue`. */ +export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Venue`. */ +export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByCreatedBlockId: VenuesConnection; +}; + +/** A `Block` edge in the connection, with data from `Venue`. */ +export type IdentityBlocksByVenueOwnerIdAndCreatedBlockIdManyToManyEdgeVenuesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Venue`. */ +export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Venue`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Venue`. */ +export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Venue`. */ +export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByUpdatedBlockId: VenuesConnection; +}; + +/** A `Block` edge in the connection, with data from `Venue`. */ +export type IdentityBlocksByVenueOwnerIdAndUpdatedBlockIdManyToManyEdgeVenuesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyConnection = + { + __typename?: 'IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialAccount`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialAccount` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialAccount` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialAccount` values, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyEdge = + { + __typename?: 'IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmationsByAccountId: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialAccount` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialAccount` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityConfidentialAccountsByConfidentialTransactionAffirmationIdentityIdAndAccountIdManyToManyEdgeConfidentialTransactionAffirmationsByAccountIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyConnection = + { + __typename?: 'IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ConfidentialTransaction`, info from the `ConfidentialTransactionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ConfidentialTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ConfidentialTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `ConfidentialTransaction` values, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyEdge = + { + __typename?: 'IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + affirmations: ConfidentialTransactionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ConfidentialTransaction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `ConfidentialTransaction` edge in the connection, with data from `ConfidentialTransactionAffirmation`. */ +export type IdentityConfidentialTransactionsByConfidentialTransactionAffirmationIdentityIdAndTransactionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ +export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection = { + __typename?: 'IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ +export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `CustomClaimType` edge in the connection, with data from `Claim`. */ +export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyEdge = { + __typename?: 'IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claims: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `CustomClaimType` at the end of the edge. */ + node?: Maybe; +}; + +/** A `CustomClaimType` edge in the connection, with data from `Claim`. */ +export type IdentityCustomClaimTypesByClaimIssuerIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ +export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyConnection = { + __typename?: 'IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `CustomClaimType` values, with data from `Claim`. */ +export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `CustomClaimType` edge in the connection, with data from `Claim`. */ +export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyEdge = { + __typename?: 'IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claims: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `CustomClaimType` at the end of the edge. */ + node?: Maybe; +}; + +/** A `CustomClaimType` edge in the connection, with data from `Claim`. */ +export type IdentityCustomClaimTypesByClaimTargetIdAndCustomClaimTypeIdManyToManyEdgeClaimsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ +export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection = + { + __typename?: 'IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `CustomClaimType`, info from the `StatType`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `CustomClaimType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `CustomClaimType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `CustomClaimType` values, with data from `StatType`. */ +export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `CustomClaimType` edge in the connection, with data from `StatType`. */ +export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyEdge = { + __typename?: 'IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `CustomClaimType` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypes: StatTypesConnection; +}; + +/** A `CustomClaimType` edge in the connection, with data from `StatType`. */ +export type IdentityCustomClaimTypesByStatTypeClaimIssuerIdAndCustomClaimTypeIdManyToManyEdgeStatTypesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type IdentityDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + did?: InputMaybe; + eventId?: InputMaybe; + id?: InputMaybe; + primaryAccount?: InputMaybe; + secondaryKeysFrozen?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type IdentityDistinctCountAggregates = { + __typename?: 'IdentityDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of did across the matching connection */ + did?: Maybe; + /** Distinct count of eventId across the matching connection */ + eventId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of primaryAccount across the matching connection */ + primaryAccount?: Maybe; + /** Distinct count of secondaryKeysFrozen across the matching connection */ + secondaryKeysFrozen?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ +export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyConnection = + { + __typename?: 'IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Distribution`, info from the `DistributionPayment`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Distribution` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Distribution` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Distribution` values, with data from `DistributionPayment`. */ +export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ +export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyEdge = { + __typename?: 'IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPayments: DistributionPaymentsConnection; + /** The `Distribution` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Distribution` edge in the connection, with data from `DistributionPayment`. */ +export type IdentityDistributionsByDistributionPaymentTargetIdAndDistributionIdManyToManyEdgeDistributionPaymentsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A filter to be used against `Identity` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `assetMandatoryMediatorsByAddedById` relation. */ + assetMandatoryMediatorsByAddedById?: InputMaybe; + /** Some related `assetMandatoryMediatorsByAddedById` exist. */ + assetMandatoryMediatorsByAddedByIdExist?: InputMaybe; + /** Filter by the object’s `assetPreApprovals` relation. */ + assetPreApprovals?: InputMaybe; + /** Some related `assetPreApprovals` exist. */ + assetPreApprovalsExist?: InputMaybe; + /** Filter by the object’s `assetsByOwnerId` relation. */ + assetsByOwnerId?: InputMaybe; + /** Some related `assetsByOwnerId` exist. */ + assetsByOwnerIdExist?: InputMaybe; + /** Filter by the object’s `authorizationsByFromId` relation. */ + authorizationsByFromId?: InputMaybe; + /** Some related `authorizationsByFromId` exist. */ + authorizationsByFromIdExist?: InputMaybe; + /** Filter by the object’s `bridgeEvents` relation. */ + bridgeEvents?: InputMaybe; + /** Some related `bridgeEvents` exist. */ + bridgeEventsExist?: InputMaybe; + /** Filter by the object’s `children` relation. */ + children?: InputMaybe; + /** Some related `children` exist. */ + childrenExist?: InputMaybe; + /** Filter by the object’s `claimsByIssuerId` relation. */ + claimsByIssuerId?: InputMaybe; + /** Some related `claimsByIssuerId` exist. */ + claimsByIssuerIdExist?: InputMaybe; + /** Filter by the object’s `claimsByTargetId` relation. */ + claimsByTargetId?: InputMaybe; + /** Some related `claimsByTargetId` exist. */ + claimsByTargetIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAccountsByCreatorId` relation. */ + confidentialAccountsByCreatorId?: InputMaybe; + /** Some related `confidentialAccountsByCreatorId` exist. */ + confidentialAccountsByCreatorIdExist?: InputMaybe; + /** Filter by the object’s `confidentialAssetsByCreatorId` relation. */ + confidentialAssetsByCreatorId?: InputMaybe; + /** Some related `confidentialAssetsByCreatorId` exist. */ + confidentialAssetsByCreatorIdExist?: InputMaybe; + /** Filter by the object’s `confidentialTransactionAffirmations` relation. */ + confidentialTransactionAffirmations?: InputMaybe; + /** Some related `confidentialTransactionAffirmations` exist. */ + confidentialTransactionAffirmationsExist?: InputMaybe; + /** Filter by the object’s `confidentialVenuesByCreatorId` relation. */ + confidentialVenuesByCreatorId?: InputMaybe; + /** Some related `confidentialVenuesByCreatorId` exist. */ + confidentialVenuesByCreatorIdExist?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `customClaimTypes` relation. */ + customClaimTypes?: InputMaybe; + /** Some related `customClaimTypes` exist. */ + customClaimTypesExist?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `did` field. */ + did?: InputMaybe; + /** Filter by the object’s `distributionPaymentsByTargetId` relation. */ + distributionPaymentsByTargetId?: InputMaybe; + /** Some related `distributionPaymentsByTargetId` exist. */ + distributionPaymentsByTargetIdExist?: InputMaybe; + /** Filter by the object’s `distributions` relation. */ + distributions?: InputMaybe; + /** Some related `distributions` exist. */ + distributionsExist?: InputMaybe; + /** Filter by the object’s `eventId` field. */ + eventId?: InputMaybe; + /** Filter by the object’s `heldAssets` relation. */ + heldAssets?: InputMaybe; + /** Some related `heldAssets` exist. */ + heldAssetsExist?: InputMaybe; + /** Filter by the object’s `heldNfts` relation. */ + heldNfts?: InputMaybe; + /** Some related `heldNfts` exist. */ + heldNftsExist?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `investmentsByInvestorId` relation. */ + investmentsByInvestorId?: InputMaybe; + /** Some related `investmentsByInvestorId` exist. */ + investmentsByInvestorIdExist?: InputMaybe; + /** Filter by the object’s `multiSigProposalsByCreatorId` relation. */ + multiSigProposalsByCreatorId?: InputMaybe; + /** Some related `multiSigProposalsByCreatorId` exist. */ + multiSigProposalsByCreatorIdExist?: InputMaybe; + /** Filter by the object’s `multiSigsByCreatorId` relation. */ + multiSigsByCreatorId?: InputMaybe; + /** Some related `multiSigsByCreatorId` exist. */ + multiSigsByCreatorIdExist?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `parentChildIdentities` relation. */ + parentChildIdentities?: InputMaybe; + /** Some related `parentChildIdentities` exist. */ + parentChildIdentitiesExist?: InputMaybe; + /** Filter by the object’s `portfolios` relation. */ + portfolios?: InputMaybe; + /** Filter by the object’s `portfoliosByCustodianId` relation. */ + portfoliosByCustodianId?: InputMaybe; + /** Some related `portfoliosByCustodianId` exist. */ + portfoliosByCustodianIdExist?: InputMaybe; + /** Some related `portfolios` exist. */ + portfoliosExist?: InputMaybe; + /** Filter by the object’s `primaryAccount` field. */ + primaryAccount?: InputMaybe; + /** Filter by the object’s `proposalsByOwnerId` relation. */ + proposalsByOwnerId?: InputMaybe; + /** Some related `proposalsByOwnerId` exist. */ + proposalsByOwnerIdExist?: InputMaybe; + /** Filter by the object’s `secondaryAccounts` relation. */ + secondaryAccounts?: InputMaybe; + /** Some related `secondaryAccounts` exist. */ + secondaryAccountsExist?: InputMaybe; + /** Filter by the object’s `secondaryKeysFrozen` field. */ + secondaryKeysFrozen?: InputMaybe; + /** Filter by the object’s `stakingEvents` relation. */ + stakingEvents?: InputMaybe; + /** Some related `stakingEvents` exist. */ + stakingEventsExist?: InputMaybe; + /** Filter by the object’s `statTypesByClaimIssuerId` relation. */ + statTypesByClaimIssuerId?: InputMaybe; + /** Some related `statTypesByClaimIssuerId` exist. */ + statTypesByClaimIssuerIdExist?: InputMaybe; + /** Filter by the object’s `stosByCreatorId` relation. */ + stosByCreatorId?: InputMaybe; + /** Some related `stosByCreatorId` exist. */ + stosByCreatorIdExist?: InputMaybe; + /** Filter by the object’s `tickerExternalAgentActionsByCallerId` relation. */ + tickerExternalAgentActionsByCallerId?: InputMaybe; + /** Some related `tickerExternalAgentActionsByCallerId` exist. */ + tickerExternalAgentActionsByCallerIdExist?: InputMaybe; + /** Filter by the object’s `tickerExternalAgentHistories` relation. */ + tickerExternalAgentHistories?: InputMaybe; + /** Some related `tickerExternalAgentHistories` exist. */ + tickerExternalAgentHistoriesExist?: InputMaybe; + /** Filter by the object’s `tickerExternalAgentsByCallerId` relation. */ + tickerExternalAgentsByCallerId?: InputMaybe; + /** Some related `tickerExternalAgentsByCallerId` exist. */ + tickerExternalAgentsByCallerIdExist?: InputMaybe; + /** Filter by the object’s `transferCompliancesByClaimIssuerId` relation. */ + transferCompliancesByClaimIssuerId?: InputMaybe; + /** Some related `transferCompliancesByClaimIssuerId` exist. */ + transferCompliancesByClaimIssuerIdExist?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `venuesByOwnerId` relation. */ + venuesByOwnerId?: InputMaybe; + /** Some related `venuesByOwnerId` exist. */ + venuesByOwnerIdExist?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyConnection = { + __typename?: 'IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyEdge = { + __typename?: 'IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyEdge'; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + children: ChildIdentitiesConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityIdentitiesByChildIdentityChildIdAndParentIdManyToManyEdgeChildrenArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyConnection = { + __typename?: 'IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `ChildIdentity`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `ChildIdentity`. */ +export type IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyEdge = { + __typename?: 'IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + parentChildIdentities: ChildIdentitiesConnection; +}; + +/** A `Identity` edge in the connection, with data from `ChildIdentity`. */ +export type IdentityIdentitiesByChildIdentityParentIdAndChildIdManyToManyEdgeParentChildIdentitiesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyConnection = { + __typename?: 'IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyEdge = { + __typename?: 'IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByTargetId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type IdentityIdentitiesByClaimIssuerIdAndTargetIdManyToManyEdgeClaimsByTargetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyConnection = { + __typename?: 'IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Claim`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Claim`. */ +export type IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyEdge = { + __typename?: 'IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Claim`. */ + claimsByIssuerId: ClaimsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Claim`. */ +export type IdentityIdentitiesByClaimTargetIdAndIssuerIdManyToManyEdgeClaimsByIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyConnection = { + __typename?: 'IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyEdge = { + __typename?: 'IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfolios: PortfoliosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type IdentityIdentitiesByPortfolioCustodianIdAndIdentityIdManyToManyEdgePortfoliosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyConnection = { + __typename?: 'IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Portfolio`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Portfolio`. */ +export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyEdge = { + __typename?: 'IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByCustodianId: PortfoliosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Portfolio`. */ +export type IdentityIdentitiesByPortfolioIdentityIdAndCustodianIdManyToManyEdgePortfoliosByCustodianIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `MultiSig` values, with data from `MultiSigProposal`. */ +export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyConnection = { + __typename?: 'IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSig`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSig` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSig` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `MultiSig` values, with data from `MultiSigProposal`. */ +export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ +export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyEdge = { + __typename?: 'IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSig` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + proposals: MultiSigProposalsConnection; +}; + +/** A `MultiSig` edge in the connection, with data from `MultiSigProposal`. */ +export type IdentityMultiSigsByMultiSigProposalCreatorIdAndMultisigIdManyToManyEdgeProposalsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Permission` values, with data from `Account`. */ +export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyConnection = { + __typename?: 'IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Permission`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Permission` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Permission` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Permission` values, with data from `Account`. */ +export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Permission` edge in the connection, with data from `Account`. */ +export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyEdge = { + __typename?: 'IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Account`. */ + accountsByPermissionsId: AccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Permission` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Permission` edge in the connection, with data from `Account`. */ +export type IdentityPermissionsByAccountIdentityIdAndPermissionsIdManyToManyEdgeAccountsByPermissionsIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Distribution`. */ +export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyConnection = { + __typename?: 'IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Distribution`. */ +export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Distribution`. */ +export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyEdge = { + __typename?: 'IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `Distribution`. */ +export type IdentityPortfoliosByDistributionIdentityIdAndPortfolioIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyConnection = { + __typename?: 'IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyEdge = { + __typename?: 'IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type IdentityPortfoliosByStoCreatorIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyConnection = { + __typename?: 'IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyEdge = { + __typename?: 'IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByRaisingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type IdentityPortfoliosByStoCreatorIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ +export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyConnection = { + __typename?: 'IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `StatType`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `StatType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `StatType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `StatType` values, with data from `TransferCompliance`. */ +export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `StatType` edge in the connection, with data from `TransferCompliance`. */ +export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyEdge = { + __typename?: 'IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `StatType` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliances: TransferCompliancesConnection; +}; + +/** A `StatType` edge in the connection, with data from `TransferCompliance`. */ +export type IdentityStatTypesByTransferComplianceClaimIssuerIdAndStatTypeIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A filter to be used against many `Account` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyAccountFilter = { + /** Aggregates across related `Account` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Account` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Account` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Account` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Asset` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyAssetFilter = { + /** Aggregates across related `Asset` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Asset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Asset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Asset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetHolder` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyAssetHolderFilter = { + /** Aggregates across related `AssetHolder` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetMandatoryMediator` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyAssetMandatoryMediatorFilter = { + /** Aggregates across related `AssetMandatoryMediator` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetMandatoryMediator` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetMandatoryMediator` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetMandatoryMediator` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `AssetPreApproval` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyAssetPreApprovalFilter = { + /** Aggregates across related `AssetPreApproval` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetPreApproval` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetPreApproval` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetPreApproval` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Authorization` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyAuthorizationFilter = { + /** Aggregates across related `Authorization` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Authorization` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Authorization` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Authorization` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `BridgeEvent` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyBridgeEventFilter = { + /** Aggregates across related `BridgeEvent` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `BridgeEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `BridgeEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `BridgeEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ChildIdentity` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyChildIdentityFilter = { + /** Aggregates across related `ChildIdentity` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ChildIdentity` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ChildIdentity` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ChildIdentity` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Claim` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyClaimFilter = { + /** Aggregates across related `Claim` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Claim` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialAccount` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyConfidentialAccountFilter = { + /** Aggregates across related `ConfidentialAccount` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAccount` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAccount` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAccount` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialAsset` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyConfidentialAssetFilter = { + /** Aggregates across related `ConfidentialAsset` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialAsset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialAsset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialAsset` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialTransactionAffirmation` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyConfidentialTransactionAffirmationFilter = { + /** Aggregates across related `ConfidentialTransactionAffirmation` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialTransactionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `ConfidentialVenue` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyConfidentialVenueFilter = { + /** Aggregates across related `ConfidentialVenue` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ConfidentialVenue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ConfidentialVenue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ConfidentialVenue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `CustomClaimType` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyCustomClaimTypeFilter = { + /** Aggregates across related `CustomClaimType` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `CustomClaimType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Distribution` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyDistributionFilter = { + /** Aggregates across related `Distribution` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `DistributionPayment` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyDistributionPaymentFilter = { + /** Aggregates across related `DistributionPayment` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `DistributionPayment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `DistributionPayment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `DistributionPayment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Investment` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyInvestmentFilter = { + /** Aggregates across related `Investment` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Investment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Investment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Investment` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `MultiSig` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyMultiSigFilter = { + /** Aggregates across related `MultiSig` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `MultiSig` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `MultiSig` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `MultiSig` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `MultiSigProposal` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyMultiSigProposalFilter = { + /** Aggregates across related `MultiSigProposal` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `MultiSigProposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `MultiSigProposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `MultiSigProposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `NftHolder` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyNftHolderFilter = { + /** Aggregates across related `NftHolder` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `NftHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `NftHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `NftHolder` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Portfolio` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyPortfolioFilter = { + /** Aggregates across related `Portfolio` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Portfolio` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Portfolio` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Portfolio` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Proposal` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyProposalFilter = { + /** Aggregates across related `Proposal` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Proposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Proposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Proposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `StakingEvent` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyStakingEventFilter = { + /** Aggregates across related `StakingEvent` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `StakingEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `StakingEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `StakingEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `StatType` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyStatTypeFilter = { + /** Aggregates across related `StatType` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `StatType` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Sto` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyStoFilter = { + /** Aggregates across related `Sto` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TickerExternalAgentAction` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyTickerExternalAgentActionFilter = { + /** Aggregates across related `TickerExternalAgentAction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TickerExternalAgentAction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TickerExternalAgentAction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TickerExternalAgentAction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TickerExternalAgent` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyTickerExternalAgentFilter = { + /** Aggregates across related `TickerExternalAgent` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TickerExternalAgent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TickerExternalAgent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TickerExternalAgent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TickerExternalAgentHistory` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyTickerExternalAgentHistoryFilter = { + /** Aggregates across related `TickerExternalAgentHistory` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TickerExternalAgentHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TickerExternalAgentHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TickerExternalAgentHistory` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `TransferCompliance` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyTransferComplianceFilter = { + /** Aggregates across related `TransferCompliance` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Venue` object types. All fields are combined with a logical ‘and.’ */ +export type IdentityToManyVenueFilter = { + /** Aggregates across related `Venue` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Venue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Venue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Venue` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type IdentityVenuesByStoCreatorIdAndVenueIdManyToManyConnection = { + __typename?: 'IdentityVenuesByStoCreatorIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Venue`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Venue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Venue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type IdentityVenuesByStoCreatorIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type IdentityVenuesByStoCreatorIdAndVenueIdManyToManyEdge = { + __typename?: 'IdentityVenuesByStoCreatorIdAndVenueIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Venue` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stos: StosConnection; +}; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type IdentityVenuesByStoCreatorIdAndVenueIdManyToManyEdgeStosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type Instruction = Node & { + __typename?: 'Instruction'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetTransactionInstructionIdAndAssetId: InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetTransactionInstructionIdAndCreatedBlockId: InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetTransactionInstructionIdAndUpdatedBlockId: InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionAffirmationInstructionIdAndCreatedBlockId: InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionAffirmationInstructionIdAndUpdatedBlockId: InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionEventInstructionIdAndCreatedBlockId: InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionEventInstructionIdAndUpdatedBlockId: InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionPartyInstructionIdAndCreatedBlockId: InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionPartyInstructionIdAndUpdatedBlockId: InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByLegInstructionIdAndCreatedBlockId: InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByLegInstructionIdAndUpdatedBlockId: InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Instruction`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** `endAfterBlock` is applicable only when `type` is `SettleManual` */ + endAfterBlock?: Maybe; + /** `endBlock` is applicable only when `type` is `SettleOnBlock` */ + endBlock?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + events: InstructionEventsConnection; + failureReason?: Maybe; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `InstructionParty`. */ + instructionPartiesByInstructionAffirmationInstructionIdAndPartyId: InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyConnection; + /** Reads and enables pagination through a set of `Leg`. */ + legs: LegsConnection; + /** DID of the mediators */ + mediators: Scalars['JSON']['output']; + memo?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptId: InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyConnection; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptId: InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyConnection; + /** Reads and enables pagination through a set of `InstructionParty`. */ + parties: InstructionPartiesConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByAssetTransactionInstructionIdAndFromPortfolioId: InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByAssetTransactionInstructionIdAndToPortfolioId: InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnection; + status: InstructionStatusEnum; + tradeDate?: Maybe; + type: InstructionTypeEnum; + /** Reads a single `Block` that is related to this `Instruction`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + valueDate?: Maybe; + /** Reads a single `Venue` that is related to this `Instruction`. */ + venue?: Maybe; + venueId: Scalars['String']['output']; +}; + +export type InstructionAffirmationsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionAssetTransactionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionLegsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionPartiesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionAffirmation = Node & { + __typename?: 'InstructionAffirmation'; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `InstructionAffirmation`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** If `expiry` is present the time should be check top ensure the affirmation is still valid. Applicable for mediator affirmations */ + expiry?: Maybe; + id: Scalars['String']['output']; + identity: Scalars['String']['output']; + /** Reads a single `Instruction` that is related to this `InstructionAffirmation`. */ + instruction?: Maybe; + instructionId: Scalars['String']['output']; + isAutomaticallyAffirmed: Scalars['Boolean']['output']; + isMediator: Scalars['Boolean']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `OffChainReceipt` that is related to this `InstructionAffirmation`. */ + offChainReceipt?: Maybe; + /** `offChainReceipt` is only applicable when affirmation */ + offChainReceiptId?: Maybe; + /** Reads a single `InstructionParty` that is related to this `InstructionAffirmation`. */ + party?: Maybe; + partyId: Scalars['String']['output']; + /** `portfolio` will be null for mediator affirmation and off chain affirmation */ + portfolios?: Maybe; + status: AffirmStatusEnum; + /** Reads a single `Block` that is related to this `InstructionAffirmation`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type InstructionAffirmationPortfoliosArgs = { + distinct?: InputMaybe>>; +}; + +export type InstructionAffirmationAggregates = { + __typename?: 'InstructionAffirmationAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `InstructionAffirmation` object types. */ +export type InstructionAffirmationAggregatesFilter = { + /** Distinct count aggregate over matching `InstructionAffirmation` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `InstructionAffirmation` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type InstructionAffirmationDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + expiry?: InputMaybe; + id?: InputMaybe; + identity?: InputMaybe; + instructionId?: InputMaybe; + isAutomaticallyAffirmed?: InputMaybe; + isMediator?: InputMaybe; + offChainReceiptId?: InputMaybe; + partyId?: InputMaybe; + portfolios?: InputMaybe; + status?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type InstructionAffirmationDistinctCountAggregates = { + __typename?: 'InstructionAffirmationDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of expiry across the matching connection */ + expiry?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identity across the matching connection */ + identity?: Maybe; + /** Distinct count of instructionId across the matching connection */ + instructionId?: Maybe; + /** Distinct count of isAutomaticallyAffirmed across the matching connection */ + isAutomaticallyAffirmed?: Maybe; + /** Distinct count of isMediator across the matching connection */ + isMediator?: Maybe; + /** Distinct count of offChainReceiptId across the matching connection */ + offChainReceiptId?: Maybe; + /** Distinct count of partyId across the matching connection */ + partyId?: Maybe; + /** Distinct count of portfolios across the matching connection */ + portfolios?: Maybe; + /** Distinct count of status across the matching connection */ + status?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `InstructionAffirmation` object types. All fields are combined with a logical ‘and.’ */ +export type InstructionAffirmationFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `expiry` field. */ + expiry?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` field. */ + identity?: InputMaybe; + /** Filter by the object’s `instruction` relation. */ + instruction?: InputMaybe; + /** Filter by the object’s `instructionId` field. */ + instructionId?: InputMaybe; + /** Filter by the object’s `isAutomaticallyAffirmed` field. */ + isAutomaticallyAffirmed?: InputMaybe; + /** Filter by the object’s `isMediator` field. */ + isMediator?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Filter by the object’s `offChainReceipt` relation. */ + offChainReceipt?: InputMaybe; + /** A related `offChainReceipt` exists. */ + offChainReceiptExists?: InputMaybe; + /** Filter by the object’s `offChainReceiptId` field. */ + offChainReceiptId?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `party` relation. */ + party?: InputMaybe; + /** Filter by the object’s `partyId` field. */ + partyId?: InputMaybe; + /** Filter by the object’s `portfolios` field. */ + portfolios?: InputMaybe; + /** Filter by the object’s `status` field. */ + status?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `InstructionAffirmation` values. */ +export type InstructionAffirmationsConnection = { + __typename?: 'InstructionAffirmationsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `InstructionAffirmation` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `InstructionAffirmation` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `InstructionAffirmation` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `InstructionAffirmation` values. */ +export type InstructionAffirmationsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `InstructionAffirmation` edge in the connection. */ +export type InstructionAffirmationsEdge = { + __typename?: 'InstructionAffirmationsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `InstructionAffirmation` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `InstructionAffirmation` for usage during aggregation. */ +export enum InstructionAffirmationsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Expiry = 'EXPIRY', + ExpiryTruncatedToDay = 'EXPIRY_TRUNCATED_TO_DAY', + ExpiryTruncatedToHour = 'EXPIRY_TRUNCATED_TO_HOUR', + Id = 'ID', + Identity = 'IDENTITY', + InstructionId = 'INSTRUCTION_ID', + IsAutomaticallyAffirmed = 'IS_AUTOMATICALLY_AFFIRMED', + IsMediator = 'IS_MEDIATOR', + OffChainReceiptId = 'OFF_CHAIN_RECEIPT_ID', + PartyId = 'PARTY_ID', + Portfolios = 'PORTFOLIOS', + Status = 'STATUS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type InstructionAffirmationsHavingAverageInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type InstructionAffirmationsHavingDistinctCountInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +/** Conditions for `InstructionAffirmation` aggregates. */ +export type InstructionAffirmationsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type InstructionAffirmationsHavingMaxInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type InstructionAffirmationsHavingMinInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type InstructionAffirmationsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type InstructionAffirmationsHavingStddevSampleInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type InstructionAffirmationsHavingSumInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type InstructionAffirmationsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +export type InstructionAffirmationsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + expiry?: InputMaybe; +}; + +/** Methods to use when ordering `InstructionAffirmation`. */ +export enum InstructionAffirmationsOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + ExpiryAsc = 'EXPIRY_ASC', + ExpiryDesc = 'EXPIRY_DESC', + IdentityAsc = 'IDENTITY_ASC', + IdentityDesc = 'IDENTITY_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + InstructionIdAsc = 'INSTRUCTION_ID_ASC', + InstructionIdDesc = 'INSTRUCTION_ID_DESC', + IsAutomaticallyAffirmedAsc = 'IS_AUTOMATICALLY_AFFIRMED_ASC', + IsAutomaticallyAffirmedDesc = 'IS_AUTOMATICALLY_AFFIRMED_DESC', + IsMediatorAsc = 'IS_MEDIATOR_ASC', + IsMediatorDesc = 'IS_MEDIATOR_DESC', + Natural = 'NATURAL', + OffChainReceiptIdAsc = 'OFF_CHAIN_RECEIPT_ID_ASC', + OffChainReceiptIdDesc = 'OFF_CHAIN_RECEIPT_ID_DESC', + PartyIdAsc = 'PARTY_ID_ASC', + PartyIdDesc = 'PARTY_ID_DESC', + PortfoliosAsc = 'PORTFOLIOS_ASC', + PortfoliosDesc = 'PORTFOLIOS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + StatusAsc = 'STATUS_ASC', + StatusDesc = 'STATUS_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type InstructionAggregates = { + __typename?: 'InstructionAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Instruction` object types. */ +export type InstructionAggregatesFilter = { + /** Mean average aggregate over matching `Instruction` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Instruction` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Instruction` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Instruction` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Instruction` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Instruction` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Instruction` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Instruction` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Instruction` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Instruction` objects. */ + varianceSample?: InputMaybe; +}; + +/** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ +export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyConnection = { + __typename?: 'InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ +export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetTransaction`. */ +export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyEdge = { + __typename?: 'InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetTransaction`. */ +export type InstructionAssetsByAssetTransactionInstructionIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type InstructionAverageAggregateFilter = { + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; +}; + +export type InstructionAverageAggregates = { + __typename?: 'InstructionAverageAggregates'; + /** Mean average of endAfterBlock across the matching connection */ + endAfterBlock?: Maybe; + /** Mean average of endBlock across the matching connection */ + endBlock?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByCreatedBlockId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type InstructionBlocksByAssetTransactionInstructionIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByUpdatedBlockId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type InstructionBlocksByAssetTransactionInstructionIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByCreatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionBlocksByInstructionAffirmationInstructionIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByUpdatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionBlocksByInstructionAffirmationInstructionIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEventsByCreatedBlockId: InstructionEventsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type InstructionBlocksByInstructionEventInstructionIdAndCreatedBlockIdManyToManyEdgeInstructionEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEventsByUpdatedBlockId: InstructionEventsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type InstructionBlocksByInstructionEventInstructionIdAndUpdatedBlockIdManyToManyEdgeInstructionEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionParty`. */ +export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionParty`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionParty`. */ +export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionParty`. */ +export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionParty`. */ + instructionPartiesByCreatedBlockId: InstructionPartiesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionParty`. */ +export type InstructionBlocksByInstructionPartyInstructionIdAndCreatedBlockIdManyToManyEdgeInstructionPartiesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionParty`. */ +export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionParty`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionParty`. */ +export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionParty`. */ +export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionParty`. */ + instructionPartiesByUpdatedBlockId: InstructionPartiesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionParty`. */ +export type InstructionBlocksByInstructionPartyInstructionIdAndUpdatedBlockIdManyToManyEdgeInstructionPartiesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Leg`. */ +export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Leg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Leg`. */ +export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Leg`. */ +export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Leg`. */ + legsByCreatedBlockId: LegsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Leg`. */ +export type InstructionBlocksByLegInstructionIdAndCreatedBlockIdManyToManyEdgeLegsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Leg`. */ +export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Leg`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Leg`. */ +export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Leg`. */ +export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Leg`. */ + legsByUpdatedBlockId: LegsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Leg`. */ +export type InstructionBlocksByLegInstructionIdAndUpdatedBlockIdManyToManyEdgeLegsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type InstructionDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; + failureReason?: InputMaybe; + id?: InputMaybe; + mediators?: InputMaybe; + memo?: InputMaybe; + status?: InputMaybe; + tradeDate?: InputMaybe; + type?: InputMaybe; + updatedBlockId?: InputMaybe; + valueDate?: InputMaybe; + venueId?: InputMaybe; +}; + +export type InstructionDistinctCountAggregates = { + __typename?: 'InstructionDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of endAfterBlock across the matching connection */ + endAfterBlock?: Maybe; + /** Distinct count of endBlock across the matching connection */ + endBlock?: Maybe; + /** Distinct count of failureReason across the matching connection */ + failureReason?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of mediators across the matching connection */ + mediators?: Maybe; + /** Distinct count of memo across the matching connection */ + memo?: Maybe; + /** Distinct count of status across the matching connection */ + status?: Maybe; + /** Distinct count of tradeDate across the matching connection */ + tradeDate?: Maybe; + /** Distinct count of type across the matching connection */ + type?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; + /** Distinct count of valueDate across the matching connection */ + valueDate?: Maybe; + /** Distinct count of venueId across the matching connection */ + venueId?: Maybe; +}; + +export type InstructionEvent = Node & { + __typename?: 'InstructionEvent'; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `InstructionEvent`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + event: InstructionEventEnum; + eventIdx: Scalars['Int']['output']; + failureReason?: Maybe; + id: Scalars['String']['output']; + identity?: Maybe; + /** Reads a single `Instruction` that is related to this `InstructionEvent`. */ + instruction?: Maybe; + instructionId: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `OffChainReceipt` that is related to this `InstructionEvent`. */ + offChainReceipt?: Maybe; + offChainReceiptId?: Maybe; + portfolio?: Maybe; + /** Reads a single `Block` that is related to this `InstructionEvent`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type InstructionEventAggregates = { + __typename?: 'InstructionEventAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `InstructionEvent` object types. */ +export type InstructionEventAggregatesFilter = { + /** Mean average aggregate over matching `InstructionEvent` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `InstructionEvent` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `InstructionEvent` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `InstructionEvent` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `InstructionEvent` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `InstructionEvent` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `InstructionEvent` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `InstructionEvent` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `InstructionEvent` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `InstructionEvent` objects. */ + varianceSample?: InputMaybe; +}; + +export type InstructionEventAverageAggregateFilter = { + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventAverageAggregates = { + __typename?: 'InstructionEventAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of portfolio across the matching connection */ + portfolio?: Maybe; +}; + +export type InstructionEventDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + event?: InputMaybe; + eventIdx?: InputMaybe; + failureReason?: InputMaybe; + id?: InputMaybe; + identity?: InputMaybe; + instructionId?: InputMaybe; + offChainReceiptId?: InputMaybe; + portfolio?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type InstructionEventDistinctCountAggregates = { + __typename?: 'InstructionEventDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of event across the matching connection */ + event?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of failureReason across the matching connection */ + failureReason?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identity across the matching connection */ + identity?: Maybe; + /** Distinct count of instructionId across the matching connection */ + instructionId?: Maybe; + /** Distinct count of offChainReceiptId across the matching connection */ + offChainReceiptId?: Maybe; + /** Distinct count of portfolio across the matching connection */ + portfolio?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +export enum InstructionEventEnum { + AffirmationWithdrawn = 'AffirmationWithdrawn', + FailedToExecuteInstruction = 'FailedToExecuteInstruction', + InstructionAffirmed = 'InstructionAffirmed', + InstructionAutomaticallyAffirmed = 'InstructionAutomaticallyAffirmed', + InstructionCreated = 'InstructionCreated', + InstructionExecuted = 'InstructionExecuted', + InstructionFailed = 'InstructionFailed', + InstructionMediators = 'InstructionMediators', + InstructionRejected = 'InstructionRejected', + InstructionRescheduled = 'InstructionRescheduled', + LegFailedExecution = 'LegFailedExecution', + MediatorAffirmationReceived = 'MediatorAffirmationReceived', + MediatorAffirmationWithdrawn = 'MediatorAffirmationWithdrawn', + ReceiptClaimed = 'ReceiptClaimed', + SchedulingFailed = 'SchedulingFailed', + SettlementManuallyExecuted = 'SettlementManuallyExecuted', + VenueCreated = 'VenueCreated', + VenueDetailsUpdated = 'VenueDetailsUpdated', + VenueFiltering = 'VenueFiltering', + VenueSignersUpdated = 'VenueSignersUpdated', + VenueTypeUpdated = 'VenueTypeUpdated', + VenueUnauthorized = 'VenueUnauthorized', + VenuesAllowed = 'VenuesAllowed', + VenuesBlocked = 'VenuesBlocked', +} + +/** A filter to be used against InstructionEventEnum fields. All fields are combined with a logical ‘and.’ */ +export type InstructionEventEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +/** A filter to be used against `InstructionEvent` object types. All fields are combined with a logical ‘and.’ */ +export type InstructionEventFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `event` field. */ + event?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `failureReason` field. */ + failureReason?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` field. */ + identity?: InputMaybe; + /** Filter by the object’s `instruction` relation. */ + instruction?: InputMaybe; + /** Filter by the object’s `instructionId` field. */ + instructionId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Filter by the object’s `offChainReceipt` relation. */ + offChainReceipt?: InputMaybe; + /** A related `offChainReceipt` exists. */ + offChainReceiptExists?: InputMaybe; + /** Filter by the object’s `offChainReceiptId` field. */ + offChainReceiptId?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `portfolio` field. */ + portfolio?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type InstructionEventMaxAggregateFilter = { + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventMaxAggregates = { + __typename?: 'InstructionEventMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of portfolio across the matching connection */ + portfolio?: Maybe; +}; + +export type InstructionEventMinAggregateFilter = { + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventMinAggregates = { + __typename?: 'InstructionEventMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of portfolio across the matching connection */ + portfolio?: Maybe; +}; + +export type InstructionEventStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventStddevPopulationAggregates = { + __typename?: 'InstructionEventStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of portfolio across the matching connection */ + portfolio?: Maybe; +}; + +export type InstructionEventStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventStddevSampleAggregates = { + __typename?: 'InstructionEventStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of portfolio across the matching connection */ + portfolio?: Maybe; +}; + +export type InstructionEventSumAggregateFilter = { + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventSumAggregates = { + __typename?: 'InstructionEventSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of portfolio across the matching connection */ + portfolio: Scalars['BigInt']['output']; +}; + +export type InstructionEventVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventVariancePopulationAggregates = { + __typename?: 'InstructionEventVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of portfolio across the matching connection */ + portfolio?: Maybe; +}; + +export type InstructionEventVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventVarianceSampleAggregates = { + __typename?: 'InstructionEventVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of portfolio across the matching connection */ + portfolio?: Maybe; +}; + +/** A connection to a list of `InstructionEvent` values. */ +export type InstructionEventsConnection = { + __typename?: 'InstructionEventsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `InstructionEvent` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `InstructionEvent` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `InstructionEvent` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `InstructionEvent` values. */ +export type InstructionEventsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `InstructionEvent` edge in the connection. */ +export type InstructionEventsEdge = { + __typename?: 'InstructionEventsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `InstructionEvent` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `InstructionEvent` for usage during aggregation. */ +export enum InstructionEventsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Event = 'EVENT', + EventIdx = 'EVENT_IDX', + FailureReason = 'FAILURE_REASON', + Id = 'ID', + Identity = 'IDENTITY', + InstructionId = 'INSTRUCTION_ID', + OffChainReceiptId = 'OFF_CHAIN_RECEIPT_ID', + Portfolio = 'PORTFOLIO', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type InstructionEventsHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventsHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +/** Conditions for `InstructionEvent` aggregates. */ +export type InstructionEventsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type InstructionEventsHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventsHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventsHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventsHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +export type InstructionEventsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; + portfolio?: InputMaybe; +}; + +/** Methods to use when ordering `InstructionEvent`. */ +export enum InstructionEventsOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + EventAsc = 'EVENT_ASC', + EventDesc = 'EVENT_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + FailureReasonAsc = 'FAILURE_REASON_ASC', + FailureReasonDesc = 'FAILURE_REASON_DESC', + IdentityAsc = 'IDENTITY_ASC', + IdentityDesc = 'IDENTITY_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + InstructionIdAsc = 'INSTRUCTION_ID_ASC', + InstructionIdDesc = 'INSTRUCTION_ID_DESC', + Natural = 'NATURAL', + OffChainReceiptIdAsc = 'OFF_CHAIN_RECEIPT_ID_ASC', + OffChainReceiptIdDesc = 'OFF_CHAIN_RECEIPT_ID_DESC', + PortfolioAsc = 'PORTFOLIO_ASC', + PortfolioDesc = 'PORTFOLIO_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** A filter to be used against `Instruction` object types. All fields are combined with a logical ‘and.’ */ +export type InstructionFilter = { + /** Filter by the object’s `affirmations` relation. */ + affirmations?: InputMaybe; + /** Some related `affirmations` exist. */ + affirmationsExist?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `assetTransactions` relation. */ + assetTransactions?: InputMaybe; + /** Some related `assetTransactions` exist. */ + assetTransactionsExist?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `endAfterBlock` field. */ + endAfterBlock?: InputMaybe; + /** Filter by the object’s `endBlock` field. */ + endBlock?: InputMaybe; + /** Filter by the object’s `events` relation. */ + events?: InputMaybe; + /** Some related `events` exist. */ + eventsExist?: InputMaybe; + /** Filter by the object’s `failureReason` field. */ + failureReason?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `legs` relation. */ + legs?: InputMaybe; + /** Some related `legs` exist. */ + legsExist?: InputMaybe; + /** Filter by the object’s `mediators` field. */ + mediators?: InputMaybe; + /** Filter by the object’s `memo` field. */ + memo?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `parties` relation. */ + parties?: InputMaybe; + /** Some related `parties` exist. */ + partiesExist?: InputMaybe; + /** Filter by the object’s `status` field. */ + status?: InputMaybe; + /** Filter by the object’s `tradeDate` field. */ + tradeDate?: InputMaybe; + /** Filter by the object’s `type` field. */ + type?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `valueDate` field. */ + valueDate?: InputMaybe; + /** Filter by the object’s `venue` relation. */ + venue?: InputMaybe; + /** Filter by the object’s `venueId` field. */ + venueId?: InputMaybe; +}; + +/** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ +export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyConnection = + { + __typename?: 'InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `InstructionParty` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `InstructionParty` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ +export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyEdge = + { + __typename?: 'InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `InstructionParty` at the end of the edge. */ + node?: Maybe; + }; + +/** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionInstructionPartiesByInstructionAffirmationInstructionIdAndPartyIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type InstructionMaxAggregateFilter = { + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; +}; + +export type InstructionMaxAggregates = { + __typename?: 'InstructionMaxAggregates'; + /** Maximum of endAfterBlock across the matching connection */ + endAfterBlock?: Maybe; + /** Maximum of endBlock across the matching connection */ + endBlock?: Maybe; +}; + +export type InstructionMinAggregateFilter = { + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; +}; + +export type InstructionMinAggregates = { + __typename?: 'InstructionMinAggregates'; + /** Minimum of endAfterBlock across the matching connection */ + endAfterBlock?: Maybe; + /** Minimum of endBlock across the matching connection */ + endBlock?: Maybe; +}; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ +export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ +export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmations: InstructionAffirmationsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionOffChainReceiptsByInstructionAffirmationInstructionIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ +export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionEvent`. */ +export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ +export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEvents: InstructionEventsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionEvent`. */ +export type InstructionOffChainReceiptsByInstructionEventInstructionIdAndOffChainReceiptIdManyToManyEdgeInstructionEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `InstructionParty` values. */ +export type InstructionPartiesConnection = { + __typename?: 'InstructionPartiesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `InstructionParty` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `InstructionParty` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `InstructionParty` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `InstructionParty` values. */ +export type InstructionPartiesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `InstructionParty` edge in the connection. */ +export type InstructionPartiesEdge = { + __typename?: 'InstructionPartiesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `InstructionParty` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `InstructionParty` for usage during aggregation. */ +export enum InstructionPartiesGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + Identity = 'IDENTITY', + InstructionId = 'INSTRUCTION_ID', + IsMediator = 'IS_MEDIATOR', + Portfolios = 'PORTFOLIOS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type InstructionPartiesHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type InstructionPartiesHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `InstructionParty` aggregates. */ +export type InstructionPartiesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type InstructionPartiesHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type InstructionPartiesHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type InstructionPartiesHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type InstructionPartiesHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type InstructionPartiesHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type InstructionPartiesHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type InstructionPartiesHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `InstructionParty`. */ +export enum InstructionPartiesOrderBy { + AffirmationsAverageBlockRangeAsc = 'AFFIRMATIONS_AVERAGE_BLOCK_RANGE_ASC', + AffirmationsAverageBlockRangeDesc = 'AFFIRMATIONS_AVERAGE_BLOCK_RANGE_DESC', + AffirmationsAverageCreatedAtAsc = 'AFFIRMATIONS_AVERAGE_CREATED_AT_ASC', + AffirmationsAverageCreatedAtDesc = 'AFFIRMATIONS_AVERAGE_CREATED_AT_DESC', + AffirmationsAverageCreatedBlockIdAsc = 'AFFIRMATIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + AffirmationsAverageCreatedBlockIdDesc = 'AFFIRMATIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + AffirmationsAverageExpiryAsc = 'AFFIRMATIONS_AVERAGE_EXPIRY_ASC', + AffirmationsAverageExpiryDesc = 'AFFIRMATIONS_AVERAGE_EXPIRY_DESC', + AffirmationsAverageIdentityAsc = 'AFFIRMATIONS_AVERAGE_IDENTITY_ASC', + AffirmationsAverageIdentityDesc = 'AFFIRMATIONS_AVERAGE_IDENTITY_DESC', + AffirmationsAverageIdAsc = 'AFFIRMATIONS_AVERAGE_ID_ASC', + AffirmationsAverageIdDesc = 'AFFIRMATIONS_AVERAGE_ID_DESC', + AffirmationsAverageInstructionIdAsc = 'AFFIRMATIONS_AVERAGE_INSTRUCTION_ID_ASC', + AffirmationsAverageInstructionIdDesc = 'AFFIRMATIONS_AVERAGE_INSTRUCTION_ID_DESC', + AffirmationsAverageIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_AVERAGE_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsAverageIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_AVERAGE_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsAverageIsMediatorAsc = 'AFFIRMATIONS_AVERAGE_IS_MEDIATOR_ASC', + AffirmationsAverageIsMediatorDesc = 'AFFIRMATIONS_AVERAGE_IS_MEDIATOR_DESC', + AffirmationsAverageOffChainReceiptIdAsc = 'AFFIRMATIONS_AVERAGE_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsAverageOffChainReceiptIdDesc = 'AFFIRMATIONS_AVERAGE_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsAveragePartyIdAsc = 'AFFIRMATIONS_AVERAGE_PARTY_ID_ASC', + AffirmationsAveragePartyIdDesc = 'AFFIRMATIONS_AVERAGE_PARTY_ID_DESC', + AffirmationsAveragePortfoliosAsc = 'AFFIRMATIONS_AVERAGE_PORTFOLIOS_ASC', + AffirmationsAveragePortfoliosDesc = 'AFFIRMATIONS_AVERAGE_PORTFOLIOS_DESC', + AffirmationsAverageStatusAsc = 'AFFIRMATIONS_AVERAGE_STATUS_ASC', + AffirmationsAverageStatusDesc = 'AFFIRMATIONS_AVERAGE_STATUS_DESC', + AffirmationsAverageUpdatedBlockIdAsc = 'AFFIRMATIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + AffirmationsAverageUpdatedBlockIdDesc = 'AFFIRMATIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + AffirmationsCountAsc = 'AFFIRMATIONS_COUNT_ASC', + AffirmationsCountDesc = 'AFFIRMATIONS_COUNT_DESC', + AffirmationsDistinctCountBlockRangeAsc = 'AFFIRMATIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AffirmationsDistinctCountBlockRangeDesc = 'AFFIRMATIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AffirmationsDistinctCountCreatedAtAsc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_AT_ASC', + AffirmationsDistinctCountCreatedAtDesc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_AT_DESC', + AffirmationsDistinctCountCreatedBlockIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AffirmationsDistinctCountCreatedBlockIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AffirmationsDistinctCountExpiryAsc = 'AFFIRMATIONS_DISTINCT_COUNT_EXPIRY_ASC', + AffirmationsDistinctCountExpiryDesc = 'AFFIRMATIONS_DISTINCT_COUNT_EXPIRY_DESC', + AffirmationsDistinctCountIdentityAsc = 'AFFIRMATIONS_DISTINCT_COUNT_IDENTITY_ASC', + AffirmationsDistinctCountIdentityDesc = 'AFFIRMATIONS_DISTINCT_COUNT_IDENTITY_DESC', + AffirmationsDistinctCountIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_ID_ASC', + AffirmationsDistinctCountIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_ID_DESC', + AffirmationsDistinctCountInstructionIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + AffirmationsDistinctCountInstructionIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + AffirmationsDistinctCountIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_DISTINCT_COUNT_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsDistinctCountIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_DISTINCT_COUNT_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsDistinctCountIsMediatorAsc = 'AFFIRMATIONS_DISTINCT_COUNT_IS_MEDIATOR_ASC', + AffirmationsDistinctCountIsMediatorDesc = 'AFFIRMATIONS_DISTINCT_COUNT_IS_MEDIATOR_DESC', + AffirmationsDistinctCountOffChainReceiptIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsDistinctCountOffChainReceiptIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsDistinctCountPartyIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_PARTY_ID_ASC', + AffirmationsDistinctCountPartyIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_PARTY_ID_DESC', + AffirmationsDistinctCountPortfoliosAsc = 'AFFIRMATIONS_DISTINCT_COUNT_PORTFOLIOS_ASC', + AffirmationsDistinctCountPortfoliosDesc = 'AFFIRMATIONS_DISTINCT_COUNT_PORTFOLIOS_DESC', + AffirmationsDistinctCountStatusAsc = 'AFFIRMATIONS_DISTINCT_COUNT_STATUS_ASC', + AffirmationsDistinctCountStatusDesc = 'AFFIRMATIONS_DISTINCT_COUNT_STATUS_DESC', + AffirmationsDistinctCountUpdatedBlockIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AffirmationsDistinctCountUpdatedBlockIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AffirmationsMaxBlockRangeAsc = 'AFFIRMATIONS_MAX_BLOCK_RANGE_ASC', + AffirmationsMaxBlockRangeDesc = 'AFFIRMATIONS_MAX_BLOCK_RANGE_DESC', + AffirmationsMaxCreatedAtAsc = 'AFFIRMATIONS_MAX_CREATED_AT_ASC', + AffirmationsMaxCreatedAtDesc = 'AFFIRMATIONS_MAX_CREATED_AT_DESC', + AffirmationsMaxCreatedBlockIdAsc = 'AFFIRMATIONS_MAX_CREATED_BLOCK_ID_ASC', + AffirmationsMaxCreatedBlockIdDesc = 'AFFIRMATIONS_MAX_CREATED_BLOCK_ID_DESC', + AffirmationsMaxExpiryAsc = 'AFFIRMATIONS_MAX_EXPIRY_ASC', + AffirmationsMaxExpiryDesc = 'AFFIRMATIONS_MAX_EXPIRY_DESC', + AffirmationsMaxIdentityAsc = 'AFFIRMATIONS_MAX_IDENTITY_ASC', + AffirmationsMaxIdentityDesc = 'AFFIRMATIONS_MAX_IDENTITY_DESC', + AffirmationsMaxIdAsc = 'AFFIRMATIONS_MAX_ID_ASC', + AffirmationsMaxIdDesc = 'AFFIRMATIONS_MAX_ID_DESC', + AffirmationsMaxInstructionIdAsc = 'AFFIRMATIONS_MAX_INSTRUCTION_ID_ASC', + AffirmationsMaxInstructionIdDesc = 'AFFIRMATIONS_MAX_INSTRUCTION_ID_DESC', + AffirmationsMaxIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_MAX_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsMaxIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_MAX_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsMaxIsMediatorAsc = 'AFFIRMATIONS_MAX_IS_MEDIATOR_ASC', + AffirmationsMaxIsMediatorDesc = 'AFFIRMATIONS_MAX_IS_MEDIATOR_DESC', + AffirmationsMaxOffChainReceiptIdAsc = 'AFFIRMATIONS_MAX_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsMaxOffChainReceiptIdDesc = 'AFFIRMATIONS_MAX_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsMaxPartyIdAsc = 'AFFIRMATIONS_MAX_PARTY_ID_ASC', + AffirmationsMaxPartyIdDesc = 'AFFIRMATIONS_MAX_PARTY_ID_DESC', + AffirmationsMaxPortfoliosAsc = 'AFFIRMATIONS_MAX_PORTFOLIOS_ASC', + AffirmationsMaxPortfoliosDesc = 'AFFIRMATIONS_MAX_PORTFOLIOS_DESC', + AffirmationsMaxStatusAsc = 'AFFIRMATIONS_MAX_STATUS_ASC', + AffirmationsMaxStatusDesc = 'AFFIRMATIONS_MAX_STATUS_DESC', + AffirmationsMaxUpdatedBlockIdAsc = 'AFFIRMATIONS_MAX_UPDATED_BLOCK_ID_ASC', + AffirmationsMaxUpdatedBlockIdDesc = 'AFFIRMATIONS_MAX_UPDATED_BLOCK_ID_DESC', + AffirmationsMinBlockRangeAsc = 'AFFIRMATIONS_MIN_BLOCK_RANGE_ASC', + AffirmationsMinBlockRangeDesc = 'AFFIRMATIONS_MIN_BLOCK_RANGE_DESC', + AffirmationsMinCreatedAtAsc = 'AFFIRMATIONS_MIN_CREATED_AT_ASC', + AffirmationsMinCreatedAtDesc = 'AFFIRMATIONS_MIN_CREATED_AT_DESC', + AffirmationsMinCreatedBlockIdAsc = 'AFFIRMATIONS_MIN_CREATED_BLOCK_ID_ASC', + AffirmationsMinCreatedBlockIdDesc = 'AFFIRMATIONS_MIN_CREATED_BLOCK_ID_DESC', + AffirmationsMinExpiryAsc = 'AFFIRMATIONS_MIN_EXPIRY_ASC', + AffirmationsMinExpiryDesc = 'AFFIRMATIONS_MIN_EXPIRY_DESC', + AffirmationsMinIdentityAsc = 'AFFIRMATIONS_MIN_IDENTITY_ASC', + AffirmationsMinIdentityDesc = 'AFFIRMATIONS_MIN_IDENTITY_DESC', + AffirmationsMinIdAsc = 'AFFIRMATIONS_MIN_ID_ASC', + AffirmationsMinIdDesc = 'AFFIRMATIONS_MIN_ID_DESC', + AffirmationsMinInstructionIdAsc = 'AFFIRMATIONS_MIN_INSTRUCTION_ID_ASC', + AffirmationsMinInstructionIdDesc = 'AFFIRMATIONS_MIN_INSTRUCTION_ID_DESC', + AffirmationsMinIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_MIN_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsMinIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_MIN_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsMinIsMediatorAsc = 'AFFIRMATIONS_MIN_IS_MEDIATOR_ASC', + AffirmationsMinIsMediatorDesc = 'AFFIRMATIONS_MIN_IS_MEDIATOR_DESC', + AffirmationsMinOffChainReceiptIdAsc = 'AFFIRMATIONS_MIN_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsMinOffChainReceiptIdDesc = 'AFFIRMATIONS_MIN_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsMinPartyIdAsc = 'AFFIRMATIONS_MIN_PARTY_ID_ASC', + AffirmationsMinPartyIdDesc = 'AFFIRMATIONS_MIN_PARTY_ID_DESC', + AffirmationsMinPortfoliosAsc = 'AFFIRMATIONS_MIN_PORTFOLIOS_ASC', + AffirmationsMinPortfoliosDesc = 'AFFIRMATIONS_MIN_PORTFOLIOS_DESC', + AffirmationsMinStatusAsc = 'AFFIRMATIONS_MIN_STATUS_ASC', + AffirmationsMinStatusDesc = 'AFFIRMATIONS_MIN_STATUS_DESC', + AffirmationsMinUpdatedBlockIdAsc = 'AFFIRMATIONS_MIN_UPDATED_BLOCK_ID_ASC', + AffirmationsMinUpdatedBlockIdDesc = 'AFFIRMATIONS_MIN_UPDATED_BLOCK_ID_DESC', + AffirmationsStddevPopulationBlockRangeAsc = 'AFFIRMATIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AffirmationsStddevPopulationBlockRangeDesc = 'AFFIRMATIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AffirmationsStddevPopulationCreatedAtAsc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_AT_ASC', + AffirmationsStddevPopulationCreatedAtDesc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_AT_DESC', + AffirmationsStddevPopulationCreatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AffirmationsStddevPopulationCreatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AffirmationsStddevPopulationExpiryAsc = 'AFFIRMATIONS_STDDEV_POPULATION_EXPIRY_ASC', + AffirmationsStddevPopulationExpiryDesc = 'AFFIRMATIONS_STDDEV_POPULATION_EXPIRY_DESC', + AffirmationsStddevPopulationIdentityAsc = 'AFFIRMATIONS_STDDEV_POPULATION_IDENTITY_ASC', + AffirmationsStddevPopulationIdentityDesc = 'AFFIRMATIONS_STDDEV_POPULATION_IDENTITY_DESC', + AffirmationsStddevPopulationIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_ID_ASC', + AffirmationsStddevPopulationIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_ID_DESC', + AffirmationsStddevPopulationInstructionIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + AffirmationsStddevPopulationInstructionIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + AffirmationsStddevPopulationIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_STDDEV_POPULATION_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsStddevPopulationIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_STDDEV_POPULATION_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsStddevPopulationIsMediatorAsc = 'AFFIRMATIONS_STDDEV_POPULATION_IS_MEDIATOR_ASC', + AffirmationsStddevPopulationIsMediatorDesc = 'AFFIRMATIONS_STDDEV_POPULATION_IS_MEDIATOR_DESC', + AffirmationsStddevPopulationOffChainReceiptIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsStddevPopulationOffChainReceiptIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsStddevPopulationPartyIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_PARTY_ID_ASC', + AffirmationsStddevPopulationPartyIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_PARTY_ID_DESC', + AffirmationsStddevPopulationPortfoliosAsc = 'AFFIRMATIONS_STDDEV_POPULATION_PORTFOLIOS_ASC', + AffirmationsStddevPopulationPortfoliosDesc = 'AFFIRMATIONS_STDDEV_POPULATION_PORTFOLIOS_DESC', + AffirmationsStddevPopulationStatusAsc = 'AFFIRMATIONS_STDDEV_POPULATION_STATUS_ASC', + AffirmationsStddevPopulationStatusDesc = 'AFFIRMATIONS_STDDEV_POPULATION_STATUS_DESC', + AffirmationsStddevPopulationUpdatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AffirmationsStddevPopulationUpdatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AffirmationsStddevSampleBlockRangeAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AffirmationsStddevSampleBlockRangeDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AffirmationsStddevSampleCreatedAtAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + AffirmationsStddevSampleCreatedAtDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + AffirmationsStddevSampleCreatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AffirmationsStddevSampleCreatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AffirmationsStddevSampleExpiryAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_EXPIRY_ASC', + AffirmationsStddevSampleExpiryDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_EXPIRY_DESC', + AffirmationsStddevSampleIdentityAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_IDENTITY_ASC', + AffirmationsStddevSampleIdentityDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_IDENTITY_DESC', + AffirmationsStddevSampleIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_ID_ASC', + AffirmationsStddevSampleIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_ID_DESC', + AffirmationsStddevSampleInstructionIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + AffirmationsStddevSampleInstructionIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + AffirmationsStddevSampleIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsStddevSampleIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsStddevSampleIsMediatorAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_IS_MEDIATOR_ASC', + AffirmationsStddevSampleIsMediatorDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_IS_MEDIATOR_DESC', + AffirmationsStddevSampleOffChainReceiptIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsStddevSampleOffChainReceiptIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsStddevSamplePartyIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_PARTY_ID_ASC', + AffirmationsStddevSamplePartyIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_PARTY_ID_DESC', + AffirmationsStddevSamplePortfoliosAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_PORTFOLIOS_ASC', + AffirmationsStddevSamplePortfoliosDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_PORTFOLIOS_DESC', + AffirmationsStddevSampleStatusAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_STATUS_ASC', + AffirmationsStddevSampleStatusDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_STATUS_DESC', + AffirmationsStddevSampleUpdatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AffirmationsStddevSampleUpdatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AffirmationsSumBlockRangeAsc = 'AFFIRMATIONS_SUM_BLOCK_RANGE_ASC', + AffirmationsSumBlockRangeDesc = 'AFFIRMATIONS_SUM_BLOCK_RANGE_DESC', + AffirmationsSumCreatedAtAsc = 'AFFIRMATIONS_SUM_CREATED_AT_ASC', + AffirmationsSumCreatedAtDesc = 'AFFIRMATIONS_SUM_CREATED_AT_DESC', + AffirmationsSumCreatedBlockIdAsc = 'AFFIRMATIONS_SUM_CREATED_BLOCK_ID_ASC', + AffirmationsSumCreatedBlockIdDesc = 'AFFIRMATIONS_SUM_CREATED_BLOCK_ID_DESC', + AffirmationsSumExpiryAsc = 'AFFIRMATIONS_SUM_EXPIRY_ASC', + AffirmationsSumExpiryDesc = 'AFFIRMATIONS_SUM_EXPIRY_DESC', + AffirmationsSumIdentityAsc = 'AFFIRMATIONS_SUM_IDENTITY_ASC', + AffirmationsSumIdentityDesc = 'AFFIRMATIONS_SUM_IDENTITY_DESC', + AffirmationsSumIdAsc = 'AFFIRMATIONS_SUM_ID_ASC', + AffirmationsSumIdDesc = 'AFFIRMATIONS_SUM_ID_DESC', + AffirmationsSumInstructionIdAsc = 'AFFIRMATIONS_SUM_INSTRUCTION_ID_ASC', + AffirmationsSumInstructionIdDesc = 'AFFIRMATIONS_SUM_INSTRUCTION_ID_DESC', + AffirmationsSumIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_SUM_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsSumIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_SUM_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsSumIsMediatorAsc = 'AFFIRMATIONS_SUM_IS_MEDIATOR_ASC', + AffirmationsSumIsMediatorDesc = 'AFFIRMATIONS_SUM_IS_MEDIATOR_DESC', + AffirmationsSumOffChainReceiptIdAsc = 'AFFIRMATIONS_SUM_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsSumOffChainReceiptIdDesc = 'AFFIRMATIONS_SUM_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsSumPartyIdAsc = 'AFFIRMATIONS_SUM_PARTY_ID_ASC', + AffirmationsSumPartyIdDesc = 'AFFIRMATIONS_SUM_PARTY_ID_DESC', + AffirmationsSumPortfoliosAsc = 'AFFIRMATIONS_SUM_PORTFOLIOS_ASC', + AffirmationsSumPortfoliosDesc = 'AFFIRMATIONS_SUM_PORTFOLIOS_DESC', + AffirmationsSumStatusAsc = 'AFFIRMATIONS_SUM_STATUS_ASC', + AffirmationsSumStatusDesc = 'AFFIRMATIONS_SUM_STATUS_DESC', + AffirmationsSumUpdatedBlockIdAsc = 'AFFIRMATIONS_SUM_UPDATED_BLOCK_ID_ASC', + AffirmationsSumUpdatedBlockIdDesc = 'AFFIRMATIONS_SUM_UPDATED_BLOCK_ID_DESC', + AffirmationsVariancePopulationBlockRangeAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AffirmationsVariancePopulationBlockRangeDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AffirmationsVariancePopulationCreatedAtAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + AffirmationsVariancePopulationCreatedAtDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + AffirmationsVariancePopulationCreatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AffirmationsVariancePopulationCreatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AffirmationsVariancePopulationExpiryAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_EXPIRY_ASC', + AffirmationsVariancePopulationExpiryDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_EXPIRY_DESC', + AffirmationsVariancePopulationIdentityAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_IDENTITY_ASC', + AffirmationsVariancePopulationIdentityDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_IDENTITY_DESC', + AffirmationsVariancePopulationIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_ID_ASC', + AffirmationsVariancePopulationIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_ID_DESC', + AffirmationsVariancePopulationInstructionIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + AffirmationsVariancePopulationInstructionIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + AffirmationsVariancePopulationIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsVariancePopulationIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsVariancePopulationIsMediatorAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_IS_MEDIATOR_ASC', + AffirmationsVariancePopulationIsMediatorDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_IS_MEDIATOR_DESC', + AffirmationsVariancePopulationOffChainReceiptIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsVariancePopulationOffChainReceiptIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsVariancePopulationPartyIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_PARTY_ID_ASC', + AffirmationsVariancePopulationPartyIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_PARTY_ID_DESC', + AffirmationsVariancePopulationPortfoliosAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_PORTFOLIOS_ASC', + AffirmationsVariancePopulationPortfoliosDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_PORTFOLIOS_DESC', + AffirmationsVariancePopulationStatusAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_STATUS_ASC', + AffirmationsVariancePopulationStatusDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_STATUS_DESC', + AffirmationsVariancePopulationUpdatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AffirmationsVariancePopulationUpdatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AffirmationsVarianceSampleBlockRangeAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AffirmationsVarianceSampleBlockRangeDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AffirmationsVarianceSampleCreatedAtAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + AffirmationsVarianceSampleCreatedAtDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + AffirmationsVarianceSampleCreatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AffirmationsVarianceSampleCreatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AffirmationsVarianceSampleExpiryAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_EXPIRY_ASC', + AffirmationsVarianceSampleExpiryDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_EXPIRY_DESC', + AffirmationsVarianceSampleIdentityAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IDENTITY_ASC', + AffirmationsVarianceSampleIdentityDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IDENTITY_DESC', + AffirmationsVarianceSampleIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_ID_ASC', + AffirmationsVarianceSampleIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_ID_DESC', + AffirmationsVarianceSampleInstructionIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + AffirmationsVarianceSampleInstructionIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + AffirmationsVarianceSampleIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsVarianceSampleIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsVarianceSampleIsMediatorAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IS_MEDIATOR_ASC', + AffirmationsVarianceSampleIsMediatorDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IS_MEDIATOR_DESC', + AffirmationsVarianceSampleOffChainReceiptIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsVarianceSampleOffChainReceiptIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsVarianceSamplePartyIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PARTY_ID_ASC', + AffirmationsVarianceSamplePartyIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PARTY_ID_DESC', + AffirmationsVarianceSamplePortfoliosAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PORTFOLIOS_ASC', + AffirmationsVarianceSamplePortfoliosDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PORTFOLIOS_DESC', + AffirmationsVarianceSampleStatusAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_STATUS_ASC', + AffirmationsVarianceSampleStatusDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_STATUS_DESC', + AffirmationsVarianceSampleUpdatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AffirmationsVarianceSampleUpdatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdentityAsc = 'IDENTITY_ASC', + IdentityDesc = 'IDENTITY_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + InstructionIdAsc = 'INSTRUCTION_ID_ASC', + InstructionIdDesc = 'INSTRUCTION_ID_DESC', + IsMediatorAsc = 'IS_MEDIATOR_ASC', + IsMediatorDesc = 'IS_MEDIATOR_DESC', + Natural = 'NATURAL', + PortfoliosAsc = 'PORTFOLIOS_ASC', + PortfoliosDesc = 'PORTFOLIOS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type InstructionParty = Node & { + __typename?: 'InstructionParty'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionAffirmationPartyIdAndCreatedBlockId: InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionAffirmationPartyIdAndUpdatedBlockId: InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `InstructionParty`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** `identity` is the DID of the party involved in the instruction. No mapping to Identity is added, since instruction can have leg (e.g. off chain) where DID doesn't exists */ + identity: Scalars['String']['output']; + /** Reads a single `Instruction` that is related to this `InstructionParty`. */ + instruction?: Maybe; + instructionId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByInstructionAffirmationPartyIdAndInstructionId: InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyConnection; + isMediator: Scalars['Boolean']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptId: InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyConnection; + /** `portfolios` depicts which portfolios for the identity are involved in the instructions. Legs can have different portfolios of a same identity involved */ + portfolios?: Maybe; + /** Reads a single `Block` that is related to this `InstructionParty`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type InstructionPartyAffirmationsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type InstructionPartyPortfoliosArgs = { + distinct?: InputMaybe>>; +}; + +export type InstructionPartyAggregates = { + __typename?: 'InstructionPartyAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `InstructionParty` object types. */ +export type InstructionPartyAggregatesFilter = { + /** Distinct count aggregate over matching `InstructionParty` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `InstructionParty` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByCreatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByUpdatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionPartyBlocksByInstructionAffirmationPartyIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type InstructionPartyDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + identity?: InputMaybe; + instructionId?: InputMaybe; + isMediator?: InputMaybe; + portfolios?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type InstructionPartyDistinctCountAggregates = { + __typename?: 'InstructionPartyDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identity across the matching connection */ + identity?: Maybe; + /** Distinct count of instructionId across the matching connection */ + instructionId?: Maybe; + /** Distinct count of isMediator across the matching connection */ + isMediator?: Maybe; + /** Distinct count of portfolios across the matching connection */ + portfolios?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `InstructionParty` object types. All fields are combined with a logical ‘and.’ */ +export type InstructionPartyFilter = { + /** Filter by the object’s `affirmations` relation. */ + affirmations?: InputMaybe; + /** Some related `affirmations` exist. */ + affirmationsExist?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` field. */ + identity?: InputMaybe; + /** Filter by the object’s `instruction` relation. */ + instruction?: InputMaybe; + /** Filter by the object’s `instructionId` field. */ + instructionId?: InputMaybe; + /** Filter by the object’s `isMediator` field. */ + isMediator?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `portfolios` field. */ + portfolios?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ +export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyConnection = + { + __typename?: 'InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ +export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyEdge = + { + __typename?: 'InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionPartyInstructionsByInstructionAffirmationPartyIdAndInstructionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ +export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyConnection = + { + __typename?: 'InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `OffChainReceipt` values, with data from `InstructionAffirmation`. */ +export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyEdge = + { + __typename?: 'InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmations: InstructionAffirmationsConnection; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; + }; + +/** A `OffChainReceipt` edge in the connection, with data from `InstructionAffirmation`. */ +export type InstructionPartyOffChainReceiptsByInstructionAffirmationPartyIdAndOffChainReceiptIdManyToManyEdgeInstructionAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A filter to be used against many `InstructionAffirmation` object types. All fields are combined with a logical ‘and.’ */ +export type InstructionPartyToManyInstructionAffirmationFilter = { + /** Aggregates across related `InstructionAffirmation` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnection = + { + __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyEdge = { + __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByFromPortfolioId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type InstructionPortfoliosByAssetTransactionInstructionIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnection = + { + __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyEdge = { + __typename?: 'InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByToPortfolioId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type InstructionPortfoliosByAssetTransactionInstructionIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** Represents all possible states of an Instruction */ +export enum InstructionStatusEnum { + Created = 'Created', + Executed = 'Executed', + Failed = 'Failed', + Rejected = 'Rejected', +} + +/** A filter to be used against InstructionStatusEnum fields. All fields are combined with a logical ‘and.’ */ +export type InstructionStatusEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type InstructionStddevPopulationAggregateFilter = { + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; +}; + +export type InstructionStddevPopulationAggregates = { + __typename?: 'InstructionStddevPopulationAggregates'; + /** Population standard deviation of endAfterBlock across the matching connection */ + endAfterBlock?: Maybe; + /** Population standard deviation of endBlock across the matching connection */ + endBlock?: Maybe; +}; + +export type InstructionStddevSampleAggregateFilter = { + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; +}; + +export type InstructionStddevSampleAggregates = { + __typename?: 'InstructionStddevSampleAggregates'; + /** Sample standard deviation of endAfterBlock across the matching connection */ + endAfterBlock?: Maybe; + /** Sample standard deviation of endBlock across the matching connection */ + endBlock?: Maybe; +}; + +export type InstructionSumAggregateFilter = { + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; +}; + +export type InstructionSumAggregates = { + __typename?: 'InstructionSumAggregates'; + /** Sum of endAfterBlock across the matching connection */ + endAfterBlock: Scalars['BigInt']['output']; + /** Sum of endBlock across the matching connection */ + endBlock: Scalars['BigInt']['output']; +}; + +/** A filter to be used against many `AssetTransaction` object types. All fields are combined with a logical ‘and.’ */ +export type InstructionToManyAssetTransactionFilter = { + /** Aggregates across related `AssetTransaction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `InstructionAffirmation` object types. All fields are combined with a logical ‘and.’ */ +export type InstructionToManyInstructionAffirmationFilter = { + /** Aggregates across related `InstructionAffirmation` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `InstructionEvent` object types. All fields are combined with a logical ‘and.’ */ +export type InstructionToManyInstructionEventFilter = { + /** Aggregates across related `InstructionEvent` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `InstructionEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `InstructionEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `InstructionEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `InstructionParty` object types. All fields are combined with a logical ‘and.’ */ +export type InstructionToManyInstructionPartyFilter = { + /** Aggregates across related `InstructionParty` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `InstructionParty` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `InstructionParty` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `InstructionParty` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Leg` object types. All fields are combined with a logical ‘and.’ */ +export type InstructionToManyLegFilter = { + /** Aggregates across related `Leg` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Leg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Leg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Leg` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** Represents types of an Instruction */ +export enum InstructionTypeEnum { + SettleManual = 'SettleManual', + SettleOnAffirmation = 'SettleOnAffirmation', + SettleOnBlock = 'SettleOnBlock', +} + +/** A filter to be used against InstructionTypeEnum fields. All fields are combined with a logical ‘and.’ */ +export type InstructionTypeEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type InstructionVariancePopulationAggregateFilter = { + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; +}; + +export type InstructionVariancePopulationAggregates = { + __typename?: 'InstructionVariancePopulationAggregates'; + /** Population variance of endAfterBlock across the matching connection */ + endAfterBlock?: Maybe; + /** Population variance of endBlock across the matching connection */ + endBlock?: Maybe; +}; + +export type InstructionVarianceSampleAggregateFilter = { + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; +}; + +export type InstructionVarianceSampleAggregates = { + __typename?: 'InstructionVarianceSampleAggregates'; + /** Sample variance of endAfterBlock across the matching connection */ + endAfterBlock?: Maybe; + /** Sample variance of endBlock across the matching connection */ + endBlock?: Maybe; +}; + +/** A connection to a list of `Instruction` values. */ +export type InstructionsConnection = { + __typename?: 'InstructionsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Instruction` values. */ +export type InstructionsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Instruction` edge in the connection. */ +export type InstructionsEdge = { + __typename?: 'InstructionsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Instruction` for usage during aggregation. */ +export enum InstructionsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + EndAfterBlock = 'END_AFTER_BLOCK', + EndBlock = 'END_BLOCK', + FailureReason = 'FAILURE_REASON', + Id = 'ID', + Mediators = 'MEDIATORS', + Memo = 'MEMO', + Status = 'STATUS', + TradeDate = 'TRADE_DATE', + TradeDateTruncatedToDay = 'TRADE_DATE_TRUNCATED_TO_DAY', + TradeDateTruncatedToHour = 'TRADE_DATE_TRUNCATED_TO_HOUR', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + ValueDate = 'VALUE_DATE', + ValueDateTruncatedToDay = 'VALUE_DATE_TRUNCATED_TO_DAY', + ValueDateTruncatedToHour = 'VALUE_DATE_TRUNCATED_TO_HOUR', + VenueId = 'VENUE_ID', +} + +export type InstructionsHavingAverageInput = { + createdAt?: InputMaybe; + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; + tradeDate?: InputMaybe; + valueDate?: InputMaybe; +}; + +export type InstructionsHavingDistinctCountInput = { + createdAt?: InputMaybe; + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; + tradeDate?: InputMaybe; + valueDate?: InputMaybe; +}; + +/** Conditions for `Instruction` aggregates. */ +export type InstructionsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type InstructionsHavingMaxInput = { + createdAt?: InputMaybe; + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; + tradeDate?: InputMaybe; + valueDate?: InputMaybe; +}; + +export type InstructionsHavingMinInput = { + createdAt?: InputMaybe; + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; + tradeDate?: InputMaybe; + valueDate?: InputMaybe; +}; + +export type InstructionsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; + tradeDate?: InputMaybe; + valueDate?: InputMaybe; +}; + +export type InstructionsHavingStddevSampleInput = { + createdAt?: InputMaybe; + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; + tradeDate?: InputMaybe; + valueDate?: InputMaybe; +}; + +export type InstructionsHavingSumInput = { + createdAt?: InputMaybe; + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; + tradeDate?: InputMaybe; + valueDate?: InputMaybe; +}; + +export type InstructionsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; + tradeDate?: InputMaybe; + valueDate?: InputMaybe; +}; + +export type InstructionsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + endAfterBlock?: InputMaybe; + endBlock?: InputMaybe; + tradeDate?: InputMaybe; + valueDate?: InputMaybe; +}; + +/** Methods to use when ordering `Instruction`. */ +export enum InstructionsOrderBy { + AffirmationsAverageBlockRangeAsc = 'AFFIRMATIONS_AVERAGE_BLOCK_RANGE_ASC', + AffirmationsAverageBlockRangeDesc = 'AFFIRMATIONS_AVERAGE_BLOCK_RANGE_DESC', + AffirmationsAverageCreatedAtAsc = 'AFFIRMATIONS_AVERAGE_CREATED_AT_ASC', + AffirmationsAverageCreatedAtDesc = 'AFFIRMATIONS_AVERAGE_CREATED_AT_DESC', + AffirmationsAverageCreatedBlockIdAsc = 'AFFIRMATIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + AffirmationsAverageCreatedBlockIdDesc = 'AFFIRMATIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + AffirmationsAverageExpiryAsc = 'AFFIRMATIONS_AVERAGE_EXPIRY_ASC', + AffirmationsAverageExpiryDesc = 'AFFIRMATIONS_AVERAGE_EXPIRY_DESC', + AffirmationsAverageIdentityAsc = 'AFFIRMATIONS_AVERAGE_IDENTITY_ASC', + AffirmationsAverageIdentityDesc = 'AFFIRMATIONS_AVERAGE_IDENTITY_DESC', + AffirmationsAverageIdAsc = 'AFFIRMATIONS_AVERAGE_ID_ASC', + AffirmationsAverageIdDesc = 'AFFIRMATIONS_AVERAGE_ID_DESC', + AffirmationsAverageInstructionIdAsc = 'AFFIRMATIONS_AVERAGE_INSTRUCTION_ID_ASC', + AffirmationsAverageInstructionIdDesc = 'AFFIRMATIONS_AVERAGE_INSTRUCTION_ID_DESC', + AffirmationsAverageIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_AVERAGE_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsAverageIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_AVERAGE_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsAverageIsMediatorAsc = 'AFFIRMATIONS_AVERAGE_IS_MEDIATOR_ASC', + AffirmationsAverageIsMediatorDesc = 'AFFIRMATIONS_AVERAGE_IS_MEDIATOR_DESC', + AffirmationsAverageOffChainReceiptIdAsc = 'AFFIRMATIONS_AVERAGE_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsAverageOffChainReceiptIdDesc = 'AFFIRMATIONS_AVERAGE_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsAveragePartyIdAsc = 'AFFIRMATIONS_AVERAGE_PARTY_ID_ASC', + AffirmationsAveragePartyIdDesc = 'AFFIRMATIONS_AVERAGE_PARTY_ID_DESC', + AffirmationsAveragePortfoliosAsc = 'AFFIRMATIONS_AVERAGE_PORTFOLIOS_ASC', + AffirmationsAveragePortfoliosDesc = 'AFFIRMATIONS_AVERAGE_PORTFOLIOS_DESC', + AffirmationsAverageStatusAsc = 'AFFIRMATIONS_AVERAGE_STATUS_ASC', + AffirmationsAverageStatusDesc = 'AFFIRMATIONS_AVERAGE_STATUS_DESC', + AffirmationsAverageUpdatedBlockIdAsc = 'AFFIRMATIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + AffirmationsAverageUpdatedBlockIdDesc = 'AFFIRMATIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + AffirmationsCountAsc = 'AFFIRMATIONS_COUNT_ASC', + AffirmationsCountDesc = 'AFFIRMATIONS_COUNT_DESC', + AffirmationsDistinctCountBlockRangeAsc = 'AFFIRMATIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AffirmationsDistinctCountBlockRangeDesc = 'AFFIRMATIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AffirmationsDistinctCountCreatedAtAsc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_AT_ASC', + AffirmationsDistinctCountCreatedAtDesc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_AT_DESC', + AffirmationsDistinctCountCreatedBlockIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AffirmationsDistinctCountCreatedBlockIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AffirmationsDistinctCountExpiryAsc = 'AFFIRMATIONS_DISTINCT_COUNT_EXPIRY_ASC', + AffirmationsDistinctCountExpiryDesc = 'AFFIRMATIONS_DISTINCT_COUNT_EXPIRY_DESC', + AffirmationsDistinctCountIdentityAsc = 'AFFIRMATIONS_DISTINCT_COUNT_IDENTITY_ASC', + AffirmationsDistinctCountIdentityDesc = 'AFFIRMATIONS_DISTINCT_COUNT_IDENTITY_DESC', + AffirmationsDistinctCountIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_ID_ASC', + AffirmationsDistinctCountIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_ID_DESC', + AffirmationsDistinctCountInstructionIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + AffirmationsDistinctCountInstructionIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + AffirmationsDistinctCountIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_DISTINCT_COUNT_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsDistinctCountIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_DISTINCT_COUNT_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsDistinctCountIsMediatorAsc = 'AFFIRMATIONS_DISTINCT_COUNT_IS_MEDIATOR_ASC', + AffirmationsDistinctCountIsMediatorDesc = 'AFFIRMATIONS_DISTINCT_COUNT_IS_MEDIATOR_DESC', + AffirmationsDistinctCountOffChainReceiptIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsDistinctCountOffChainReceiptIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsDistinctCountPartyIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_PARTY_ID_ASC', + AffirmationsDistinctCountPartyIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_PARTY_ID_DESC', + AffirmationsDistinctCountPortfoliosAsc = 'AFFIRMATIONS_DISTINCT_COUNT_PORTFOLIOS_ASC', + AffirmationsDistinctCountPortfoliosDesc = 'AFFIRMATIONS_DISTINCT_COUNT_PORTFOLIOS_DESC', + AffirmationsDistinctCountStatusAsc = 'AFFIRMATIONS_DISTINCT_COUNT_STATUS_ASC', + AffirmationsDistinctCountStatusDesc = 'AFFIRMATIONS_DISTINCT_COUNT_STATUS_DESC', + AffirmationsDistinctCountUpdatedBlockIdAsc = 'AFFIRMATIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AffirmationsDistinctCountUpdatedBlockIdDesc = 'AFFIRMATIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AffirmationsMaxBlockRangeAsc = 'AFFIRMATIONS_MAX_BLOCK_RANGE_ASC', + AffirmationsMaxBlockRangeDesc = 'AFFIRMATIONS_MAX_BLOCK_RANGE_DESC', + AffirmationsMaxCreatedAtAsc = 'AFFIRMATIONS_MAX_CREATED_AT_ASC', + AffirmationsMaxCreatedAtDesc = 'AFFIRMATIONS_MAX_CREATED_AT_DESC', + AffirmationsMaxCreatedBlockIdAsc = 'AFFIRMATIONS_MAX_CREATED_BLOCK_ID_ASC', + AffirmationsMaxCreatedBlockIdDesc = 'AFFIRMATIONS_MAX_CREATED_BLOCK_ID_DESC', + AffirmationsMaxExpiryAsc = 'AFFIRMATIONS_MAX_EXPIRY_ASC', + AffirmationsMaxExpiryDesc = 'AFFIRMATIONS_MAX_EXPIRY_DESC', + AffirmationsMaxIdentityAsc = 'AFFIRMATIONS_MAX_IDENTITY_ASC', + AffirmationsMaxIdentityDesc = 'AFFIRMATIONS_MAX_IDENTITY_DESC', + AffirmationsMaxIdAsc = 'AFFIRMATIONS_MAX_ID_ASC', + AffirmationsMaxIdDesc = 'AFFIRMATIONS_MAX_ID_DESC', + AffirmationsMaxInstructionIdAsc = 'AFFIRMATIONS_MAX_INSTRUCTION_ID_ASC', + AffirmationsMaxInstructionIdDesc = 'AFFIRMATIONS_MAX_INSTRUCTION_ID_DESC', + AffirmationsMaxIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_MAX_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsMaxIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_MAX_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsMaxIsMediatorAsc = 'AFFIRMATIONS_MAX_IS_MEDIATOR_ASC', + AffirmationsMaxIsMediatorDesc = 'AFFIRMATIONS_MAX_IS_MEDIATOR_DESC', + AffirmationsMaxOffChainReceiptIdAsc = 'AFFIRMATIONS_MAX_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsMaxOffChainReceiptIdDesc = 'AFFIRMATIONS_MAX_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsMaxPartyIdAsc = 'AFFIRMATIONS_MAX_PARTY_ID_ASC', + AffirmationsMaxPartyIdDesc = 'AFFIRMATIONS_MAX_PARTY_ID_DESC', + AffirmationsMaxPortfoliosAsc = 'AFFIRMATIONS_MAX_PORTFOLIOS_ASC', + AffirmationsMaxPortfoliosDesc = 'AFFIRMATIONS_MAX_PORTFOLIOS_DESC', + AffirmationsMaxStatusAsc = 'AFFIRMATIONS_MAX_STATUS_ASC', + AffirmationsMaxStatusDesc = 'AFFIRMATIONS_MAX_STATUS_DESC', + AffirmationsMaxUpdatedBlockIdAsc = 'AFFIRMATIONS_MAX_UPDATED_BLOCK_ID_ASC', + AffirmationsMaxUpdatedBlockIdDesc = 'AFFIRMATIONS_MAX_UPDATED_BLOCK_ID_DESC', + AffirmationsMinBlockRangeAsc = 'AFFIRMATIONS_MIN_BLOCK_RANGE_ASC', + AffirmationsMinBlockRangeDesc = 'AFFIRMATIONS_MIN_BLOCK_RANGE_DESC', + AffirmationsMinCreatedAtAsc = 'AFFIRMATIONS_MIN_CREATED_AT_ASC', + AffirmationsMinCreatedAtDesc = 'AFFIRMATIONS_MIN_CREATED_AT_DESC', + AffirmationsMinCreatedBlockIdAsc = 'AFFIRMATIONS_MIN_CREATED_BLOCK_ID_ASC', + AffirmationsMinCreatedBlockIdDesc = 'AFFIRMATIONS_MIN_CREATED_BLOCK_ID_DESC', + AffirmationsMinExpiryAsc = 'AFFIRMATIONS_MIN_EXPIRY_ASC', + AffirmationsMinExpiryDesc = 'AFFIRMATIONS_MIN_EXPIRY_DESC', + AffirmationsMinIdentityAsc = 'AFFIRMATIONS_MIN_IDENTITY_ASC', + AffirmationsMinIdentityDesc = 'AFFIRMATIONS_MIN_IDENTITY_DESC', + AffirmationsMinIdAsc = 'AFFIRMATIONS_MIN_ID_ASC', + AffirmationsMinIdDesc = 'AFFIRMATIONS_MIN_ID_DESC', + AffirmationsMinInstructionIdAsc = 'AFFIRMATIONS_MIN_INSTRUCTION_ID_ASC', + AffirmationsMinInstructionIdDesc = 'AFFIRMATIONS_MIN_INSTRUCTION_ID_DESC', + AffirmationsMinIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_MIN_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsMinIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_MIN_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsMinIsMediatorAsc = 'AFFIRMATIONS_MIN_IS_MEDIATOR_ASC', + AffirmationsMinIsMediatorDesc = 'AFFIRMATIONS_MIN_IS_MEDIATOR_DESC', + AffirmationsMinOffChainReceiptIdAsc = 'AFFIRMATIONS_MIN_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsMinOffChainReceiptIdDesc = 'AFFIRMATIONS_MIN_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsMinPartyIdAsc = 'AFFIRMATIONS_MIN_PARTY_ID_ASC', + AffirmationsMinPartyIdDesc = 'AFFIRMATIONS_MIN_PARTY_ID_DESC', + AffirmationsMinPortfoliosAsc = 'AFFIRMATIONS_MIN_PORTFOLIOS_ASC', + AffirmationsMinPortfoliosDesc = 'AFFIRMATIONS_MIN_PORTFOLIOS_DESC', + AffirmationsMinStatusAsc = 'AFFIRMATIONS_MIN_STATUS_ASC', + AffirmationsMinStatusDesc = 'AFFIRMATIONS_MIN_STATUS_DESC', + AffirmationsMinUpdatedBlockIdAsc = 'AFFIRMATIONS_MIN_UPDATED_BLOCK_ID_ASC', + AffirmationsMinUpdatedBlockIdDesc = 'AFFIRMATIONS_MIN_UPDATED_BLOCK_ID_DESC', + AffirmationsStddevPopulationBlockRangeAsc = 'AFFIRMATIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AffirmationsStddevPopulationBlockRangeDesc = 'AFFIRMATIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AffirmationsStddevPopulationCreatedAtAsc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_AT_ASC', + AffirmationsStddevPopulationCreatedAtDesc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_AT_DESC', + AffirmationsStddevPopulationCreatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AffirmationsStddevPopulationCreatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AffirmationsStddevPopulationExpiryAsc = 'AFFIRMATIONS_STDDEV_POPULATION_EXPIRY_ASC', + AffirmationsStddevPopulationExpiryDesc = 'AFFIRMATIONS_STDDEV_POPULATION_EXPIRY_DESC', + AffirmationsStddevPopulationIdentityAsc = 'AFFIRMATIONS_STDDEV_POPULATION_IDENTITY_ASC', + AffirmationsStddevPopulationIdentityDesc = 'AFFIRMATIONS_STDDEV_POPULATION_IDENTITY_DESC', + AffirmationsStddevPopulationIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_ID_ASC', + AffirmationsStddevPopulationIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_ID_DESC', + AffirmationsStddevPopulationInstructionIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + AffirmationsStddevPopulationInstructionIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + AffirmationsStddevPopulationIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_STDDEV_POPULATION_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsStddevPopulationIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_STDDEV_POPULATION_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsStddevPopulationIsMediatorAsc = 'AFFIRMATIONS_STDDEV_POPULATION_IS_MEDIATOR_ASC', + AffirmationsStddevPopulationIsMediatorDesc = 'AFFIRMATIONS_STDDEV_POPULATION_IS_MEDIATOR_DESC', + AffirmationsStddevPopulationOffChainReceiptIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsStddevPopulationOffChainReceiptIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsStddevPopulationPartyIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_PARTY_ID_ASC', + AffirmationsStddevPopulationPartyIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_PARTY_ID_DESC', + AffirmationsStddevPopulationPortfoliosAsc = 'AFFIRMATIONS_STDDEV_POPULATION_PORTFOLIOS_ASC', + AffirmationsStddevPopulationPortfoliosDesc = 'AFFIRMATIONS_STDDEV_POPULATION_PORTFOLIOS_DESC', + AffirmationsStddevPopulationStatusAsc = 'AFFIRMATIONS_STDDEV_POPULATION_STATUS_ASC', + AffirmationsStddevPopulationStatusDesc = 'AFFIRMATIONS_STDDEV_POPULATION_STATUS_DESC', + AffirmationsStddevPopulationUpdatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AffirmationsStddevPopulationUpdatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AffirmationsStddevSampleBlockRangeAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AffirmationsStddevSampleBlockRangeDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AffirmationsStddevSampleCreatedAtAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + AffirmationsStddevSampleCreatedAtDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + AffirmationsStddevSampleCreatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AffirmationsStddevSampleCreatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AffirmationsStddevSampleExpiryAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_EXPIRY_ASC', + AffirmationsStddevSampleExpiryDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_EXPIRY_DESC', + AffirmationsStddevSampleIdentityAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_IDENTITY_ASC', + AffirmationsStddevSampleIdentityDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_IDENTITY_DESC', + AffirmationsStddevSampleIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_ID_ASC', + AffirmationsStddevSampleIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_ID_DESC', + AffirmationsStddevSampleInstructionIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + AffirmationsStddevSampleInstructionIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + AffirmationsStddevSampleIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsStddevSampleIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsStddevSampleIsMediatorAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_IS_MEDIATOR_ASC', + AffirmationsStddevSampleIsMediatorDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_IS_MEDIATOR_DESC', + AffirmationsStddevSampleOffChainReceiptIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsStddevSampleOffChainReceiptIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsStddevSamplePartyIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_PARTY_ID_ASC', + AffirmationsStddevSamplePartyIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_PARTY_ID_DESC', + AffirmationsStddevSamplePortfoliosAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_PORTFOLIOS_ASC', + AffirmationsStddevSamplePortfoliosDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_PORTFOLIOS_DESC', + AffirmationsStddevSampleStatusAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_STATUS_ASC', + AffirmationsStddevSampleStatusDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_STATUS_DESC', + AffirmationsStddevSampleUpdatedBlockIdAsc = 'AFFIRMATIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AffirmationsStddevSampleUpdatedBlockIdDesc = 'AFFIRMATIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AffirmationsSumBlockRangeAsc = 'AFFIRMATIONS_SUM_BLOCK_RANGE_ASC', + AffirmationsSumBlockRangeDesc = 'AFFIRMATIONS_SUM_BLOCK_RANGE_DESC', + AffirmationsSumCreatedAtAsc = 'AFFIRMATIONS_SUM_CREATED_AT_ASC', + AffirmationsSumCreatedAtDesc = 'AFFIRMATIONS_SUM_CREATED_AT_DESC', + AffirmationsSumCreatedBlockIdAsc = 'AFFIRMATIONS_SUM_CREATED_BLOCK_ID_ASC', + AffirmationsSumCreatedBlockIdDesc = 'AFFIRMATIONS_SUM_CREATED_BLOCK_ID_DESC', + AffirmationsSumExpiryAsc = 'AFFIRMATIONS_SUM_EXPIRY_ASC', + AffirmationsSumExpiryDesc = 'AFFIRMATIONS_SUM_EXPIRY_DESC', + AffirmationsSumIdentityAsc = 'AFFIRMATIONS_SUM_IDENTITY_ASC', + AffirmationsSumIdentityDesc = 'AFFIRMATIONS_SUM_IDENTITY_DESC', + AffirmationsSumIdAsc = 'AFFIRMATIONS_SUM_ID_ASC', + AffirmationsSumIdDesc = 'AFFIRMATIONS_SUM_ID_DESC', + AffirmationsSumInstructionIdAsc = 'AFFIRMATIONS_SUM_INSTRUCTION_ID_ASC', + AffirmationsSumInstructionIdDesc = 'AFFIRMATIONS_SUM_INSTRUCTION_ID_DESC', + AffirmationsSumIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_SUM_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsSumIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_SUM_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsSumIsMediatorAsc = 'AFFIRMATIONS_SUM_IS_MEDIATOR_ASC', + AffirmationsSumIsMediatorDesc = 'AFFIRMATIONS_SUM_IS_MEDIATOR_DESC', + AffirmationsSumOffChainReceiptIdAsc = 'AFFIRMATIONS_SUM_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsSumOffChainReceiptIdDesc = 'AFFIRMATIONS_SUM_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsSumPartyIdAsc = 'AFFIRMATIONS_SUM_PARTY_ID_ASC', + AffirmationsSumPartyIdDesc = 'AFFIRMATIONS_SUM_PARTY_ID_DESC', + AffirmationsSumPortfoliosAsc = 'AFFIRMATIONS_SUM_PORTFOLIOS_ASC', + AffirmationsSumPortfoliosDesc = 'AFFIRMATIONS_SUM_PORTFOLIOS_DESC', + AffirmationsSumStatusAsc = 'AFFIRMATIONS_SUM_STATUS_ASC', + AffirmationsSumStatusDesc = 'AFFIRMATIONS_SUM_STATUS_DESC', + AffirmationsSumUpdatedBlockIdAsc = 'AFFIRMATIONS_SUM_UPDATED_BLOCK_ID_ASC', + AffirmationsSumUpdatedBlockIdDesc = 'AFFIRMATIONS_SUM_UPDATED_BLOCK_ID_DESC', + AffirmationsVariancePopulationBlockRangeAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AffirmationsVariancePopulationBlockRangeDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AffirmationsVariancePopulationCreatedAtAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + AffirmationsVariancePopulationCreatedAtDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + AffirmationsVariancePopulationCreatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AffirmationsVariancePopulationCreatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AffirmationsVariancePopulationExpiryAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_EXPIRY_ASC', + AffirmationsVariancePopulationExpiryDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_EXPIRY_DESC', + AffirmationsVariancePopulationIdentityAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_IDENTITY_ASC', + AffirmationsVariancePopulationIdentityDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_IDENTITY_DESC', + AffirmationsVariancePopulationIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_ID_ASC', + AffirmationsVariancePopulationIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_ID_DESC', + AffirmationsVariancePopulationInstructionIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + AffirmationsVariancePopulationInstructionIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + AffirmationsVariancePopulationIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsVariancePopulationIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsVariancePopulationIsMediatorAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_IS_MEDIATOR_ASC', + AffirmationsVariancePopulationIsMediatorDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_IS_MEDIATOR_DESC', + AffirmationsVariancePopulationOffChainReceiptIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsVariancePopulationOffChainReceiptIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsVariancePopulationPartyIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_PARTY_ID_ASC', + AffirmationsVariancePopulationPartyIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_PARTY_ID_DESC', + AffirmationsVariancePopulationPortfoliosAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_PORTFOLIOS_ASC', + AffirmationsVariancePopulationPortfoliosDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_PORTFOLIOS_DESC', + AffirmationsVariancePopulationStatusAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_STATUS_ASC', + AffirmationsVariancePopulationStatusDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_STATUS_DESC', + AffirmationsVariancePopulationUpdatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AffirmationsVariancePopulationUpdatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AffirmationsVarianceSampleBlockRangeAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AffirmationsVarianceSampleBlockRangeDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AffirmationsVarianceSampleCreatedAtAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + AffirmationsVarianceSampleCreatedAtDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + AffirmationsVarianceSampleCreatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AffirmationsVarianceSampleCreatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AffirmationsVarianceSampleExpiryAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_EXPIRY_ASC', + AffirmationsVarianceSampleExpiryDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_EXPIRY_DESC', + AffirmationsVarianceSampleIdentityAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IDENTITY_ASC', + AffirmationsVarianceSampleIdentityDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IDENTITY_DESC', + AffirmationsVarianceSampleIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_ID_ASC', + AffirmationsVarianceSampleIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_ID_DESC', + AffirmationsVarianceSampleInstructionIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + AffirmationsVarianceSampleInstructionIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + AffirmationsVarianceSampleIsAutomaticallyAffirmedAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_ASC', + AffirmationsVarianceSampleIsAutomaticallyAffirmedDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_DESC', + AffirmationsVarianceSampleIsMediatorAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IS_MEDIATOR_ASC', + AffirmationsVarianceSampleIsMediatorDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_IS_MEDIATOR_DESC', + AffirmationsVarianceSampleOffChainReceiptIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + AffirmationsVarianceSampleOffChainReceiptIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + AffirmationsVarianceSamplePartyIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PARTY_ID_ASC', + AffirmationsVarianceSamplePartyIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PARTY_ID_DESC', + AffirmationsVarianceSamplePortfoliosAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PORTFOLIOS_ASC', + AffirmationsVarianceSamplePortfoliosDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_PORTFOLIOS_DESC', + AffirmationsVarianceSampleStatusAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_STATUS_ASC', + AffirmationsVarianceSampleStatusDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_STATUS_DESC', + AffirmationsVarianceSampleUpdatedBlockIdAsc = 'AFFIRMATIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AffirmationsVarianceSampleUpdatedBlockIdDesc = 'AFFIRMATIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsAverageAmountAsc = 'ASSET_TRANSACTIONS_AVERAGE_AMOUNT_ASC', + AssetTransactionsAverageAmountDesc = 'ASSET_TRANSACTIONS_AVERAGE_AMOUNT_DESC', + AssetTransactionsAverageAssetIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_ASSET_ID_ASC', + AssetTransactionsAverageAssetIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_ASSET_ID_DESC', + AssetTransactionsAverageBlockRangeAsc = 'ASSET_TRANSACTIONS_AVERAGE_BLOCK_RANGE_ASC', + AssetTransactionsAverageBlockRangeDesc = 'ASSET_TRANSACTIONS_AVERAGE_BLOCK_RANGE_DESC', + AssetTransactionsAverageCreatedAtAsc = 'ASSET_TRANSACTIONS_AVERAGE_CREATED_AT_ASC', + AssetTransactionsAverageCreatedAtDesc = 'ASSET_TRANSACTIONS_AVERAGE_CREATED_AT_DESC', + AssetTransactionsAverageCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetTransactionsAverageCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetTransactionsAverageDatetimeAsc = 'ASSET_TRANSACTIONS_AVERAGE_DATETIME_ASC', + AssetTransactionsAverageDatetimeDesc = 'ASSET_TRANSACTIONS_AVERAGE_DATETIME_DESC', + AssetTransactionsAverageEventIdxAsc = 'ASSET_TRANSACTIONS_AVERAGE_EVENT_IDX_ASC', + AssetTransactionsAverageEventIdxDesc = 'ASSET_TRANSACTIONS_AVERAGE_EVENT_IDX_DESC', + AssetTransactionsAverageEventIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_EVENT_ID_ASC', + AssetTransactionsAverageEventIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_EVENT_ID_DESC', + AssetTransactionsAverageExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_AVERAGE_EXTRINSIC_IDX_ASC', + AssetTransactionsAverageExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_AVERAGE_EXTRINSIC_IDX_DESC', + AssetTransactionsAverageFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsAverageFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsAverageFundingRoundAsc = 'ASSET_TRANSACTIONS_AVERAGE_FUNDING_ROUND_ASC', + AssetTransactionsAverageFundingRoundDesc = 'ASSET_TRANSACTIONS_AVERAGE_FUNDING_ROUND_DESC', + AssetTransactionsAverageIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_ID_ASC', + AssetTransactionsAverageIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_ID_DESC', + AssetTransactionsAverageInstructionIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_ID_ASC', + AssetTransactionsAverageInstructionIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_ID_DESC', + AssetTransactionsAverageInstructionMemoAsc = 'ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_MEMO_ASC', + AssetTransactionsAverageInstructionMemoDesc = 'ASSET_TRANSACTIONS_AVERAGE_INSTRUCTION_MEMO_DESC', + AssetTransactionsAverageNftIdsAsc = 'ASSET_TRANSACTIONS_AVERAGE_NFT_IDS_ASC', + AssetTransactionsAverageNftIdsDesc = 'ASSET_TRANSACTIONS_AVERAGE_NFT_IDS_DESC', + AssetTransactionsAverageToPortfolioIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsAverageToPortfolioIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsAverageUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsAverageUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsCountAsc = 'ASSET_TRANSACTIONS_COUNT_ASC', + AssetTransactionsCountDesc = 'ASSET_TRANSACTIONS_COUNT_DESC', + AssetTransactionsDistinctCountAmountAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_AMOUNT_ASC', + AssetTransactionsDistinctCountAmountDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_AMOUNT_DESC', + AssetTransactionsDistinctCountAssetIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_ASSET_ID_ASC', + AssetTransactionsDistinctCountAssetIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_ASSET_ID_DESC', + AssetTransactionsDistinctCountBlockRangeAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetTransactionsDistinctCountBlockRangeDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetTransactionsDistinctCountCreatedAtAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_AT_ASC', + AssetTransactionsDistinctCountCreatedAtDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_AT_DESC', + AssetTransactionsDistinctCountCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetTransactionsDistinctCountCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetTransactionsDistinctCountDatetimeAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_DATETIME_ASC', + AssetTransactionsDistinctCountDatetimeDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_DATETIME_DESC', + AssetTransactionsDistinctCountEventIdxAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_IDX_ASC', + AssetTransactionsDistinctCountEventIdxDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_IDX_DESC', + AssetTransactionsDistinctCountEventIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_ID_ASC', + AssetTransactionsDistinctCountEventIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EVENT_ID_DESC', + AssetTransactionsDistinctCountExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + AssetTransactionsDistinctCountExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + AssetTransactionsDistinctCountFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsDistinctCountFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsDistinctCountFundingRoundAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_FUNDING_ROUND_ASC', + AssetTransactionsDistinctCountFundingRoundDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_FUNDING_ROUND_DESC', + AssetTransactionsDistinctCountIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_ID_ASC', + AssetTransactionsDistinctCountIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_ID_DESC', + AssetTransactionsDistinctCountInstructionIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + AssetTransactionsDistinctCountInstructionIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + AssetTransactionsDistinctCountInstructionMemoAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC', + AssetTransactionsDistinctCountInstructionMemoDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC', + AssetTransactionsDistinctCountNftIdsAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_NFT_IDS_ASC', + AssetTransactionsDistinctCountNftIdsDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_NFT_IDS_DESC', + AssetTransactionsDistinctCountToPortfolioIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC', + AssetTransactionsDistinctCountToPortfolioIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_TO_PORTFOLIO_ID_DESC', + AssetTransactionsDistinctCountUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetTransactionsDistinctCountUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetTransactionsMaxAmountAsc = 'ASSET_TRANSACTIONS_MAX_AMOUNT_ASC', + AssetTransactionsMaxAmountDesc = 'ASSET_TRANSACTIONS_MAX_AMOUNT_DESC', + AssetTransactionsMaxAssetIdAsc = 'ASSET_TRANSACTIONS_MAX_ASSET_ID_ASC', + AssetTransactionsMaxAssetIdDesc = 'ASSET_TRANSACTIONS_MAX_ASSET_ID_DESC', + AssetTransactionsMaxBlockRangeAsc = 'ASSET_TRANSACTIONS_MAX_BLOCK_RANGE_ASC', + AssetTransactionsMaxBlockRangeDesc = 'ASSET_TRANSACTIONS_MAX_BLOCK_RANGE_DESC', + AssetTransactionsMaxCreatedAtAsc = 'ASSET_TRANSACTIONS_MAX_CREATED_AT_ASC', + AssetTransactionsMaxCreatedAtDesc = 'ASSET_TRANSACTIONS_MAX_CREATED_AT_DESC', + AssetTransactionsMaxCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_MAX_CREATED_BLOCK_ID_ASC', + AssetTransactionsMaxCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_MAX_CREATED_BLOCK_ID_DESC', + AssetTransactionsMaxDatetimeAsc = 'ASSET_TRANSACTIONS_MAX_DATETIME_ASC', + AssetTransactionsMaxDatetimeDesc = 'ASSET_TRANSACTIONS_MAX_DATETIME_DESC', + AssetTransactionsMaxEventIdxAsc = 'ASSET_TRANSACTIONS_MAX_EVENT_IDX_ASC', + AssetTransactionsMaxEventIdxDesc = 'ASSET_TRANSACTIONS_MAX_EVENT_IDX_DESC', + AssetTransactionsMaxEventIdAsc = 'ASSET_TRANSACTIONS_MAX_EVENT_ID_ASC', + AssetTransactionsMaxEventIdDesc = 'ASSET_TRANSACTIONS_MAX_EVENT_ID_DESC', + AssetTransactionsMaxExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_MAX_EXTRINSIC_IDX_ASC', + AssetTransactionsMaxExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_MAX_EXTRINSIC_IDX_DESC', + AssetTransactionsMaxFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_MAX_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsMaxFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_MAX_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsMaxFundingRoundAsc = 'ASSET_TRANSACTIONS_MAX_FUNDING_ROUND_ASC', + AssetTransactionsMaxFundingRoundDesc = 'ASSET_TRANSACTIONS_MAX_FUNDING_ROUND_DESC', + AssetTransactionsMaxIdAsc = 'ASSET_TRANSACTIONS_MAX_ID_ASC', + AssetTransactionsMaxIdDesc = 'ASSET_TRANSACTIONS_MAX_ID_DESC', + AssetTransactionsMaxInstructionIdAsc = 'ASSET_TRANSACTIONS_MAX_INSTRUCTION_ID_ASC', + AssetTransactionsMaxInstructionIdDesc = 'ASSET_TRANSACTIONS_MAX_INSTRUCTION_ID_DESC', + AssetTransactionsMaxInstructionMemoAsc = 'ASSET_TRANSACTIONS_MAX_INSTRUCTION_MEMO_ASC', + AssetTransactionsMaxInstructionMemoDesc = 'ASSET_TRANSACTIONS_MAX_INSTRUCTION_MEMO_DESC', + AssetTransactionsMaxNftIdsAsc = 'ASSET_TRANSACTIONS_MAX_NFT_IDS_ASC', + AssetTransactionsMaxNftIdsDesc = 'ASSET_TRANSACTIONS_MAX_NFT_IDS_DESC', + AssetTransactionsMaxToPortfolioIdAsc = 'ASSET_TRANSACTIONS_MAX_TO_PORTFOLIO_ID_ASC', + AssetTransactionsMaxToPortfolioIdDesc = 'ASSET_TRANSACTIONS_MAX_TO_PORTFOLIO_ID_DESC', + AssetTransactionsMaxUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_MAX_UPDATED_BLOCK_ID_ASC', + AssetTransactionsMaxUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_MAX_UPDATED_BLOCK_ID_DESC', + AssetTransactionsMinAmountAsc = 'ASSET_TRANSACTIONS_MIN_AMOUNT_ASC', + AssetTransactionsMinAmountDesc = 'ASSET_TRANSACTIONS_MIN_AMOUNT_DESC', + AssetTransactionsMinAssetIdAsc = 'ASSET_TRANSACTIONS_MIN_ASSET_ID_ASC', + AssetTransactionsMinAssetIdDesc = 'ASSET_TRANSACTIONS_MIN_ASSET_ID_DESC', + AssetTransactionsMinBlockRangeAsc = 'ASSET_TRANSACTIONS_MIN_BLOCK_RANGE_ASC', + AssetTransactionsMinBlockRangeDesc = 'ASSET_TRANSACTIONS_MIN_BLOCK_RANGE_DESC', + AssetTransactionsMinCreatedAtAsc = 'ASSET_TRANSACTIONS_MIN_CREATED_AT_ASC', + AssetTransactionsMinCreatedAtDesc = 'ASSET_TRANSACTIONS_MIN_CREATED_AT_DESC', + AssetTransactionsMinCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_MIN_CREATED_BLOCK_ID_ASC', + AssetTransactionsMinCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_MIN_CREATED_BLOCK_ID_DESC', + AssetTransactionsMinDatetimeAsc = 'ASSET_TRANSACTIONS_MIN_DATETIME_ASC', + AssetTransactionsMinDatetimeDesc = 'ASSET_TRANSACTIONS_MIN_DATETIME_DESC', + AssetTransactionsMinEventIdxAsc = 'ASSET_TRANSACTIONS_MIN_EVENT_IDX_ASC', + AssetTransactionsMinEventIdxDesc = 'ASSET_TRANSACTIONS_MIN_EVENT_IDX_DESC', + AssetTransactionsMinEventIdAsc = 'ASSET_TRANSACTIONS_MIN_EVENT_ID_ASC', + AssetTransactionsMinEventIdDesc = 'ASSET_TRANSACTIONS_MIN_EVENT_ID_DESC', + AssetTransactionsMinExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_MIN_EXTRINSIC_IDX_ASC', + AssetTransactionsMinExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_MIN_EXTRINSIC_IDX_DESC', + AssetTransactionsMinFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_MIN_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsMinFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_MIN_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsMinFundingRoundAsc = 'ASSET_TRANSACTIONS_MIN_FUNDING_ROUND_ASC', + AssetTransactionsMinFundingRoundDesc = 'ASSET_TRANSACTIONS_MIN_FUNDING_ROUND_DESC', + AssetTransactionsMinIdAsc = 'ASSET_TRANSACTIONS_MIN_ID_ASC', + AssetTransactionsMinIdDesc = 'ASSET_TRANSACTIONS_MIN_ID_DESC', + AssetTransactionsMinInstructionIdAsc = 'ASSET_TRANSACTIONS_MIN_INSTRUCTION_ID_ASC', + AssetTransactionsMinInstructionIdDesc = 'ASSET_TRANSACTIONS_MIN_INSTRUCTION_ID_DESC', + AssetTransactionsMinInstructionMemoAsc = 'ASSET_TRANSACTIONS_MIN_INSTRUCTION_MEMO_ASC', + AssetTransactionsMinInstructionMemoDesc = 'ASSET_TRANSACTIONS_MIN_INSTRUCTION_MEMO_DESC', + AssetTransactionsMinNftIdsAsc = 'ASSET_TRANSACTIONS_MIN_NFT_IDS_ASC', + AssetTransactionsMinNftIdsDesc = 'ASSET_TRANSACTIONS_MIN_NFT_IDS_DESC', + AssetTransactionsMinToPortfolioIdAsc = 'ASSET_TRANSACTIONS_MIN_TO_PORTFOLIO_ID_ASC', + AssetTransactionsMinToPortfolioIdDesc = 'ASSET_TRANSACTIONS_MIN_TO_PORTFOLIO_ID_DESC', + AssetTransactionsMinUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_MIN_UPDATED_BLOCK_ID_ASC', + AssetTransactionsMinUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_MIN_UPDATED_BLOCK_ID_DESC', + AssetTransactionsStddevPopulationAmountAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_AMOUNT_ASC', + AssetTransactionsStddevPopulationAmountDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_AMOUNT_DESC', + AssetTransactionsStddevPopulationAssetIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_ASSET_ID_ASC', + AssetTransactionsStddevPopulationAssetIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_ASSET_ID_DESC', + AssetTransactionsStddevPopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsStddevPopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsStddevPopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_AT_ASC', + AssetTransactionsStddevPopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_AT_DESC', + AssetTransactionsStddevPopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsStddevPopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsStddevPopulationDatetimeAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_DATETIME_ASC', + AssetTransactionsStddevPopulationDatetimeDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_DATETIME_DESC', + AssetTransactionsStddevPopulationEventIdxAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_IDX_ASC', + AssetTransactionsStddevPopulationEventIdxDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_IDX_DESC', + AssetTransactionsStddevPopulationEventIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_ID_ASC', + AssetTransactionsStddevPopulationEventIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EVENT_ID_DESC', + AssetTransactionsStddevPopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsStddevPopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsStddevPopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsStddevPopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsStddevPopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsStddevPopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsStddevPopulationIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_ID_ASC', + AssetTransactionsStddevPopulationIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_ID_DESC', + AssetTransactionsStddevPopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsStddevPopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsStddevPopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsStddevPopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsStddevPopulationNftIdsAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_NFT_IDS_ASC', + AssetTransactionsStddevPopulationNftIdsDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_NFT_IDS_DESC', + AssetTransactionsStddevPopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsStddevPopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsStddevPopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsStddevPopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsStddevSampleAmountAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_AMOUNT_ASC', + AssetTransactionsStddevSampleAmountDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_AMOUNT_DESC', + AssetTransactionsStddevSampleAssetIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetTransactionsStddevSampleAssetIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetTransactionsStddevSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsStddevSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsStddevSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetTransactionsStddevSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetTransactionsStddevSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsStddevSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsStddevSampleDatetimeAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_DATETIME_ASC', + AssetTransactionsStddevSampleDatetimeDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_DATETIME_DESC', + AssetTransactionsStddevSampleEventIdxAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsStddevSampleEventIdxDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsStddevSampleEventIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_ID_ASC', + AssetTransactionsStddevSampleEventIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EVENT_ID_DESC', + AssetTransactionsStddevSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsStddevSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsStddevSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsStddevSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsStddevSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsStddevSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsStddevSampleIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_ID_ASC', + AssetTransactionsStddevSampleIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_ID_DESC', + AssetTransactionsStddevSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsStddevSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsStddevSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsStddevSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsStddevSampleNftIdsAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_NFT_IDS_ASC', + AssetTransactionsStddevSampleNftIdsDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_NFT_IDS_DESC', + AssetTransactionsStddevSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsStddevSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsStddevSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsStddevSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsSumAmountAsc = 'ASSET_TRANSACTIONS_SUM_AMOUNT_ASC', + AssetTransactionsSumAmountDesc = 'ASSET_TRANSACTIONS_SUM_AMOUNT_DESC', + AssetTransactionsSumAssetIdAsc = 'ASSET_TRANSACTIONS_SUM_ASSET_ID_ASC', + AssetTransactionsSumAssetIdDesc = 'ASSET_TRANSACTIONS_SUM_ASSET_ID_DESC', + AssetTransactionsSumBlockRangeAsc = 'ASSET_TRANSACTIONS_SUM_BLOCK_RANGE_ASC', + AssetTransactionsSumBlockRangeDesc = 'ASSET_TRANSACTIONS_SUM_BLOCK_RANGE_DESC', + AssetTransactionsSumCreatedAtAsc = 'ASSET_TRANSACTIONS_SUM_CREATED_AT_ASC', + AssetTransactionsSumCreatedAtDesc = 'ASSET_TRANSACTIONS_SUM_CREATED_AT_DESC', + AssetTransactionsSumCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_SUM_CREATED_BLOCK_ID_ASC', + AssetTransactionsSumCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_SUM_CREATED_BLOCK_ID_DESC', + AssetTransactionsSumDatetimeAsc = 'ASSET_TRANSACTIONS_SUM_DATETIME_ASC', + AssetTransactionsSumDatetimeDesc = 'ASSET_TRANSACTIONS_SUM_DATETIME_DESC', + AssetTransactionsSumEventIdxAsc = 'ASSET_TRANSACTIONS_SUM_EVENT_IDX_ASC', + AssetTransactionsSumEventIdxDesc = 'ASSET_TRANSACTIONS_SUM_EVENT_IDX_DESC', + AssetTransactionsSumEventIdAsc = 'ASSET_TRANSACTIONS_SUM_EVENT_ID_ASC', + AssetTransactionsSumEventIdDesc = 'ASSET_TRANSACTIONS_SUM_EVENT_ID_DESC', + AssetTransactionsSumExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_SUM_EXTRINSIC_IDX_ASC', + AssetTransactionsSumExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_SUM_EXTRINSIC_IDX_DESC', + AssetTransactionsSumFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_SUM_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsSumFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_SUM_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsSumFundingRoundAsc = 'ASSET_TRANSACTIONS_SUM_FUNDING_ROUND_ASC', + AssetTransactionsSumFundingRoundDesc = 'ASSET_TRANSACTIONS_SUM_FUNDING_ROUND_DESC', + AssetTransactionsSumIdAsc = 'ASSET_TRANSACTIONS_SUM_ID_ASC', + AssetTransactionsSumIdDesc = 'ASSET_TRANSACTIONS_SUM_ID_DESC', + AssetTransactionsSumInstructionIdAsc = 'ASSET_TRANSACTIONS_SUM_INSTRUCTION_ID_ASC', + AssetTransactionsSumInstructionIdDesc = 'ASSET_TRANSACTIONS_SUM_INSTRUCTION_ID_DESC', + AssetTransactionsSumInstructionMemoAsc = 'ASSET_TRANSACTIONS_SUM_INSTRUCTION_MEMO_ASC', + AssetTransactionsSumInstructionMemoDesc = 'ASSET_TRANSACTIONS_SUM_INSTRUCTION_MEMO_DESC', + AssetTransactionsSumNftIdsAsc = 'ASSET_TRANSACTIONS_SUM_NFT_IDS_ASC', + AssetTransactionsSumNftIdsDesc = 'ASSET_TRANSACTIONS_SUM_NFT_IDS_DESC', + AssetTransactionsSumToPortfolioIdAsc = 'ASSET_TRANSACTIONS_SUM_TO_PORTFOLIO_ID_ASC', + AssetTransactionsSumToPortfolioIdDesc = 'ASSET_TRANSACTIONS_SUM_TO_PORTFOLIO_ID_DESC', + AssetTransactionsSumUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_SUM_UPDATED_BLOCK_ID_ASC', + AssetTransactionsSumUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_SUM_UPDATED_BLOCK_ID_DESC', + AssetTransactionsVariancePopulationAmountAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_AMOUNT_ASC', + AssetTransactionsVariancePopulationAmountDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_AMOUNT_DESC', + AssetTransactionsVariancePopulationAssetIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetTransactionsVariancePopulationAssetIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetTransactionsVariancePopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsVariancePopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsVariancePopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetTransactionsVariancePopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetTransactionsVariancePopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsVariancePopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsVariancePopulationDatetimeAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_DATETIME_ASC', + AssetTransactionsVariancePopulationDatetimeDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_DATETIME_DESC', + AssetTransactionsVariancePopulationEventIdxAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_IDX_ASC', + AssetTransactionsVariancePopulationEventIdxDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_IDX_DESC', + AssetTransactionsVariancePopulationEventIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_ID_ASC', + AssetTransactionsVariancePopulationEventIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EVENT_ID_DESC', + AssetTransactionsVariancePopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsVariancePopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsVariancePopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsVariancePopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsVariancePopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsVariancePopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsVariancePopulationIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_ID_ASC', + AssetTransactionsVariancePopulationIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_ID_DESC', + AssetTransactionsVariancePopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsVariancePopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsVariancePopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsVariancePopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsVariancePopulationNftIdsAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_NFT_IDS_ASC', + AssetTransactionsVariancePopulationNftIdsDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_NFT_IDS_DESC', + AssetTransactionsVariancePopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsVariancePopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsVariancePopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsVariancePopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsVarianceSampleAmountAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_AMOUNT_ASC', + AssetTransactionsVarianceSampleAmountDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_AMOUNT_DESC', + AssetTransactionsVarianceSampleAssetIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetTransactionsVarianceSampleAssetIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetTransactionsVarianceSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsVarianceSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsVarianceSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetTransactionsVarianceSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetTransactionsVarianceSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsVarianceSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsVarianceSampleDatetimeAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_DATETIME_ASC', + AssetTransactionsVarianceSampleDatetimeDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_DATETIME_DESC', + AssetTransactionsVarianceSampleEventIdxAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsVarianceSampleEventIdxDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsVarianceSampleEventIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_ID_ASC', + AssetTransactionsVarianceSampleEventIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EVENT_ID_DESC', + AssetTransactionsVarianceSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsVarianceSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsVarianceSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsVarianceSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsVarianceSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsVarianceSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsVarianceSampleIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ID_ASC', + AssetTransactionsVarianceSampleIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_ID_DESC', + AssetTransactionsVarianceSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsVarianceSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsVarianceSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsVarianceSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsVarianceSampleNftIdsAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_NFT_IDS_ASC', + AssetTransactionsVarianceSampleNftIdsDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_NFT_IDS_DESC', + AssetTransactionsVarianceSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsVarianceSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsVarianceSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsVarianceSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + EndAfterBlockAsc = 'END_AFTER_BLOCK_ASC', + EndAfterBlockDesc = 'END_AFTER_BLOCK_DESC', + EndBlockAsc = 'END_BLOCK_ASC', + EndBlockDesc = 'END_BLOCK_DESC', + EventsAverageBlockRangeAsc = 'EVENTS_AVERAGE_BLOCK_RANGE_ASC', + EventsAverageBlockRangeDesc = 'EVENTS_AVERAGE_BLOCK_RANGE_DESC', + EventsAverageCreatedAtAsc = 'EVENTS_AVERAGE_CREATED_AT_ASC', + EventsAverageCreatedAtDesc = 'EVENTS_AVERAGE_CREATED_AT_DESC', + EventsAverageCreatedBlockIdAsc = 'EVENTS_AVERAGE_CREATED_BLOCK_ID_ASC', + EventsAverageCreatedBlockIdDesc = 'EVENTS_AVERAGE_CREATED_BLOCK_ID_DESC', + EventsAverageEventAsc = 'EVENTS_AVERAGE_EVENT_ASC', + EventsAverageEventDesc = 'EVENTS_AVERAGE_EVENT_DESC', + EventsAverageEventIdxAsc = 'EVENTS_AVERAGE_EVENT_IDX_ASC', + EventsAverageEventIdxDesc = 'EVENTS_AVERAGE_EVENT_IDX_DESC', + EventsAverageFailureReasonAsc = 'EVENTS_AVERAGE_FAILURE_REASON_ASC', + EventsAverageFailureReasonDesc = 'EVENTS_AVERAGE_FAILURE_REASON_DESC', + EventsAverageIdentityAsc = 'EVENTS_AVERAGE_IDENTITY_ASC', + EventsAverageIdentityDesc = 'EVENTS_AVERAGE_IDENTITY_DESC', + EventsAverageIdAsc = 'EVENTS_AVERAGE_ID_ASC', + EventsAverageIdDesc = 'EVENTS_AVERAGE_ID_DESC', + EventsAverageInstructionIdAsc = 'EVENTS_AVERAGE_INSTRUCTION_ID_ASC', + EventsAverageInstructionIdDesc = 'EVENTS_AVERAGE_INSTRUCTION_ID_DESC', + EventsAverageOffChainReceiptIdAsc = 'EVENTS_AVERAGE_OFF_CHAIN_RECEIPT_ID_ASC', + EventsAverageOffChainReceiptIdDesc = 'EVENTS_AVERAGE_OFF_CHAIN_RECEIPT_ID_DESC', + EventsAveragePortfolioAsc = 'EVENTS_AVERAGE_PORTFOLIO_ASC', + EventsAveragePortfolioDesc = 'EVENTS_AVERAGE_PORTFOLIO_DESC', + EventsAverageUpdatedBlockIdAsc = 'EVENTS_AVERAGE_UPDATED_BLOCK_ID_ASC', + EventsAverageUpdatedBlockIdDesc = 'EVENTS_AVERAGE_UPDATED_BLOCK_ID_DESC', + EventsCountAsc = 'EVENTS_COUNT_ASC', + EventsCountDesc = 'EVENTS_COUNT_DESC', + EventsDistinctCountBlockRangeAsc = 'EVENTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + EventsDistinctCountBlockRangeDesc = 'EVENTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + EventsDistinctCountCreatedAtAsc = 'EVENTS_DISTINCT_COUNT_CREATED_AT_ASC', + EventsDistinctCountCreatedAtDesc = 'EVENTS_DISTINCT_COUNT_CREATED_AT_DESC', + EventsDistinctCountCreatedBlockIdAsc = 'EVENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + EventsDistinctCountCreatedBlockIdDesc = 'EVENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + EventsDistinctCountEventAsc = 'EVENTS_DISTINCT_COUNT_EVENT_ASC', + EventsDistinctCountEventDesc = 'EVENTS_DISTINCT_COUNT_EVENT_DESC', + EventsDistinctCountEventIdxAsc = 'EVENTS_DISTINCT_COUNT_EVENT_IDX_ASC', + EventsDistinctCountEventIdxDesc = 'EVENTS_DISTINCT_COUNT_EVENT_IDX_DESC', + EventsDistinctCountFailureReasonAsc = 'EVENTS_DISTINCT_COUNT_FAILURE_REASON_ASC', + EventsDistinctCountFailureReasonDesc = 'EVENTS_DISTINCT_COUNT_FAILURE_REASON_DESC', + EventsDistinctCountIdentityAsc = 'EVENTS_DISTINCT_COUNT_IDENTITY_ASC', + EventsDistinctCountIdentityDesc = 'EVENTS_DISTINCT_COUNT_IDENTITY_DESC', + EventsDistinctCountIdAsc = 'EVENTS_DISTINCT_COUNT_ID_ASC', + EventsDistinctCountIdDesc = 'EVENTS_DISTINCT_COUNT_ID_DESC', + EventsDistinctCountInstructionIdAsc = 'EVENTS_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + EventsDistinctCountInstructionIdDesc = 'EVENTS_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + EventsDistinctCountOffChainReceiptIdAsc = 'EVENTS_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_ASC', + EventsDistinctCountOffChainReceiptIdDesc = 'EVENTS_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_DESC', + EventsDistinctCountPortfolioAsc = 'EVENTS_DISTINCT_COUNT_PORTFOLIO_ASC', + EventsDistinctCountPortfolioDesc = 'EVENTS_DISTINCT_COUNT_PORTFOLIO_DESC', + EventsDistinctCountUpdatedBlockIdAsc = 'EVENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + EventsDistinctCountUpdatedBlockIdDesc = 'EVENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + EventsMaxBlockRangeAsc = 'EVENTS_MAX_BLOCK_RANGE_ASC', + EventsMaxBlockRangeDesc = 'EVENTS_MAX_BLOCK_RANGE_DESC', + EventsMaxCreatedAtAsc = 'EVENTS_MAX_CREATED_AT_ASC', + EventsMaxCreatedAtDesc = 'EVENTS_MAX_CREATED_AT_DESC', + EventsMaxCreatedBlockIdAsc = 'EVENTS_MAX_CREATED_BLOCK_ID_ASC', + EventsMaxCreatedBlockIdDesc = 'EVENTS_MAX_CREATED_BLOCK_ID_DESC', + EventsMaxEventAsc = 'EVENTS_MAX_EVENT_ASC', + EventsMaxEventDesc = 'EVENTS_MAX_EVENT_DESC', + EventsMaxEventIdxAsc = 'EVENTS_MAX_EVENT_IDX_ASC', + EventsMaxEventIdxDesc = 'EVENTS_MAX_EVENT_IDX_DESC', + EventsMaxFailureReasonAsc = 'EVENTS_MAX_FAILURE_REASON_ASC', + EventsMaxFailureReasonDesc = 'EVENTS_MAX_FAILURE_REASON_DESC', + EventsMaxIdentityAsc = 'EVENTS_MAX_IDENTITY_ASC', + EventsMaxIdentityDesc = 'EVENTS_MAX_IDENTITY_DESC', + EventsMaxIdAsc = 'EVENTS_MAX_ID_ASC', + EventsMaxIdDesc = 'EVENTS_MAX_ID_DESC', + EventsMaxInstructionIdAsc = 'EVENTS_MAX_INSTRUCTION_ID_ASC', + EventsMaxInstructionIdDesc = 'EVENTS_MAX_INSTRUCTION_ID_DESC', + EventsMaxOffChainReceiptIdAsc = 'EVENTS_MAX_OFF_CHAIN_RECEIPT_ID_ASC', + EventsMaxOffChainReceiptIdDesc = 'EVENTS_MAX_OFF_CHAIN_RECEIPT_ID_DESC', + EventsMaxPortfolioAsc = 'EVENTS_MAX_PORTFOLIO_ASC', + EventsMaxPortfolioDesc = 'EVENTS_MAX_PORTFOLIO_DESC', + EventsMaxUpdatedBlockIdAsc = 'EVENTS_MAX_UPDATED_BLOCK_ID_ASC', + EventsMaxUpdatedBlockIdDesc = 'EVENTS_MAX_UPDATED_BLOCK_ID_DESC', + EventsMinBlockRangeAsc = 'EVENTS_MIN_BLOCK_RANGE_ASC', + EventsMinBlockRangeDesc = 'EVENTS_MIN_BLOCK_RANGE_DESC', + EventsMinCreatedAtAsc = 'EVENTS_MIN_CREATED_AT_ASC', + EventsMinCreatedAtDesc = 'EVENTS_MIN_CREATED_AT_DESC', + EventsMinCreatedBlockIdAsc = 'EVENTS_MIN_CREATED_BLOCK_ID_ASC', + EventsMinCreatedBlockIdDesc = 'EVENTS_MIN_CREATED_BLOCK_ID_DESC', + EventsMinEventAsc = 'EVENTS_MIN_EVENT_ASC', + EventsMinEventDesc = 'EVENTS_MIN_EVENT_DESC', + EventsMinEventIdxAsc = 'EVENTS_MIN_EVENT_IDX_ASC', + EventsMinEventIdxDesc = 'EVENTS_MIN_EVENT_IDX_DESC', + EventsMinFailureReasonAsc = 'EVENTS_MIN_FAILURE_REASON_ASC', + EventsMinFailureReasonDesc = 'EVENTS_MIN_FAILURE_REASON_DESC', + EventsMinIdentityAsc = 'EVENTS_MIN_IDENTITY_ASC', + EventsMinIdentityDesc = 'EVENTS_MIN_IDENTITY_DESC', + EventsMinIdAsc = 'EVENTS_MIN_ID_ASC', + EventsMinIdDesc = 'EVENTS_MIN_ID_DESC', + EventsMinInstructionIdAsc = 'EVENTS_MIN_INSTRUCTION_ID_ASC', + EventsMinInstructionIdDesc = 'EVENTS_MIN_INSTRUCTION_ID_DESC', + EventsMinOffChainReceiptIdAsc = 'EVENTS_MIN_OFF_CHAIN_RECEIPT_ID_ASC', + EventsMinOffChainReceiptIdDesc = 'EVENTS_MIN_OFF_CHAIN_RECEIPT_ID_DESC', + EventsMinPortfolioAsc = 'EVENTS_MIN_PORTFOLIO_ASC', + EventsMinPortfolioDesc = 'EVENTS_MIN_PORTFOLIO_DESC', + EventsMinUpdatedBlockIdAsc = 'EVENTS_MIN_UPDATED_BLOCK_ID_ASC', + EventsMinUpdatedBlockIdDesc = 'EVENTS_MIN_UPDATED_BLOCK_ID_DESC', + EventsStddevPopulationBlockRangeAsc = 'EVENTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + EventsStddevPopulationBlockRangeDesc = 'EVENTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + EventsStddevPopulationCreatedAtAsc = 'EVENTS_STDDEV_POPULATION_CREATED_AT_ASC', + EventsStddevPopulationCreatedAtDesc = 'EVENTS_STDDEV_POPULATION_CREATED_AT_DESC', + EventsStddevPopulationCreatedBlockIdAsc = 'EVENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + EventsStddevPopulationCreatedBlockIdDesc = 'EVENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + EventsStddevPopulationEventAsc = 'EVENTS_STDDEV_POPULATION_EVENT_ASC', + EventsStddevPopulationEventDesc = 'EVENTS_STDDEV_POPULATION_EVENT_DESC', + EventsStddevPopulationEventIdxAsc = 'EVENTS_STDDEV_POPULATION_EVENT_IDX_ASC', + EventsStddevPopulationEventIdxDesc = 'EVENTS_STDDEV_POPULATION_EVENT_IDX_DESC', + EventsStddevPopulationFailureReasonAsc = 'EVENTS_STDDEV_POPULATION_FAILURE_REASON_ASC', + EventsStddevPopulationFailureReasonDesc = 'EVENTS_STDDEV_POPULATION_FAILURE_REASON_DESC', + EventsStddevPopulationIdentityAsc = 'EVENTS_STDDEV_POPULATION_IDENTITY_ASC', + EventsStddevPopulationIdentityDesc = 'EVENTS_STDDEV_POPULATION_IDENTITY_DESC', + EventsStddevPopulationIdAsc = 'EVENTS_STDDEV_POPULATION_ID_ASC', + EventsStddevPopulationIdDesc = 'EVENTS_STDDEV_POPULATION_ID_DESC', + EventsStddevPopulationInstructionIdAsc = 'EVENTS_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + EventsStddevPopulationInstructionIdDesc = 'EVENTS_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + EventsStddevPopulationOffChainReceiptIdAsc = 'EVENTS_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + EventsStddevPopulationOffChainReceiptIdDesc = 'EVENTS_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + EventsStddevPopulationPortfolioAsc = 'EVENTS_STDDEV_POPULATION_PORTFOLIO_ASC', + EventsStddevPopulationPortfolioDesc = 'EVENTS_STDDEV_POPULATION_PORTFOLIO_DESC', + EventsStddevPopulationUpdatedBlockIdAsc = 'EVENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + EventsStddevPopulationUpdatedBlockIdDesc = 'EVENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + EventsStddevSampleBlockRangeAsc = 'EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + EventsStddevSampleBlockRangeDesc = 'EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + EventsStddevSampleCreatedAtAsc = 'EVENTS_STDDEV_SAMPLE_CREATED_AT_ASC', + EventsStddevSampleCreatedAtDesc = 'EVENTS_STDDEV_SAMPLE_CREATED_AT_DESC', + EventsStddevSampleCreatedBlockIdAsc = 'EVENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + EventsStddevSampleCreatedBlockIdDesc = 'EVENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + EventsStddevSampleEventAsc = 'EVENTS_STDDEV_SAMPLE_EVENT_ASC', + EventsStddevSampleEventDesc = 'EVENTS_STDDEV_SAMPLE_EVENT_DESC', + EventsStddevSampleEventIdxAsc = 'EVENTS_STDDEV_SAMPLE_EVENT_IDX_ASC', + EventsStddevSampleEventIdxDesc = 'EVENTS_STDDEV_SAMPLE_EVENT_IDX_DESC', + EventsStddevSampleFailureReasonAsc = 'EVENTS_STDDEV_SAMPLE_FAILURE_REASON_ASC', + EventsStddevSampleFailureReasonDesc = 'EVENTS_STDDEV_SAMPLE_FAILURE_REASON_DESC', + EventsStddevSampleIdentityAsc = 'EVENTS_STDDEV_SAMPLE_IDENTITY_ASC', + EventsStddevSampleIdentityDesc = 'EVENTS_STDDEV_SAMPLE_IDENTITY_DESC', + EventsStddevSampleIdAsc = 'EVENTS_STDDEV_SAMPLE_ID_ASC', + EventsStddevSampleIdDesc = 'EVENTS_STDDEV_SAMPLE_ID_DESC', + EventsStddevSampleInstructionIdAsc = 'EVENTS_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + EventsStddevSampleInstructionIdDesc = 'EVENTS_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + EventsStddevSampleOffChainReceiptIdAsc = 'EVENTS_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + EventsStddevSampleOffChainReceiptIdDesc = 'EVENTS_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + EventsStddevSamplePortfolioAsc = 'EVENTS_STDDEV_SAMPLE_PORTFOLIO_ASC', + EventsStddevSamplePortfolioDesc = 'EVENTS_STDDEV_SAMPLE_PORTFOLIO_DESC', + EventsStddevSampleUpdatedBlockIdAsc = 'EVENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + EventsStddevSampleUpdatedBlockIdDesc = 'EVENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + EventsSumBlockRangeAsc = 'EVENTS_SUM_BLOCK_RANGE_ASC', + EventsSumBlockRangeDesc = 'EVENTS_SUM_BLOCK_RANGE_DESC', + EventsSumCreatedAtAsc = 'EVENTS_SUM_CREATED_AT_ASC', + EventsSumCreatedAtDesc = 'EVENTS_SUM_CREATED_AT_DESC', + EventsSumCreatedBlockIdAsc = 'EVENTS_SUM_CREATED_BLOCK_ID_ASC', + EventsSumCreatedBlockIdDesc = 'EVENTS_SUM_CREATED_BLOCK_ID_DESC', + EventsSumEventAsc = 'EVENTS_SUM_EVENT_ASC', + EventsSumEventDesc = 'EVENTS_SUM_EVENT_DESC', + EventsSumEventIdxAsc = 'EVENTS_SUM_EVENT_IDX_ASC', + EventsSumEventIdxDesc = 'EVENTS_SUM_EVENT_IDX_DESC', + EventsSumFailureReasonAsc = 'EVENTS_SUM_FAILURE_REASON_ASC', + EventsSumFailureReasonDesc = 'EVENTS_SUM_FAILURE_REASON_DESC', + EventsSumIdentityAsc = 'EVENTS_SUM_IDENTITY_ASC', + EventsSumIdentityDesc = 'EVENTS_SUM_IDENTITY_DESC', + EventsSumIdAsc = 'EVENTS_SUM_ID_ASC', + EventsSumIdDesc = 'EVENTS_SUM_ID_DESC', + EventsSumInstructionIdAsc = 'EVENTS_SUM_INSTRUCTION_ID_ASC', + EventsSumInstructionIdDesc = 'EVENTS_SUM_INSTRUCTION_ID_DESC', + EventsSumOffChainReceiptIdAsc = 'EVENTS_SUM_OFF_CHAIN_RECEIPT_ID_ASC', + EventsSumOffChainReceiptIdDesc = 'EVENTS_SUM_OFF_CHAIN_RECEIPT_ID_DESC', + EventsSumPortfolioAsc = 'EVENTS_SUM_PORTFOLIO_ASC', + EventsSumPortfolioDesc = 'EVENTS_SUM_PORTFOLIO_DESC', + EventsSumUpdatedBlockIdAsc = 'EVENTS_SUM_UPDATED_BLOCK_ID_ASC', + EventsSumUpdatedBlockIdDesc = 'EVENTS_SUM_UPDATED_BLOCK_ID_DESC', + EventsVariancePopulationBlockRangeAsc = 'EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + EventsVariancePopulationBlockRangeDesc = 'EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + EventsVariancePopulationCreatedAtAsc = 'EVENTS_VARIANCE_POPULATION_CREATED_AT_ASC', + EventsVariancePopulationCreatedAtDesc = 'EVENTS_VARIANCE_POPULATION_CREATED_AT_DESC', + EventsVariancePopulationCreatedBlockIdAsc = 'EVENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + EventsVariancePopulationCreatedBlockIdDesc = 'EVENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + EventsVariancePopulationEventAsc = 'EVENTS_VARIANCE_POPULATION_EVENT_ASC', + EventsVariancePopulationEventDesc = 'EVENTS_VARIANCE_POPULATION_EVENT_DESC', + EventsVariancePopulationEventIdxAsc = 'EVENTS_VARIANCE_POPULATION_EVENT_IDX_ASC', + EventsVariancePopulationEventIdxDesc = 'EVENTS_VARIANCE_POPULATION_EVENT_IDX_DESC', + EventsVariancePopulationFailureReasonAsc = 'EVENTS_VARIANCE_POPULATION_FAILURE_REASON_ASC', + EventsVariancePopulationFailureReasonDesc = 'EVENTS_VARIANCE_POPULATION_FAILURE_REASON_DESC', + EventsVariancePopulationIdentityAsc = 'EVENTS_VARIANCE_POPULATION_IDENTITY_ASC', + EventsVariancePopulationIdentityDesc = 'EVENTS_VARIANCE_POPULATION_IDENTITY_DESC', + EventsVariancePopulationIdAsc = 'EVENTS_VARIANCE_POPULATION_ID_ASC', + EventsVariancePopulationIdDesc = 'EVENTS_VARIANCE_POPULATION_ID_DESC', + EventsVariancePopulationInstructionIdAsc = 'EVENTS_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + EventsVariancePopulationInstructionIdDesc = 'EVENTS_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + EventsVariancePopulationOffChainReceiptIdAsc = 'EVENTS_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + EventsVariancePopulationOffChainReceiptIdDesc = 'EVENTS_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + EventsVariancePopulationPortfolioAsc = 'EVENTS_VARIANCE_POPULATION_PORTFOLIO_ASC', + EventsVariancePopulationPortfolioDesc = 'EVENTS_VARIANCE_POPULATION_PORTFOLIO_DESC', + EventsVariancePopulationUpdatedBlockIdAsc = 'EVENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + EventsVariancePopulationUpdatedBlockIdDesc = 'EVENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + EventsVarianceSampleBlockRangeAsc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + EventsVarianceSampleBlockRangeDesc = 'EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + EventsVarianceSampleCreatedAtAsc = 'EVENTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + EventsVarianceSampleCreatedAtDesc = 'EVENTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + EventsVarianceSampleCreatedBlockIdAsc = 'EVENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + EventsVarianceSampleCreatedBlockIdDesc = 'EVENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + EventsVarianceSampleEventAsc = 'EVENTS_VARIANCE_SAMPLE_EVENT_ASC', + EventsVarianceSampleEventDesc = 'EVENTS_VARIANCE_SAMPLE_EVENT_DESC', + EventsVarianceSampleEventIdxAsc = 'EVENTS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + EventsVarianceSampleEventIdxDesc = 'EVENTS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + EventsVarianceSampleFailureReasonAsc = 'EVENTS_VARIANCE_SAMPLE_FAILURE_REASON_ASC', + EventsVarianceSampleFailureReasonDesc = 'EVENTS_VARIANCE_SAMPLE_FAILURE_REASON_DESC', + EventsVarianceSampleIdentityAsc = 'EVENTS_VARIANCE_SAMPLE_IDENTITY_ASC', + EventsVarianceSampleIdentityDesc = 'EVENTS_VARIANCE_SAMPLE_IDENTITY_DESC', + EventsVarianceSampleIdAsc = 'EVENTS_VARIANCE_SAMPLE_ID_ASC', + EventsVarianceSampleIdDesc = 'EVENTS_VARIANCE_SAMPLE_ID_DESC', + EventsVarianceSampleInstructionIdAsc = 'EVENTS_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + EventsVarianceSampleInstructionIdDesc = 'EVENTS_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + EventsVarianceSampleOffChainReceiptIdAsc = 'EVENTS_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + EventsVarianceSampleOffChainReceiptIdDesc = 'EVENTS_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + EventsVarianceSamplePortfolioAsc = 'EVENTS_VARIANCE_SAMPLE_PORTFOLIO_ASC', + EventsVarianceSamplePortfolioDesc = 'EVENTS_VARIANCE_SAMPLE_PORTFOLIO_DESC', + EventsVarianceSampleUpdatedBlockIdAsc = 'EVENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + EventsVarianceSampleUpdatedBlockIdDesc = 'EVENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + FailureReasonAsc = 'FAILURE_REASON_ASC', + FailureReasonDesc = 'FAILURE_REASON_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + LegsAverageAddressesAsc = 'LEGS_AVERAGE_ADDRESSES_ASC', + LegsAverageAddressesDesc = 'LEGS_AVERAGE_ADDRESSES_DESC', + LegsAverageAmountAsc = 'LEGS_AVERAGE_AMOUNT_ASC', + LegsAverageAmountDesc = 'LEGS_AVERAGE_AMOUNT_DESC', + LegsAverageAssetIdAsc = 'LEGS_AVERAGE_ASSET_ID_ASC', + LegsAverageAssetIdDesc = 'LEGS_AVERAGE_ASSET_ID_DESC', + LegsAverageBlockRangeAsc = 'LEGS_AVERAGE_BLOCK_RANGE_ASC', + LegsAverageBlockRangeDesc = 'LEGS_AVERAGE_BLOCK_RANGE_DESC', + LegsAverageCreatedAtAsc = 'LEGS_AVERAGE_CREATED_AT_ASC', + LegsAverageCreatedAtDesc = 'LEGS_AVERAGE_CREATED_AT_DESC', + LegsAverageCreatedBlockIdAsc = 'LEGS_AVERAGE_CREATED_BLOCK_ID_ASC', + LegsAverageCreatedBlockIdDesc = 'LEGS_AVERAGE_CREATED_BLOCK_ID_DESC', + LegsAverageFromAsc = 'LEGS_AVERAGE_FROM_ASC', + LegsAverageFromDesc = 'LEGS_AVERAGE_FROM_DESC', + LegsAverageFromPortfolioAsc = 'LEGS_AVERAGE_FROM_PORTFOLIO_ASC', + LegsAverageFromPortfolioDesc = 'LEGS_AVERAGE_FROM_PORTFOLIO_DESC', + LegsAverageIdAsc = 'LEGS_AVERAGE_ID_ASC', + LegsAverageIdDesc = 'LEGS_AVERAGE_ID_DESC', + LegsAverageInstructionIdAsc = 'LEGS_AVERAGE_INSTRUCTION_ID_ASC', + LegsAverageInstructionIdDesc = 'LEGS_AVERAGE_INSTRUCTION_ID_DESC', + LegsAverageLegIndexAsc = 'LEGS_AVERAGE_LEG_INDEX_ASC', + LegsAverageLegIndexDesc = 'LEGS_AVERAGE_LEG_INDEX_DESC', + LegsAverageLegTypeAsc = 'LEGS_AVERAGE_LEG_TYPE_ASC', + LegsAverageLegTypeDesc = 'LEGS_AVERAGE_LEG_TYPE_DESC', + LegsAverageNftIdsAsc = 'LEGS_AVERAGE_NFT_IDS_ASC', + LegsAverageNftIdsDesc = 'LEGS_AVERAGE_NFT_IDS_DESC', + LegsAverageTickerAsc = 'LEGS_AVERAGE_TICKER_ASC', + LegsAverageTickerDesc = 'LEGS_AVERAGE_TICKER_DESC', + LegsAverageToAsc = 'LEGS_AVERAGE_TO_ASC', + LegsAverageToDesc = 'LEGS_AVERAGE_TO_DESC', + LegsAverageToPortfolioAsc = 'LEGS_AVERAGE_TO_PORTFOLIO_ASC', + LegsAverageToPortfolioDesc = 'LEGS_AVERAGE_TO_PORTFOLIO_DESC', + LegsAverageUpdatedBlockIdAsc = 'LEGS_AVERAGE_UPDATED_BLOCK_ID_ASC', + LegsAverageUpdatedBlockIdDesc = 'LEGS_AVERAGE_UPDATED_BLOCK_ID_DESC', + LegsCountAsc = 'LEGS_COUNT_ASC', + LegsCountDesc = 'LEGS_COUNT_DESC', + LegsDistinctCountAddressesAsc = 'LEGS_DISTINCT_COUNT_ADDRESSES_ASC', + LegsDistinctCountAddressesDesc = 'LEGS_DISTINCT_COUNT_ADDRESSES_DESC', + LegsDistinctCountAmountAsc = 'LEGS_DISTINCT_COUNT_AMOUNT_ASC', + LegsDistinctCountAmountDesc = 'LEGS_DISTINCT_COUNT_AMOUNT_DESC', + LegsDistinctCountAssetIdAsc = 'LEGS_DISTINCT_COUNT_ASSET_ID_ASC', + LegsDistinctCountAssetIdDesc = 'LEGS_DISTINCT_COUNT_ASSET_ID_DESC', + LegsDistinctCountBlockRangeAsc = 'LEGS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + LegsDistinctCountBlockRangeDesc = 'LEGS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + LegsDistinctCountCreatedAtAsc = 'LEGS_DISTINCT_COUNT_CREATED_AT_ASC', + LegsDistinctCountCreatedAtDesc = 'LEGS_DISTINCT_COUNT_CREATED_AT_DESC', + LegsDistinctCountCreatedBlockIdAsc = 'LEGS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + LegsDistinctCountCreatedBlockIdDesc = 'LEGS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + LegsDistinctCountFromAsc = 'LEGS_DISTINCT_COUNT_FROM_ASC', + LegsDistinctCountFromDesc = 'LEGS_DISTINCT_COUNT_FROM_DESC', + LegsDistinctCountFromPortfolioAsc = 'LEGS_DISTINCT_COUNT_FROM_PORTFOLIO_ASC', + LegsDistinctCountFromPortfolioDesc = 'LEGS_DISTINCT_COUNT_FROM_PORTFOLIO_DESC', + LegsDistinctCountIdAsc = 'LEGS_DISTINCT_COUNT_ID_ASC', + LegsDistinctCountIdDesc = 'LEGS_DISTINCT_COUNT_ID_DESC', + LegsDistinctCountInstructionIdAsc = 'LEGS_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + LegsDistinctCountInstructionIdDesc = 'LEGS_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + LegsDistinctCountLegIndexAsc = 'LEGS_DISTINCT_COUNT_LEG_INDEX_ASC', + LegsDistinctCountLegIndexDesc = 'LEGS_DISTINCT_COUNT_LEG_INDEX_DESC', + LegsDistinctCountLegTypeAsc = 'LEGS_DISTINCT_COUNT_LEG_TYPE_ASC', + LegsDistinctCountLegTypeDesc = 'LEGS_DISTINCT_COUNT_LEG_TYPE_DESC', + LegsDistinctCountNftIdsAsc = 'LEGS_DISTINCT_COUNT_NFT_IDS_ASC', + LegsDistinctCountNftIdsDesc = 'LEGS_DISTINCT_COUNT_NFT_IDS_DESC', + LegsDistinctCountTickerAsc = 'LEGS_DISTINCT_COUNT_TICKER_ASC', + LegsDistinctCountTickerDesc = 'LEGS_DISTINCT_COUNT_TICKER_DESC', + LegsDistinctCountToAsc = 'LEGS_DISTINCT_COUNT_TO_ASC', + LegsDistinctCountToDesc = 'LEGS_DISTINCT_COUNT_TO_DESC', + LegsDistinctCountToPortfolioAsc = 'LEGS_DISTINCT_COUNT_TO_PORTFOLIO_ASC', + LegsDistinctCountToPortfolioDesc = 'LEGS_DISTINCT_COUNT_TO_PORTFOLIO_DESC', + LegsDistinctCountUpdatedBlockIdAsc = 'LEGS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + LegsDistinctCountUpdatedBlockIdDesc = 'LEGS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + LegsMaxAddressesAsc = 'LEGS_MAX_ADDRESSES_ASC', + LegsMaxAddressesDesc = 'LEGS_MAX_ADDRESSES_DESC', + LegsMaxAmountAsc = 'LEGS_MAX_AMOUNT_ASC', + LegsMaxAmountDesc = 'LEGS_MAX_AMOUNT_DESC', + LegsMaxAssetIdAsc = 'LEGS_MAX_ASSET_ID_ASC', + LegsMaxAssetIdDesc = 'LEGS_MAX_ASSET_ID_DESC', + LegsMaxBlockRangeAsc = 'LEGS_MAX_BLOCK_RANGE_ASC', + LegsMaxBlockRangeDesc = 'LEGS_MAX_BLOCK_RANGE_DESC', + LegsMaxCreatedAtAsc = 'LEGS_MAX_CREATED_AT_ASC', + LegsMaxCreatedAtDesc = 'LEGS_MAX_CREATED_AT_DESC', + LegsMaxCreatedBlockIdAsc = 'LEGS_MAX_CREATED_BLOCK_ID_ASC', + LegsMaxCreatedBlockIdDesc = 'LEGS_MAX_CREATED_BLOCK_ID_DESC', + LegsMaxFromAsc = 'LEGS_MAX_FROM_ASC', + LegsMaxFromDesc = 'LEGS_MAX_FROM_DESC', + LegsMaxFromPortfolioAsc = 'LEGS_MAX_FROM_PORTFOLIO_ASC', + LegsMaxFromPortfolioDesc = 'LEGS_MAX_FROM_PORTFOLIO_DESC', + LegsMaxIdAsc = 'LEGS_MAX_ID_ASC', + LegsMaxIdDesc = 'LEGS_MAX_ID_DESC', + LegsMaxInstructionIdAsc = 'LEGS_MAX_INSTRUCTION_ID_ASC', + LegsMaxInstructionIdDesc = 'LEGS_MAX_INSTRUCTION_ID_DESC', + LegsMaxLegIndexAsc = 'LEGS_MAX_LEG_INDEX_ASC', + LegsMaxLegIndexDesc = 'LEGS_MAX_LEG_INDEX_DESC', + LegsMaxLegTypeAsc = 'LEGS_MAX_LEG_TYPE_ASC', + LegsMaxLegTypeDesc = 'LEGS_MAX_LEG_TYPE_DESC', + LegsMaxNftIdsAsc = 'LEGS_MAX_NFT_IDS_ASC', + LegsMaxNftIdsDesc = 'LEGS_MAX_NFT_IDS_DESC', + LegsMaxTickerAsc = 'LEGS_MAX_TICKER_ASC', + LegsMaxTickerDesc = 'LEGS_MAX_TICKER_DESC', + LegsMaxToAsc = 'LEGS_MAX_TO_ASC', + LegsMaxToDesc = 'LEGS_MAX_TO_DESC', + LegsMaxToPortfolioAsc = 'LEGS_MAX_TO_PORTFOLIO_ASC', + LegsMaxToPortfolioDesc = 'LEGS_MAX_TO_PORTFOLIO_DESC', + LegsMaxUpdatedBlockIdAsc = 'LEGS_MAX_UPDATED_BLOCK_ID_ASC', + LegsMaxUpdatedBlockIdDesc = 'LEGS_MAX_UPDATED_BLOCK_ID_DESC', + LegsMinAddressesAsc = 'LEGS_MIN_ADDRESSES_ASC', + LegsMinAddressesDesc = 'LEGS_MIN_ADDRESSES_DESC', + LegsMinAmountAsc = 'LEGS_MIN_AMOUNT_ASC', + LegsMinAmountDesc = 'LEGS_MIN_AMOUNT_DESC', + LegsMinAssetIdAsc = 'LEGS_MIN_ASSET_ID_ASC', + LegsMinAssetIdDesc = 'LEGS_MIN_ASSET_ID_DESC', + LegsMinBlockRangeAsc = 'LEGS_MIN_BLOCK_RANGE_ASC', + LegsMinBlockRangeDesc = 'LEGS_MIN_BLOCK_RANGE_DESC', + LegsMinCreatedAtAsc = 'LEGS_MIN_CREATED_AT_ASC', + LegsMinCreatedAtDesc = 'LEGS_MIN_CREATED_AT_DESC', + LegsMinCreatedBlockIdAsc = 'LEGS_MIN_CREATED_BLOCK_ID_ASC', + LegsMinCreatedBlockIdDesc = 'LEGS_MIN_CREATED_BLOCK_ID_DESC', + LegsMinFromAsc = 'LEGS_MIN_FROM_ASC', + LegsMinFromDesc = 'LEGS_MIN_FROM_DESC', + LegsMinFromPortfolioAsc = 'LEGS_MIN_FROM_PORTFOLIO_ASC', + LegsMinFromPortfolioDesc = 'LEGS_MIN_FROM_PORTFOLIO_DESC', + LegsMinIdAsc = 'LEGS_MIN_ID_ASC', + LegsMinIdDesc = 'LEGS_MIN_ID_DESC', + LegsMinInstructionIdAsc = 'LEGS_MIN_INSTRUCTION_ID_ASC', + LegsMinInstructionIdDesc = 'LEGS_MIN_INSTRUCTION_ID_DESC', + LegsMinLegIndexAsc = 'LEGS_MIN_LEG_INDEX_ASC', + LegsMinLegIndexDesc = 'LEGS_MIN_LEG_INDEX_DESC', + LegsMinLegTypeAsc = 'LEGS_MIN_LEG_TYPE_ASC', + LegsMinLegTypeDesc = 'LEGS_MIN_LEG_TYPE_DESC', + LegsMinNftIdsAsc = 'LEGS_MIN_NFT_IDS_ASC', + LegsMinNftIdsDesc = 'LEGS_MIN_NFT_IDS_DESC', + LegsMinTickerAsc = 'LEGS_MIN_TICKER_ASC', + LegsMinTickerDesc = 'LEGS_MIN_TICKER_DESC', + LegsMinToAsc = 'LEGS_MIN_TO_ASC', + LegsMinToDesc = 'LEGS_MIN_TO_DESC', + LegsMinToPortfolioAsc = 'LEGS_MIN_TO_PORTFOLIO_ASC', + LegsMinToPortfolioDesc = 'LEGS_MIN_TO_PORTFOLIO_DESC', + LegsMinUpdatedBlockIdAsc = 'LEGS_MIN_UPDATED_BLOCK_ID_ASC', + LegsMinUpdatedBlockIdDesc = 'LEGS_MIN_UPDATED_BLOCK_ID_DESC', + LegsStddevPopulationAddressesAsc = 'LEGS_STDDEV_POPULATION_ADDRESSES_ASC', + LegsStddevPopulationAddressesDesc = 'LEGS_STDDEV_POPULATION_ADDRESSES_DESC', + LegsStddevPopulationAmountAsc = 'LEGS_STDDEV_POPULATION_AMOUNT_ASC', + LegsStddevPopulationAmountDesc = 'LEGS_STDDEV_POPULATION_AMOUNT_DESC', + LegsStddevPopulationAssetIdAsc = 'LEGS_STDDEV_POPULATION_ASSET_ID_ASC', + LegsStddevPopulationAssetIdDesc = 'LEGS_STDDEV_POPULATION_ASSET_ID_DESC', + LegsStddevPopulationBlockRangeAsc = 'LEGS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + LegsStddevPopulationBlockRangeDesc = 'LEGS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + LegsStddevPopulationCreatedAtAsc = 'LEGS_STDDEV_POPULATION_CREATED_AT_ASC', + LegsStddevPopulationCreatedAtDesc = 'LEGS_STDDEV_POPULATION_CREATED_AT_DESC', + LegsStddevPopulationCreatedBlockIdAsc = 'LEGS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + LegsStddevPopulationCreatedBlockIdDesc = 'LEGS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + LegsStddevPopulationFromAsc = 'LEGS_STDDEV_POPULATION_FROM_ASC', + LegsStddevPopulationFromDesc = 'LEGS_STDDEV_POPULATION_FROM_DESC', + LegsStddevPopulationFromPortfolioAsc = 'LEGS_STDDEV_POPULATION_FROM_PORTFOLIO_ASC', + LegsStddevPopulationFromPortfolioDesc = 'LEGS_STDDEV_POPULATION_FROM_PORTFOLIO_DESC', + LegsStddevPopulationIdAsc = 'LEGS_STDDEV_POPULATION_ID_ASC', + LegsStddevPopulationIdDesc = 'LEGS_STDDEV_POPULATION_ID_DESC', + LegsStddevPopulationInstructionIdAsc = 'LEGS_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + LegsStddevPopulationInstructionIdDesc = 'LEGS_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + LegsStddevPopulationLegIndexAsc = 'LEGS_STDDEV_POPULATION_LEG_INDEX_ASC', + LegsStddevPopulationLegIndexDesc = 'LEGS_STDDEV_POPULATION_LEG_INDEX_DESC', + LegsStddevPopulationLegTypeAsc = 'LEGS_STDDEV_POPULATION_LEG_TYPE_ASC', + LegsStddevPopulationLegTypeDesc = 'LEGS_STDDEV_POPULATION_LEG_TYPE_DESC', + LegsStddevPopulationNftIdsAsc = 'LEGS_STDDEV_POPULATION_NFT_IDS_ASC', + LegsStddevPopulationNftIdsDesc = 'LEGS_STDDEV_POPULATION_NFT_IDS_DESC', + LegsStddevPopulationTickerAsc = 'LEGS_STDDEV_POPULATION_TICKER_ASC', + LegsStddevPopulationTickerDesc = 'LEGS_STDDEV_POPULATION_TICKER_DESC', + LegsStddevPopulationToAsc = 'LEGS_STDDEV_POPULATION_TO_ASC', + LegsStddevPopulationToDesc = 'LEGS_STDDEV_POPULATION_TO_DESC', + LegsStddevPopulationToPortfolioAsc = 'LEGS_STDDEV_POPULATION_TO_PORTFOLIO_ASC', + LegsStddevPopulationToPortfolioDesc = 'LEGS_STDDEV_POPULATION_TO_PORTFOLIO_DESC', + LegsStddevPopulationUpdatedBlockIdAsc = 'LEGS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + LegsStddevPopulationUpdatedBlockIdDesc = 'LEGS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + LegsStddevSampleAddressesAsc = 'LEGS_STDDEV_SAMPLE_ADDRESSES_ASC', + LegsStddevSampleAddressesDesc = 'LEGS_STDDEV_SAMPLE_ADDRESSES_DESC', + LegsStddevSampleAmountAsc = 'LEGS_STDDEV_SAMPLE_AMOUNT_ASC', + LegsStddevSampleAmountDesc = 'LEGS_STDDEV_SAMPLE_AMOUNT_DESC', + LegsStddevSampleAssetIdAsc = 'LEGS_STDDEV_SAMPLE_ASSET_ID_ASC', + LegsStddevSampleAssetIdDesc = 'LEGS_STDDEV_SAMPLE_ASSET_ID_DESC', + LegsStddevSampleBlockRangeAsc = 'LEGS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + LegsStddevSampleBlockRangeDesc = 'LEGS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + LegsStddevSampleCreatedAtAsc = 'LEGS_STDDEV_SAMPLE_CREATED_AT_ASC', + LegsStddevSampleCreatedAtDesc = 'LEGS_STDDEV_SAMPLE_CREATED_AT_DESC', + LegsStddevSampleCreatedBlockIdAsc = 'LEGS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + LegsStddevSampleCreatedBlockIdDesc = 'LEGS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + LegsStddevSampleFromAsc = 'LEGS_STDDEV_SAMPLE_FROM_ASC', + LegsStddevSampleFromDesc = 'LEGS_STDDEV_SAMPLE_FROM_DESC', + LegsStddevSampleFromPortfolioAsc = 'LEGS_STDDEV_SAMPLE_FROM_PORTFOLIO_ASC', + LegsStddevSampleFromPortfolioDesc = 'LEGS_STDDEV_SAMPLE_FROM_PORTFOLIO_DESC', + LegsStddevSampleIdAsc = 'LEGS_STDDEV_SAMPLE_ID_ASC', + LegsStddevSampleIdDesc = 'LEGS_STDDEV_SAMPLE_ID_DESC', + LegsStddevSampleInstructionIdAsc = 'LEGS_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + LegsStddevSampleInstructionIdDesc = 'LEGS_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + LegsStddevSampleLegIndexAsc = 'LEGS_STDDEV_SAMPLE_LEG_INDEX_ASC', + LegsStddevSampleLegIndexDesc = 'LEGS_STDDEV_SAMPLE_LEG_INDEX_DESC', + LegsStddevSampleLegTypeAsc = 'LEGS_STDDEV_SAMPLE_LEG_TYPE_ASC', + LegsStddevSampleLegTypeDesc = 'LEGS_STDDEV_SAMPLE_LEG_TYPE_DESC', + LegsStddevSampleNftIdsAsc = 'LEGS_STDDEV_SAMPLE_NFT_IDS_ASC', + LegsStddevSampleNftIdsDesc = 'LEGS_STDDEV_SAMPLE_NFT_IDS_DESC', + LegsStddevSampleTickerAsc = 'LEGS_STDDEV_SAMPLE_TICKER_ASC', + LegsStddevSampleTickerDesc = 'LEGS_STDDEV_SAMPLE_TICKER_DESC', + LegsStddevSampleToAsc = 'LEGS_STDDEV_SAMPLE_TO_ASC', + LegsStddevSampleToDesc = 'LEGS_STDDEV_SAMPLE_TO_DESC', + LegsStddevSampleToPortfolioAsc = 'LEGS_STDDEV_SAMPLE_TO_PORTFOLIO_ASC', + LegsStddevSampleToPortfolioDesc = 'LEGS_STDDEV_SAMPLE_TO_PORTFOLIO_DESC', + LegsStddevSampleUpdatedBlockIdAsc = 'LEGS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + LegsStddevSampleUpdatedBlockIdDesc = 'LEGS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + LegsSumAddressesAsc = 'LEGS_SUM_ADDRESSES_ASC', + LegsSumAddressesDesc = 'LEGS_SUM_ADDRESSES_DESC', + LegsSumAmountAsc = 'LEGS_SUM_AMOUNT_ASC', + LegsSumAmountDesc = 'LEGS_SUM_AMOUNT_DESC', + LegsSumAssetIdAsc = 'LEGS_SUM_ASSET_ID_ASC', + LegsSumAssetIdDesc = 'LEGS_SUM_ASSET_ID_DESC', + LegsSumBlockRangeAsc = 'LEGS_SUM_BLOCK_RANGE_ASC', + LegsSumBlockRangeDesc = 'LEGS_SUM_BLOCK_RANGE_DESC', + LegsSumCreatedAtAsc = 'LEGS_SUM_CREATED_AT_ASC', + LegsSumCreatedAtDesc = 'LEGS_SUM_CREATED_AT_DESC', + LegsSumCreatedBlockIdAsc = 'LEGS_SUM_CREATED_BLOCK_ID_ASC', + LegsSumCreatedBlockIdDesc = 'LEGS_SUM_CREATED_BLOCK_ID_DESC', + LegsSumFromAsc = 'LEGS_SUM_FROM_ASC', + LegsSumFromDesc = 'LEGS_SUM_FROM_DESC', + LegsSumFromPortfolioAsc = 'LEGS_SUM_FROM_PORTFOLIO_ASC', + LegsSumFromPortfolioDesc = 'LEGS_SUM_FROM_PORTFOLIO_DESC', + LegsSumIdAsc = 'LEGS_SUM_ID_ASC', + LegsSumIdDesc = 'LEGS_SUM_ID_DESC', + LegsSumInstructionIdAsc = 'LEGS_SUM_INSTRUCTION_ID_ASC', + LegsSumInstructionIdDesc = 'LEGS_SUM_INSTRUCTION_ID_DESC', + LegsSumLegIndexAsc = 'LEGS_SUM_LEG_INDEX_ASC', + LegsSumLegIndexDesc = 'LEGS_SUM_LEG_INDEX_DESC', + LegsSumLegTypeAsc = 'LEGS_SUM_LEG_TYPE_ASC', + LegsSumLegTypeDesc = 'LEGS_SUM_LEG_TYPE_DESC', + LegsSumNftIdsAsc = 'LEGS_SUM_NFT_IDS_ASC', + LegsSumNftIdsDesc = 'LEGS_SUM_NFT_IDS_DESC', + LegsSumTickerAsc = 'LEGS_SUM_TICKER_ASC', + LegsSumTickerDesc = 'LEGS_SUM_TICKER_DESC', + LegsSumToAsc = 'LEGS_SUM_TO_ASC', + LegsSumToDesc = 'LEGS_SUM_TO_DESC', + LegsSumToPortfolioAsc = 'LEGS_SUM_TO_PORTFOLIO_ASC', + LegsSumToPortfolioDesc = 'LEGS_SUM_TO_PORTFOLIO_DESC', + LegsSumUpdatedBlockIdAsc = 'LEGS_SUM_UPDATED_BLOCK_ID_ASC', + LegsSumUpdatedBlockIdDesc = 'LEGS_SUM_UPDATED_BLOCK_ID_DESC', + LegsVariancePopulationAddressesAsc = 'LEGS_VARIANCE_POPULATION_ADDRESSES_ASC', + LegsVariancePopulationAddressesDesc = 'LEGS_VARIANCE_POPULATION_ADDRESSES_DESC', + LegsVariancePopulationAmountAsc = 'LEGS_VARIANCE_POPULATION_AMOUNT_ASC', + LegsVariancePopulationAmountDesc = 'LEGS_VARIANCE_POPULATION_AMOUNT_DESC', + LegsVariancePopulationAssetIdAsc = 'LEGS_VARIANCE_POPULATION_ASSET_ID_ASC', + LegsVariancePopulationAssetIdDesc = 'LEGS_VARIANCE_POPULATION_ASSET_ID_DESC', + LegsVariancePopulationBlockRangeAsc = 'LEGS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + LegsVariancePopulationBlockRangeDesc = 'LEGS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + LegsVariancePopulationCreatedAtAsc = 'LEGS_VARIANCE_POPULATION_CREATED_AT_ASC', + LegsVariancePopulationCreatedAtDesc = 'LEGS_VARIANCE_POPULATION_CREATED_AT_DESC', + LegsVariancePopulationCreatedBlockIdAsc = 'LEGS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + LegsVariancePopulationCreatedBlockIdDesc = 'LEGS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + LegsVariancePopulationFromAsc = 'LEGS_VARIANCE_POPULATION_FROM_ASC', + LegsVariancePopulationFromDesc = 'LEGS_VARIANCE_POPULATION_FROM_DESC', + LegsVariancePopulationFromPortfolioAsc = 'LEGS_VARIANCE_POPULATION_FROM_PORTFOLIO_ASC', + LegsVariancePopulationFromPortfolioDesc = 'LEGS_VARIANCE_POPULATION_FROM_PORTFOLIO_DESC', + LegsVariancePopulationIdAsc = 'LEGS_VARIANCE_POPULATION_ID_ASC', + LegsVariancePopulationIdDesc = 'LEGS_VARIANCE_POPULATION_ID_DESC', + LegsVariancePopulationInstructionIdAsc = 'LEGS_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + LegsVariancePopulationInstructionIdDesc = 'LEGS_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + LegsVariancePopulationLegIndexAsc = 'LEGS_VARIANCE_POPULATION_LEG_INDEX_ASC', + LegsVariancePopulationLegIndexDesc = 'LEGS_VARIANCE_POPULATION_LEG_INDEX_DESC', + LegsVariancePopulationLegTypeAsc = 'LEGS_VARIANCE_POPULATION_LEG_TYPE_ASC', + LegsVariancePopulationLegTypeDesc = 'LEGS_VARIANCE_POPULATION_LEG_TYPE_DESC', + LegsVariancePopulationNftIdsAsc = 'LEGS_VARIANCE_POPULATION_NFT_IDS_ASC', + LegsVariancePopulationNftIdsDesc = 'LEGS_VARIANCE_POPULATION_NFT_IDS_DESC', + LegsVariancePopulationTickerAsc = 'LEGS_VARIANCE_POPULATION_TICKER_ASC', + LegsVariancePopulationTickerDesc = 'LEGS_VARIANCE_POPULATION_TICKER_DESC', + LegsVariancePopulationToAsc = 'LEGS_VARIANCE_POPULATION_TO_ASC', + LegsVariancePopulationToDesc = 'LEGS_VARIANCE_POPULATION_TO_DESC', + LegsVariancePopulationToPortfolioAsc = 'LEGS_VARIANCE_POPULATION_TO_PORTFOLIO_ASC', + LegsVariancePopulationToPortfolioDesc = 'LEGS_VARIANCE_POPULATION_TO_PORTFOLIO_DESC', + LegsVariancePopulationUpdatedBlockIdAsc = 'LEGS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + LegsVariancePopulationUpdatedBlockIdDesc = 'LEGS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + LegsVarianceSampleAddressesAsc = 'LEGS_VARIANCE_SAMPLE_ADDRESSES_ASC', + LegsVarianceSampleAddressesDesc = 'LEGS_VARIANCE_SAMPLE_ADDRESSES_DESC', + LegsVarianceSampleAmountAsc = 'LEGS_VARIANCE_SAMPLE_AMOUNT_ASC', + LegsVarianceSampleAmountDesc = 'LEGS_VARIANCE_SAMPLE_AMOUNT_DESC', + LegsVarianceSampleAssetIdAsc = 'LEGS_VARIANCE_SAMPLE_ASSET_ID_ASC', + LegsVarianceSampleAssetIdDesc = 'LEGS_VARIANCE_SAMPLE_ASSET_ID_DESC', + LegsVarianceSampleBlockRangeAsc = 'LEGS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + LegsVarianceSampleBlockRangeDesc = 'LEGS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + LegsVarianceSampleCreatedAtAsc = 'LEGS_VARIANCE_SAMPLE_CREATED_AT_ASC', + LegsVarianceSampleCreatedAtDesc = 'LEGS_VARIANCE_SAMPLE_CREATED_AT_DESC', + LegsVarianceSampleCreatedBlockIdAsc = 'LEGS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + LegsVarianceSampleCreatedBlockIdDesc = 'LEGS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + LegsVarianceSampleFromAsc = 'LEGS_VARIANCE_SAMPLE_FROM_ASC', + LegsVarianceSampleFromDesc = 'LEGS_VARIANCE_SAMPLE_FROM_DESC', + LegsVarianceSampleFromPortfolioAsc = 'LEGS_VARIANCE_SAMPLE_FROM_PORTFOLIO_ASC', + LegsVarianceSampleFromPortfolioDesc = 'LEGS_VARIANCE_SAMPLE_FROM_PORTFOLIO_DESC', + LegsVarianceSampleIdAsc = 'LEGS_VARIANCE_SAMPLE_ID_ASC', + LegsVarianceSampleIdDesc = 'LEGS_VARIANCE_SAMPLE_ID_DESC', + LegsVarianceSampleInstructionIdAsc = 'LEGS_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + LegsVarianceSampleInstructionIdDesc = 'LEGS_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + LegsVarianceSampleLegIndexAsc = 'LEGS_VARIANCE_SAMPLE_LEG_INDEX_ASC', + LegsVarianceSampleLegIndexDesc = 'LEGS_VARIANCE_SAMPLE_LEG_INDEX_DESC', + LegsVarianceSampleLegTypeAsc = 'LEGS_VARIANCE_SAMPLE_LEG_TYPE_ASC', + LegsVarianceSampleLegTypeDesc = 'LEGS_VARIANCE_SAMPLE_LEG_TYPE_DESC', + LegsVarianceSampleNftIdsAsc = 'LEGS_VARIANCE_SAMPLE_NFT_IDS_ASC', + LegsVarianceSampleNftIdsDesc = 'LEGS_VARIANCE_SAMPLE_NFT_IDS_DESC', + LegsVarianceSampleTickerAsc = 'LEGS_VARIANCE_SAMPLE_TICKER_ASC', + LegsVarianceSampleTickerDesc = 'LEGS_VARIANCE_SAMPLE_TICKER_DESC', + LegsVarianceSampleToAsc = 'LEGS_VARIANCE_SAMPLE_TO_ASC', + LegsVarianceSampleToDesc = 'LEGS_VARIANCE_SAMPLE_TO_DESC', + LegsVarianceSampleToPortfolioAsc = 'LEGS_VARIANCE_SAMPLE_TO_PORTFOLIO_ASC', + LegsVarianceSampleToPortfolioDesc = 'LEGS_VARIANCE_SAMPLE_TO_PORTFOLIO_DESC', + LegsVarianceSampleUpdatedBlockIdAsc = 'LEGS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + LegsVarianceSampleUpdatedBlockIdDesc = 'LEGS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + MediatorsAsc = 'MEDIATORS_ASC', + MediatorsDesc = 'MEDIATORS_DESC', + MemoAsc = 'MEMO_ASC', + MemoDesc = 'MEMO_DESC', + Natural = 'NATURAL', + PartiesAverageBlockRangeAsc = 'PARTIES_AVERAGE_BLOCK_RANGE_ASC', + PartiesAverageBlockRangeDesc = 'PARTIES_AVERAGE_BLOCK_RANGE_DESC', + PartiesAverageCreatedAtAsc = 'PARTIES_AVERAGE_CREATED_AT_ASC', + PartiesAverageCreatedAtDesc = 'PARTIES_AVERAGE_CREATED_AT_DESC', + PartiesAverageCreatedBlockIdAsc = 'PARTIES_AVERAGE_CREATED_BLOCK_ID_ASC', + PartiesAverageCreatedBlockIdDesc = 'PARTIES_AVERAGE_CREATED_BLOCK_ID_DESC', + PartiesAverageIdentityAsc = 'PARTIES_AVERAGE_IDENTITY_ASC', + PartiesAverageIdentityDesc = 'PARTIES_AVERAGE_IDENTITY_DESC', + PartiesAverageIdAsc = 'PARTIES_AVERAGE_ID_ASC', + PartiesAverageIdDesc = 'PARTIES_AVERAGE_ID_DESC', + PartiesAverageInstructionIdAsc = 'PARTIES_AVERAGE_INSTRUCTION_ID_ASC', + PartiesAverageInstructionIdDesc = 'PARTIES_AVERAGE_INSTRUCTION_ID_DESC', + PartiesAverageIsMediatorAsc = 'PARTIES_AVERAGE_IS_MEDIATOR_ASC', + PartiesAverageIsMediatorDesc = 'PARTIES_AVERAGE_IS_MEDIATOR_DESC', + PartiesAveragePortfoliosAsc = 'PARTIES_AVERAGE_PORTFOLIOS_ASC', + PartiesAveragePortfoliosDesc = 'PARTIES_AVERAGE_PORTFOLIOS_DESC', + PartiesAverageUpdatedBlockIdAsc = 'PARTIES_AVERAGE_UPDATED_BLOCK_ID_ASC', + PartiesAverageUpdatedBlockIdDesc = 'PARTIES_AVERAGE_UPDATED_BLOCK_ID_DESC', + PartiesCountAsc = 'PARTIES_COUNT_ASC', + PartiesCountDesc = 'PARTIES_COUNT_DESC', + PartiesDistinctCountBlockRangeAsc = 'PARTIES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PartiesDistinctCountBlockRangeDesc = 'PARTIES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PartiesDistinctCountCreatedAtAsc = 'PARTIES_DISTINCT_COUNT_CREATED_AT_ASC', + PartiesDistinctCountCreatedAtDesc = 'PARTIES_DISTINCT_COUNT_CREATED_AT_DESC', + PartiesDistinctCountCreatedBlockIdAsc = 'PARTIES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PartiesDistinctCountCreatedBlockIdDesc = 'PARTIES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PartiesDistinctCountIdentityAsc = 'PARTIES_DISTINCT_COUNT_IDENTITY_ASC', + PartiesDistinctCountIdentityDesc = 'PARTIES_DISTINCT_COUNT_IDENTITY_DESC', + PartiesDistinctCountIdAsc = 'PARTIES_DISTINCT_COUNT_ID_ASC', + PartiesDistinctCountIdDesc = 'PARTIES_DISTINCT_COUNT_ID_DESC', + PartiesDistinctCountInstructionIdAsc = 'PARTIES_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + PartiesDistinctCountInstructionIdDesc = 'PARTIES_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + PartiesDistinctCountIsMediatorAsc = 'PARTIES_DISTINCT_COUNT_IS_MEDIATOR_ASC', + PartiesDistinctCountIsMediatorDesc = 'PARTIES_DISTINCT_COUNT_IS_MEDIATOR_DESC', + PartiesDistinctCountPortfoliosAsc = 'PARTIES_DISTINCT_COUNT_PORTFOLIOS_ASC', + PartiesDistinctCountPortfoliosDesc = 'PARTIES_DISTINCT_COUNT_PORTFOLIOS_DESC', + PartiesDistinctCountUpdatedBlockIdAsc = 'PARTIES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PartiesDistinctCountUpdatedBlockIdDesc = 'PARTIES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PartiesMaxBlockRangeAsc = 'PARTIES_MAX_BLOCK_RANGE_ASC', + PartiesMaxBlockRangeDesc = 'PARTIES_MAX_BLOCK_RANGE_DESC', + PartiesMaxCreatedAtAsc = 'PARTIES_MAX_CREATED_AT_ASC', + PartiesMaxCreatedAtDesc = 'PARTIES_MAX_CREATED_AT_DESC', + PartiesMaxCreatedBlockIdAsc = 'PARTIES_MAX_CREATED_BLOCK_ID_ASC', + PartiesMaxCreatedBlockIdDesc = 'PARTIES_MAX_CREATED_BLOCK_ID_DESC', + PartiesMaxIdentityAsc = 'PARTIES_MAX_IDENTITY_ASC', + PartiesMaxIdentityDesc = 'PARTIES_MAX_IDENTITY_DESC', + PartiesMaxIdAsc = 'PARTIES_MAX_ID_ASC', + PartiesMaxIdDesc = 'PARTIES_MAX_ID_DESC', + PartiesMaxInstructionIdAsc = 'PARTIES_MAX_INSTRUCTION_ID_ASC', + PartiesMaxInstructionIdDesc = 'PARTIES_MAX_INSTRUCTION_ID_DESC', + PartiesMaxIsMediatorAsc = 'PARTIES_MAX_IS_MEDIATOR_ASC', + PartiesMaxIsMediatorDesc = 'PARTIES_MAX_IS_MEDIATOR_DESC', + PartiesMaxPortfoliosAsc = 'PARTIES_MAX_PORTFOLIOS_ASC', + PartiesMaxPortfoliosDesc = 'PARTIES_MAX_PORTFOLIOS_DESC', + PartiesMaxUpdatedBlockIdAsc = 'PARTIES_MAX_UPDATED_BLOCK_ID_ASC', + PartiesMaxUpdatedBlockIdDesc = 'PARTIES_MAX_UPDATED_BLOCK_ID_DESC', + PartiesMinBlockRangeAsc = 'PARTIES_MIN_BLOCK_RANGE_ASC', + PartiesMinBlockRangeDesc = 'PARTIES_MIN_BLOCK_RANGE_DESC', + PartiesMinCreatedAtAsc = 'PARTIES_MIN_CREATED_AT_ASC', + PartiesMinCreatedAtDesc = 'PARTIES_MIN_CREATED_AT_DESC', + PartiesMinCreatedBlockIdAsc = 'PARTIES_MIN_CREATED_BLOCK_ID_ASC', + PartiesMinCreatedBlockIdDesc = 'PARTIES_MIN_CREATED_BLOCK_ID_DESC', + PartiesMinIdentityAsc = 'PARTIES_MIN_IDENTITY_ASC', + PartiesMinIdentityDesc = 'PARTIES_MIN_IDENTITY_DESC', + PartiesMinIdAsc = 'PARTIES_MIN_ID_ASC', + PartiesMinIdDesc = 'PARTIES_MIN_ID_DESC', + PartiesMinInstructionIdAsc = 'PARTIES_MIN_INSTRUCTION_ID_ASC', + PartiesMinInstructionIdDesc = 'PARTIES_MIN_INSTRUCTION_ID_DESC', + PartiesMinIsMediatorAsc = 'PARTIES_MIN_IS_MEDIATOR_ASC', + PartiesMinIsMediatorDesc = 'PARTIES_MIN_IS_MEDIATOR_DESC', + PartiesMinPortfoliosAsc = 'PARTIES_MIN_PORTFOLIOS_ASC', + PartiesMinPortfoliosDesc = 'PARTIES_MIN_PORTFOLIOS_DESC', + PartiesMinUpdatedBlockIdAsc = 'PARTIES_MIN_UPDATED_BLOCK_ID_ASC', + PartiesMinUpdatedBlockIdDesc = 'PARTIES_MIN_UPDATED_BLOCK_ID_DESC', + PartiesStddevPopulationBlockRangeAsc = 'PARTIES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PartiesStddevPopulationBlockRangeDesc = 'PARTIES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PartiesStddevPopulationCreatedAtAsc = 'PARTIES_STDDEV_POPULATION_CREATED_AT_ASC', + PartiesStddevPopulationCreatedAtDesc = 'PARTIES_STDDEV_POPULATION_CREATED_AT_DESC', + PartiesStddevPopulationCreatedBlockIdAsc = 'PARTIES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PartiesStddevPopulationCreatedBlockIdDesc = 'PARTIES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PartiesStddevPopulationIdentityAsc = 'PARTIES_STDDEV_POPULATION_IDENTITY_ASC', + PartiesStddevPopulationIdentityDesc = 'PARTIES_STDDEV_POPULATION_IDENTITY_DESC', + PartiesStddevPopulationIdAsc = 'PARTIES_STDDEV_POPULATION_ID_ASC', + PartiesStddevPopulationIdDesc = 'PARTIES_STDDEV_POPULATION_ID_DESC', + PartiesStddevPopulationInstructionIdAsc = 'PARTIES_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + PartiesStddevPopulationInstructionIdDesc = 'PARTIES_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + PartiesStddevPopulationIsMediatorAsc = 'PARTIES_STDDEV_POPULATION_IS_MEDIATOR_ASC', + PartiesStddevPopulationIsMediatorDesc = 'PARTIES_STDDEV_POPULATION_IS_MEDIATOR_DESC', + PartiesStddevPopulationPortfoliosAsc = 'PARTIES_STDDEV_POPULATION_PORTFOLIOS_ASC', + PartiesStddevPopulationPortfoliosDesc = 'PARTIES_STDDEV_POPULATION_PORTFOLIOS_DESC', + PartiesStddevPopulationUpdatedBlockIdAsc = 'PARTIES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PartiesStddevPopulationUpdatedBlockIdDesc = 'PARTIES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PartiesStddevSampleBlockRangeAsc = 'PARTIES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PartiesStddevSampleBlockRangeDesc = 'PARTIES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PartiesStddevSampleCreatedAtAsc = 'PARTIES_STDDEV_SAMPLE_CREATED_AT_ASC', + PartiesStddevSampleCreatedAtDesc = 'PARTIES_STDDEV_SAMPLE_CREATED_AT_DESC', + PartiesStddevSampleCreatedBlockIdAsc = 'PARTIES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PartiesStddevSampleCreatedBlockIdDesc = 'PARTIES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PartiesStddevSampleIdentityAsc = 'PARTIES_STDDEV_SAMPLE_IDENTITY_ASC', + PartiesStddevSampleIdentityDesc = 'PARTIES_STDDEV_SAMPLE_IDENTITY_DESC', + PartiesStddevSampleIdAsc = 'PARTIES_STDDEV_SAMPLE_ID_ASC', + PartiesStddevSampleIdDesc = 'PARTIES_STDDEV_SAMPLE_ID_DESC', + PartiesStddevSampleInstructionIdAsc = 'PARTIES_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + PartiesStddevSampleInstructionIdDesc = 'PARTIES_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + PartiesStddevSampleIsMediatorAsc = 'PARTIES_STDDEV_SAMPLE_IS_MEDIATOR_ASC', + PartiesStddevSampleIsMediatorDesc = 'PARTIES_STDDEV_SAMPLE_IS_MEDIATOR_DESC', + PartiesStddevSamplePortfoliosAsc = 'PARTIES_STDDEV_SAMPLE_PORTFOLIOS_ASC', + PartiesStddevSamplePortfoliosDesc = 'PARTIES_STDDEV_SAMPLE_PORTFOLIOS_DESC', + PartiesStddevSampleUpdatedBlockIdAsc = 'PARTIES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PartiesStddevSampleUpdatedBlockIdDesc = 'PARTIES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PartiesSumBlockRangeAsc = 'PARTIES_SUM_BLOCK_RANGE_ASC', + PartiesSumBlockRangeDesc = 'PARTIES_SUM_BLOCK_RANGE_DESC', + PartiesSumCreatedAtAsc = 'PARTIES_SUM_CREATED_AT_ASC', + PartiesSumCreatedAtDesc = 'PARTIES_SUM_CREATED_AT_DESC', + PartiesSumCreatedBlockIdAsc = 'PARTIES_SUM_CREATED_BLOCK_ID_ASC', + PartiesSumCreatedBlockIdDesc = 'PARTIES_SUM_CREATED_BLOCK_ID_DESC', + PartiesSumIdentityAsc = 'PARTIES_SUM_IDENTITY_ASC', + PartiesSumIdentityDesc = 'PARTIES_SUM_IDENTITY_DESC', + PartiesSumIdAsc = 'PARTIES_SUM_ID_ASC', + PartiesSumIdDesc = 'PARTIES_SUM_ID_DESC', + PartiesSumInstructionIdAsc = 'PARTIES_SUM_INSTRUCTION_ID_ASC', + PartiesSumInstructionIdDesc = 'PARTIES_SUM_INSTRUCTION_ID_DESC', + PartiesSumIsMediatorAsc = 'PARTIES_SUM_IS_MEDIATOR_ASC', + PartiesSumIsMediatorDesc = 'PARTIES_SUM_IS_MEDIATOR_DESC', + PartiesSumPortfoliosAsc = 'PARTIES_SUM_PORTFOLIOS_ASC', + PartiesSumPortfoliosDesc = 'PARTIES_SUM_PORTFOLIOS_DESC', + PartiesSumUpdatedBlockIdAsc = 'PARTIES_SUM_UPDATED_BLOCK_ID_ASC', + PartiesSumUpdatedBlockIdDesc = 'PARTIES_SUM_UPDATED_BLOCK_ID_DESC', + PartiesVariancePopulationBlockRangeAsc = 'PARTIES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PartiesVariancePopulationBlockRangeDesc = 'PARTIES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PartiesVariancePopulationCreatedAtAsc = 'PARTIES_VARIANCE_POPULATION_CREATED_AT_ASC', + PartiesVariancePopulationCreatedAtDesc = 'PARTIES_VARIANCE_POPULATION_CREATED_AT_DESC', + PartiesVariancePopulationCreatedBlockIdAsc = 'PARTIES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PartiesVariancePopulationCreatedBlockIdDesc = 'PARTIES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PartiesVariancePopulationIdentityAsc = 'PARTIES_VARIANCE_POPULATION_IDENTITY_ASC', + PartiesVariancePopulationIdentityDesc = 'PARTIES_VARIANCE_POPULATION_IDENTITY_DESC', + PartiesVariancePopulationIdAsc = 'PARTIES_VARIANCE_POPULATION_ID_ASC', + PartiesVariancePopulationIdDesc = 'PARTIES_VARIANCE_POPULATION_ID_DESC', + PartiesVariancePopulationInstructionIdAsc = 'PARTIES_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + PartiesVariancePopulationInstructionIdDesc = 'PARTIES_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + PartiesVariancePopulationIsMediatorAsc = 'PARTIES_VARIANCE_POPULATION_IS_MEDIATOR_ASC', + PartiesVariancePopulationIsMediatorDesc = 'PARTIES_VARIANCE_POPULATION_IS_MEDIATOR_DESC', + PartiesVariancePopulationPortfoliosAsc = 'PARTIES_VARIANCE_POPULATION_PORTFOLIOS_ASC', + PartiesVariancePopulationPortfoliosDesc = 'PARTIES_VARIANCE_POPULATION_PORTFOLIOS_DESC', + PartiesVariancePopulationUpdatedBlockIdAsc = 'PARTIES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PartiesVariancePopulationUpdatedBlockIdDesc = 'PARTIES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PartiesVarianceSampleBlockRangeAsc = 'PARTIES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PartiesVarianceSampleBlockRangeDesc = 'PARTIES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PartiesVarianceSampleCreatedAtAsc = 'PARTIES_VARIANCE_SAMPLE_CREATED_AT_ASC', + PartiesVarianceSampleCreatedAtDesc = 'PARTIES_VARIANCE_SAMPLE_CREATED_AT_DESC', + PartiesVarianceSampleCreatedBlockIdAsc = 'PARTIES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PartiesVarianceSampleCreatedBlockIdDesc = 'PARTIES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PartiesVarianceSampleIdentityAsc = 'PARTIES_VARIANCE_SAMPLE_IDENTITY_ASC', + PartiesVarianceSampleIdentityDesc = 'PARTIES_VARIANCE_SAMPLE_IDENTITY_DESC', + PartiesVarianceSampleIdAsc = 'PARTIES_VARIANCE_SAMPLE_ID_ASC', + PartiesVarianceSampleIdDesc = 'PARTIES_VARIANCE_SAMPLE_ID_DESC', + PartiesVarianceSampleInstructionIdAsc = 'PARTIES_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + PartiesVarianceSampleInstructionIdDesc = 'PARTIES_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + PartiesVarianceSampleIsMediatorAsc = 'PARTIES_VARIANCE_SAMPLE_IS_MEDIATOR_ASC', + PartiesVarianceSampleIsMediatorDesc = 'PARTIES_VARIANCE_SAMPLE_IS_MEDIATOR_DESC', + PartiesVarianceSamplePortfoliosAsc = 'PARTIES_VARIANCE_SAMPLE_PORTFOLIOS_ASC', + PartiesVarianceSamplePortfoliosDesc = 'PARTIES_VARIANCE_SAMPLE_PORTFOLIOS_DESC', + PartiesVarianceSampleUpdatedBlockIdAsc = 'PARTIES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PartiesVarianceSampleUpdatedBlockIdDesc = 'PARTIES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + StatusAsc = 'STATUS_ASC', + StatusDesc = 'STATUS_DESC', + TradeDateAsc = 'TRADE_DATE_ASC', + TradeDateDesc = 'TRADE_DATE_DESC', + TypeAsc = 'TYPE_ASC', + TypeDesc = 'TYPE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + ValueDateAsc = 'VALUE_DATE_ASC', + ValueDateDesc = 'VALUE_DATE_DESC', + VenueIdAsc = 'VENUE_ID_ASC', + VenueIdDesc = 'VENUE_ID_DESC', +} + +/** A filter to be used against Int fields. All fields are combined with a logical ‘and.’ */ +export type IntFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type Investment = Node & { + __typename?: 'Investment'; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Investment`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + id: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `Investment`. */ + investor?: Maybe; + investorId: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + offeringAssetId: Scalars['String']['output']; + offeringToken: Scalars['String']['output']; + offeringTokenAmount: Scalars['BigFloat']['output']; + raiseToken: Scalars['String']['output']; + raiseTokenAmount: Scalars['BigFloat']['output']; + raisingAssetId: Scalars['String']['output']; + stoId: Scalars['Int']['output']; + /** Reads a single `Block` that is related to this `Investment`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type InvestmentAggregates = { + __typename?: 'InvestmentAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Investment` object types. */ +export type InvestmentAggregatesFilter = { + /** Mean average aggregate over matching `Investment` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Investment` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Investment` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Investment` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Investment` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Investment` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Investment` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Investment` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Investment` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Investment` objects. */ + varianceSample?: InputMaybe; +}; + +export type InvestmentAverageAggregateFilter = { + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentAverageAggregates = { + __typename?: 'InvestmentAverageAggregates'; + /** Mean average of offeringTokenAmount across the matching connection */ + offeringTokenAmount?: Maybe; + /** Mean average of raiseTokenAmount across the matching connection */ + raiseTokenAmount?: Maybe; + /** Mean average of stoId across the matching connection */ + stoId?: Maybe; +}; + +export type InvestmentDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + id?: InputMaybe; + investorId?: InputMaybe; + offeringAssetId?: InputMaybe; + offeringToken?: InputMaybe; + offeringTokenAmount?: InputMaybe; + raiseToken?: InputMaybe; + raiseTokenAmount?: InputMaybe; + raisingAssetId?: InputMaybe; + stoId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type InvestmentDistinctCountAggregates = { + __typename?: 'InvestmentDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of investorId across the matching connection */ + investorId?: Maybe; + /** Distinct count of offeringAssetId across the matching connection */ + offeringAssetId?: Maybe; + /** Distinct count of offeringToken across the matching connection */ + offeringToken?: Maybe; + /** Distinct count of offeringTokenAmount across the matching connection */ + offeringTokenAmount?: Maybe; + /** Distinct count of raiseToken across the matching connection */ + raiseToken?: Maybe; + /** Distinct count of raiseTokenAmount across the matching connection */ + raiseTokenAmount?: Maybe; + /** Distinct count of raisingAssetId across the matching connection */ + raisingAssetId?: Maybe; + /** Distinct count of stoId across the matching connection */ + stoId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `Investment` object types. All fields are combined with a logical ‘and.’ */ +export type InvestmentFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `investor` relation. */ + investor?: InputMaybe; + /** Filter by the object’s `investorId` field. */ + investorId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Filter by the object’s `offeringAssetId` field. */ + offeringAssetId?: InputMaybe; + /** Filter by the object’s `offeringToken` field. */ + offeringToken?: InputMaybe; + /** Filter by the object’s `offeringTokenAmount` field. */ + offeringTokenAmount?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `raiseToken` field. */ + raiseToken?: InputMaybe; + /** Filter by the object’s `raiseTokenAmount` field. */ + raiseTokenAmount?: InputMaybe; + /** Filter by the object’s `raisingAssetId` field. */ + raisingAssetId?: InputMaybe; + /** Filter by the object’s `stoId` field. */ + stoId?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type InvestmentMaxAggregateFilter = { + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentMaxAggregates = { + __typename?: 'InvestmentMaxAggregates'; + /** Maximum of offeringTokenAmount across the matching connection */ + offeringTokenAmount?: Maybe; + /** Maximum of raiseTokenAmount across the matching connection */ + raiseTokenAmount?: Maybe; + /** Maximum of stoId across the matching connection */ + stoId?: Maybe; +}; + +export type InvestmentMinAggregateFilter = { + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentMinAggregates = { + __typename?: 'InvestmentMinAggregates'; + /** Minimum of offeringTokenAmount across the matching connection */ + offeringTokenAmount?: Maybe; + /** Minimum of raiseTokenAmount across the matching connection */ + raiseTokenAmount?: Maybe; + /** Minimum of stoId across the matching connection */ + stoId?: Maybe; +}; + +export type InvestmentStddevPopulationAggregateFilter = { + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentStddevPopulationAggregates = { + __typename?: 'InvestmentStddevPopulationAggregates'; + /** Population standard deviation of offeringTokenAmount across the matching connection */ + offeringTokenAmount?: Maybe; + /** Population standard deviation of raiseTokenAmount across the matching connection */ + raiseTokenAmount?: Maybe; + /** Population standard deviation of stoId across the matching connection */ + stoId?: Maybe; +}; + +export type InvestmentStddevSampleAggregateFilter = { + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentStddevSampleAggregates = { + __typename?: 'InvestmentStddevSampleAggregates'; + /** Sample standard deviation of offeringTokenAmount across the matching connection */ + offeringTokenAmount?: Maybe; + /** Sample standard deviation of raiseTokenAmount across the matching connection */ + raiseTokenAmount?: Maybe; + /** Sample standard deviation of stoId across the matching connection */ + stoId?: Maybe; +}; + +export type InvestmentSumAggregateFilter = { + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentSumAggregates = { + __typename?: 'InvestmentSumAggregates'; + /** Sum of offeringTokenAmount across the matching connection */ + offeringTokenAmount: Scalars['BigFloat']['output']; + /** Sum of raiseTokenAmount across the matching connection */ + raiseTokenAmount: Scalars['BigFloat']['output']; + /** Sum of stoId across the matching connection */ + stoId: Scalars['BigInt']['output']; +}; + +export type InvestmentVariancePopulationAggregateFilter = { + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentVariancePopulationAggregates = { + __typename?: 'InvestmentVariancePopulationAggregates'; + /** Population variance of offeringTokenAmount across the matching connection */ + offeringTokenAmount?: Maybe; + /** Population variance of raiseTokenAmount across the matching connection */ + raiseTokenAmount?: Maybe; + /** Population variance of stoId across the matching connection */ + stoId?: Maybe; +}; + +export type InvestmentVarianceSampleAggregateFilter = { + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentVarianceSampleAggregates = { + __typename?: 'InvestmentVarianceSampleAggregates'; + /** Sample variance of offeringTokenAmount across the matching connection */ + offeringTokenAmount?: Maybe; + /** Sample variance of raiseTokenAmount across the matching connection */ + raiseTokenAmount?: Maybe; + /** Sample variance of stoId across the matching connection */ + stoId?: Maybe; +}; + +/** A connection to a list of `Investment` values. */ +export type InvestmentsConnection = { + __typename?: 'InvestmentsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Investment` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Investment` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Investment` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Investment` values. */ +export type InvestmentsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Investment` edge in the connection. */ +export type InvestmentsEdge = { + __typename?: 'InvestmentsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Investment` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Investment` for usage during aggregation. */ +export enum InvestmentsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + Id = 'ID', + InvestorId = 'INVESTOR_ID', + OfferingAssetId = 'OFFERING_ASSET_ID', + OfferingToken = 'OFFERING_TOKEN', + OfferingTokenAmount = 'OFFERING_TOKEN_AMOUNT', + RaiseToken = 'RAISE_TOKEN', + RaiseTokenAmount = 'RAISE_TOKEN_AMOUNT', + RaisingAssetId = 'RAISING_ASSET_ID', + StoId = 'STO_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type InvestmentsHavingAverageInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentsHavingDistinctCountInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +/** Conditions for `Investment` aggregates. */ +export type InvestmentsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type InvestmentsHavingMaxInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentsHavingMinInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentsHavingStddevSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentsHavingSumInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +export type InvestmentsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + offeringTokenAmount?: InputMaybe; + raiseTokenAmount?: InputMaybe; + stoId?: InputMaybe; +}; + +/** Methods to use when ordering `Investment`. */ +export enum InvestmentsOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + InvestorIdAsc = 'INVESTOR_ID_ASC', + InvestorIdDesc = 'INVESTOR_ID_DESC', + Natural = 'NATURAL', + OfferingAssetIdAsc = 'OFFERING_ASSET_ID_ASC', + OfferingAssetIdDesc = 'OFFERING_ASSET_ID_DESC', + OfferingTokenAmountAsc = 'OFFERING_TOKEN_AMOUNT_ASC', + OfferingTokenAmountDesc = 'OFFERING_TOKEN_AMOUNT_DESC', + OfferingTokenAsc = 'OFFERING_TOKEN_ASC', + OfferingTokenDesc = 'OFFERING_TOKEN_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + RaiseTokenAmountAsc = 'RAISE_TOKEN_AMOUNT_ASC', + RaiseTokenAmountDesc = 'RAISE_TOKEN_AMOUNT_DESC', + RaiseTokenAsc = 'RAISE_TOKEN_ASC', + RaiseTokenDesc = 'RAISE_TOKEN_DESC', + RaisingAssetIdAsc = 'RAISING_ASSET_ID_ASC', + RaisingAssetIdDesc = 'RAISING_ASSET_ID_DESC', + StoIdAsc = 'STO_ID_ASC', + StoIdDesc = 'STO_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** A filter to be used against JSON fields. All fields are combined with a logical ‘and.’ */ +export type JsonFilter = { + /** Contained by the specified JSON. */ + containedBy?: InputMaybe; + /** Contains the specified JSON. */ + contains?: InputMaybe; + /** Contains all of the specified keys. */ + containsAllKeys?: InputMaybe>; + /** Contains any of the specified keys. */ + containsAnyKeys?: InputMaybe>; + /** Contains the specified key. */ + containsKey?: InputMaybe; + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type Leg = Node & { + __typename?: 'Leg'; + addresses: Scalars['JSON']['output']; + /** `amount` is null for non-fungible legs */ + amount?: Maybe; + /** `assetId` can be ID of the asset for the on chain or ticker of an off chain asset */ + assetId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Block`. */ + blocksByOffChainReceiptLegIdAndCreatedBlockId: LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByOffChainReceiptLegIdAndUpdatedBlockId: LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Leg`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + from: Scalars['String']['output']; + /** `fromPortfolio` is null for off chain legs */ + fromPortfolio?: Maybe; + id: Scalars['String']['output']; + /** Reads a single `Instruction` that is related to this `Leg`. */ + instruction?: Maybe; + instructionId: Scalars['String']['output']; + legIndex: Scalars['Int']['output']; + legType: LegTypeEnum; + /** `nftIds` is only applicable for non-fungible legs */ + nftIds?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceipts: OffChainReceiptsConnection; + ticker?: Maybe; + to: Scalars['String']['output']; + /** `toPortfolio` is null for off chain legs */ + toPortfolio?: Maybe; + /** Reads a single `Block` that is related to this `Leg`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type LegOffChainReceiptsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type LegAggregates = { + __typename?: 'LegAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Leg` object types. */ +export type LegAggregatesFilter = { + /** Mean average aggregate over matching `Leg` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Leg` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Leg` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Leg` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Leg` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Leg` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Leg` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Leg` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Leg` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Leg` objects. */ + varianceSample?: InputMaybe; +}; + +export type LegAverageAggregateFilter = { + amount?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegAverageAggregates = { + __typename?: 'LegAverageAggregates'; + /** Mean average of amount across the matching connection */ + amount?: Maybe; + /** Mean average of fromPortfolio across the matching connection */ + fromPortfolio?: Maybe; + /** Mean average of legIndex across the matching connection */ + legIndex?: Maybe; + /** Mean average of toPortfolio across the matching connection */ + toPortfolio?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ +export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `OffChainReceipt`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ +export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `OffChainReceipt`. */ +export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByCreatedBlockId: OffChainReceiptsConnection; +}; + +/** A `Block` edge in the connection, with data from `OffChainReceipt`. */ +export type LegBlocksByOffChainReceiptLegIdAndCreatedBlockIdManyToManyEdgeOffChainReceiptsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ +export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `OffChainReceipt`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `OffChainReceipt`. */ +export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `OffChainReceipt`. */ +export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceiptsByUpdatedBlockId: OffChainReceiptsConnection; +}; + +/** A `Block` edge in the connection, with data from `OffChainReceipt`. */ +export type LegBlocksByOffChainReceiptLegIdAndUpdatedBlockIdManyToManyEdgeOffChainReceiptsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type LegDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + addresses?: InputMaybe; + amount?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + from?: InputMaybe; + fromPortfolio?: InputMaybe; + id?: InputMaybe; + instructionId?: InputMaybe; + legIndex?: InputMaybe; + legType?: InputMaybe; + nftIds?: InputMaybe; + ticker?: InputMaybe; + to?: InputMaybe; + toPortfolio?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type LegDistinctCountAggregates = { + __typename?: 'LegDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of addresses across the matching connection */ + addresses?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of from across the matching connection */ + from?: Maybe; + /** Distinct count of fromPortfolio across the matching connection */ + fromPortfolio?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of instructionId across the matching connection */ + instructionId?: Maybe; + /** Distinct count of legIndex across the matching connection */ + legIndex?: Maybe; + /** Distinct count of legType across the matching connection */ + legType?: Maybe; + /** Distinct count of nftIds across the matching connection */ + nftIds?: Maybe; + /** Distinct count of ticker across the matching connection */ + ticker?: Maybe; + /** Distinct count of to across the matching connection */ + to?: Maybe; + /** Distinct count of toPortfolio across the matching connection */ + toPortfolio?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `Leg` object types. All fields are combined with a logical ‘and.’ */ +export type LegFilter = { + /** Filter by the object’s `addresses` field. */ + addresses?: InputMaybe; + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `from` field. */ + from?: InputMaybe; + /** Filter by the object’s `fromPortfolio` field. */ + fromPortfolio?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `instruction` relation. */ + instruction?: InputMaybe; + /** Filter by the object’s `instructionId` field. */ + instructionId?: InputMaybe; + /** Filter by the object’s `legIndex` field. */ + legIndex?: InputMaybe; + /** Filter by the object’s `legType` field. */ + legType?: InputMaybe; + /** Filter by the object’s `nftIds` field. */ + nftIds?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Filter by the object’s `offChainReceipts` relation. */ + offChainReceipts?: InputMaybe; + /** Some related `offChainReceipts` exist. */ + offChainReceiptsExist?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `ticker` field. */ + ticker?: InputMaybe; + /** Filter by the object’s `to` field. */ + to?: InputMaybe; + /** Filter by the object’s `toPortfolio` field. */ + toPortfolio?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type LegMaxAggregateFilter = { + amount?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegMaxAggregates = { + __typename?: 'LegMaxAggregates'; + /** Maximum of amount across the matching connection */ + amount?: Maybe; + /** Maximum of fromPortfolio across the matching connection */ + fromPortfolio?: Maybe; + /** Maximum of legIndex across the matching connection */ + legIndex?: Maybe; + /** Maximum of toPortfolio across the matching connection */ + toPortfolio?: Maybe; +}; + +export type LegMinAggregateFilter = { + amount?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegMinAggregates = { + __typename?: 'LegMinAggregates'; + /** Minimum of amount across the matching connection */ + amount?: Maybe; + /** Minimum of fromPortfolio across the matching connection */ + fromPortfolio?: Maybe; + /** Minimum of legIndex across the matching connection */ + legIndex?: Maybe; + /** Minimum of toPortfolio across the matching connection */ + toPortfolio?: Maybe; +}; + +export type LegStddevPopulationAggregateFilter = { + amount?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegStddevPopulationAggregates = { + __typename?: 'LegStddevPopulationAggregates'; + /** Population standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Population standard deviation of fromPortfolio across the matching connection */ + fromPortfolio?: Maybe; + /** Population standard deviation of legIndex across the matching connection */ + legIndex?: Maybe; + /** Population standard deviation of toPortfolio across the matching connection */ + toPortfolio?: Maybe; +}; + +export type LegStddevSampleAggregateFilter = { + amount?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegStddevSampleAggregates = { + __typename?: 'LegStddevSampleAggregates'; + /** Sample standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Sample standard deviation of fromPortfolio across the matching connection */ + fromPortfolio?: Maybe; + /** Sample standard deviation of legIndex across the matching connection */ + legIndex?: Maybe; + /** Sample standard deviation of toPortfolio across the matching connection */ + toPortfolio?: Maybe; +}; + +export type LegSumAggregateFilter = { + amount?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegSumAggregates = { + __typename?: 'LegSumAggregates'; + /** Sum of amount across the matching connection */ + amount: Scalars['BigFloat']['output']; + /** Sum of fromPortfolio across the matching connection */ + fromPortfolio: Scalars['BigInt']['output']; + /** Sum of legIndex across the matching connection */ + legIndex: Scalars['BigInt']['output']; + /** Sum of toPortfolio across the matching connection */ + toPortfolio: Scalars['BigInt']['output']; +}; + +/** A filter to be used against many `OffChainReceipt` object types. All fields are combined with a logical ‘and.’ */ +export type LegToManyOffChainReceiptFilter = { + /** Aggregates across related `OffChainReceipt` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `OffChainReceipt` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `OffChainReceipt` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `OffChainReceipt` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** Represents all possible states of an Instruction */ +export enum LegTypeEnum { + Fungible = 'Fungible', + NonFungible = 'NonFungible', + OffChain = 'OffChain', +} + +/** A filter to be used against LegTypeEnum fields. All fields are combined with a logical ‘and.’ */ +export type LegTypeEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type LegVariancePopulationAggregateFilter = { + amount?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegVariancePopulationAggregates = { + __typename?: 'LegVariancePopulationAggregates'; + /** Population variance of amount across the matching connection */ + amount?: Maybe; + /** Population variance of fromPortfolio across the matching connection */ + fromPortfolio?: Maybe; + /** Population variance of legIndex across the matching connection */ + legIndex?: Maybe; + /** Population variance of toPortfolio across the matching connection */ + toPortfolio?: Maybe; +}; + +export type LegVarianceSampleAggregateFilter = { + amount?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegVarianceSampleAggregates = { + __typename?: 'LegVarianceSampleAggregates'; + /** Sample variance of amount across the matching connection */ + amount?: Maybe; + /** Sample variance of fromPortfolio across the matching connection */ + fromPortfolio?: Maybe; + /** Sample variance of legIndex across the matching connection */ + legIndex?: Maybe; + /** Sample variance of toPortfolio across the matching connection */ + toPortfolio?: Maybe; +}; + +/** A connection to a list of `Leg` values. */ +export type LegsConnection = { + __typename?: 'LegsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Leg` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Leg` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Leg` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Leg` values. */ +export type LegsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Leg` edge in the connection. */ +export type LegsEdge = { + __typename?: 'LegsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Leg` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Leg` for usage during aggregation. */ +export enum LegsGroupBy { + Addresses = 'ADDRESSES', + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + From = 'FROM', + FromPortfolio = 'FROM_PORTFOLIO', + Id = 'ID', + InstructionId = 'INSTRUCTION_ID', + LegIndex = 'LEG_INDEX', + LegType = 'LEG_TYPE', + NftIds = 'NFT_IDS', + Ticker = 'TICKER', + To = 'TO', + ToPortfolio = 'TO_PORTFOLIO', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type LegsHavingAverageInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegsHavingDistinctCountInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +/** Conditions for `Leg` aggregates. */ +export type LegsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type LegsHavingMaxInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegsHavingMinInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegsHavingStddevPopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegsHavingStddevSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegsHavingSumInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegsHavingVariancePopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +export type LegsHavingVarianceSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + fromPortfolio?: InputMaybe; + legIndex?: InputMaybe; + toPortfolio?: InputMaybe; +}; + +/** Methods to use when ordering `Leg`. */ +export enum LegsOrderBy { + AddressesAsc = 'ADDRESSES_ASC', + AddressesDesc = 'ADDRESSES_DESC', + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + FromAsc = 'FROM_ASC', + FromDesc = 'FROM_DESC', + FromPortfolioAsc = 'FROM_PORTFOLIO_ASC', + FromPortfolioDesc = 'FROM_PORTFOLIO_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + InstructionIdAsc = 'INSTRUCTION_ID_ASC', + InstructionIdDesc = 'INSTRUCTION_ID_DESC', + LegIndexAsc = 'LEG_INDEX_ASC', + LegIndexDesc = 'LEG_INDEX_DESC', + LegTypeAsc = 'LEG_TYPE_ASC', + LegTypeDesc = 'LEG_TYPE_DESC', + Natural = 'NATURAL', + NftIdsAsc = 'NFT_IDS_ASC', + NftIdsDesc = 'NFT_IDS_DESC', + OffChainReceiptsAverageBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_AVERAGE_BLOCK_RANGE_ASC', + OffChainReceiptsAverageBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_AVERAGE_BLOCK_RANGE_DESC', + OffChainReceiptsAverageCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_AVERAGE_CREATED_AT_ASC', + OffChainReceiptsAverageCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_AVERAGE_CREATED_AT_DESC', + OffChainReceiptsAverageCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_AVERAGE_CREATED_BLOCK_ID_ASC', + OffChainReceiptsAverageCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_AVERAGE_CREATED_BLOCK_ID_DESC', + OffChainReceiptsAverageIdAsc = 'OFF_CHAIN_RECEIPTS_AVERAGE_ID_ASC', + OffChainReceiptsAverageIdDesc = 'OFF_CHAIN_RECEIPTS_AVERAGE_ID_DESC', + OffChainReceiptsAverageLegIdAsc = 'OFF_CHAIN_RECEIPTS_AVERAGE_LEG_ID_ASC', + OffChainReceiptsAverageLegIdDesc = 'OFF_CHAIN_RECEIPTS_AVERAGE_LEG_ID_DESC', + OffChainReceiptsAverageMetadataAsc = 'OFF_CHAIN_RECEIPTS_AVERAGE_METADATA_ASC', + OffChainReceiptsAverageMetadataDesc = 'OFF_CHAIN_RECEIPTS_AVERAGE_METADATA_DESC', + OffChainReceiptsAverageSignerAsc = 'OFF_CHAIN_RECEIPTS_AVERAGE_SIGNER_ASC', + OffChainReceiptsAverageSignerDesc = 'OFF_CHAIN_RECEIPTS_AVERAGE_SIGNER_DESC', + OffChainReceiptsAverageUidAsc = 'OFF_CHAIN_RECEIPTS_AVERAGE_UID_ASC', + OffChainReceiptsAverageUidDesc = 'OFF_CHAIN_RECEIPTS_AVERAGE_UID_DESC', + OffChainReceiptsAverageUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_AVERAGE_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsAverageUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_AVERAGE_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsCountAsc = 'OFF_CHAIN_RECEIPTS_COUNT_ASC', + OffChainReceiptsCountDesc = 'OFF_CHAIN_RECEIPTS_COUNT_DESC', + OffChainReceiptsDistinctCountBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + OffChainReceiptsDistinctCountBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + OffChainReceiptsDistinctCountCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_CREATED_AT_ASC', + OffChainReceiptsDistinctCountCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_CREATED_AT_DESC', + OffChainReceiptsDistinctCountCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + OffChainReceiptsDistinctCountCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + OffChainReceiptsDistinctCountIdAsc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_ID_ASC', + OffChainReceiptsDistinctCountIdDesc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_ID_DESC', + OffChainReceiptsDistinctCountLegIdAsc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_LEG_ID_ASC', + OffChainReceiptsDistinctCountLegIdDesc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_LEG_ID_DESC', + OffChainReceiptsDistinctCountMetadataAsc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_METADATA_ASC', + OffChainReceiptsDistinctCountMetadataDesc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_METADATA_DESC', + OffChainReceiptsDistinctCountSignerAsc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_SIGNER_ASC', + OffChainReceiptsDistinctCountSignerDesc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_SIGNER_DESC', + OffChainReceiptsDistinctCountUidAsc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_UID_ASC', + OffChainReceiptsDistinctCountUidDesc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_UID_DESC', + OffChainReceiptsDistinctCountUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsDistinctCountUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsMaxBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_MAX_BLOCK_RANGE_ASC', + OffChainReceiptsMaxBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_MAX_BLOCK_RANGE_DESC', + OffChainReceiptsMaxCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_MAX_CREATED_AT_ASC', + OffChainReceiptsMaxCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_MAX_CREATED_AT_DESC', + OffChainReceiptsMaxCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_MAX_CREATED_BLOCK_ID_ASC', + OffChainReceiptsMaxCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_MAX_CREATED_BLOCK_ID_DESC', + OffChainReceiptsMaxIdAsc = 'OFF_CHAIN_RECEIPTS_MAX_ID_ASC', + OffChainReceiptsMaxIdDesc = 'OFF_CHAIN_RECEIPTS_MAX_ID_DESC', + OffChainReceiptsMaxLegIdAsc = 'OFF_CHAIN_RECEIPTS_MAX_LEG_ID_ASC', + OffChainReceiptsMaxLegIdDesc = 'OFF_CHAIN_RECEIPTS_MAX_LEG_ID_DESC', + OffChainReceiptsMaxMetadataAsc = 'OFF_CHAIN_RECEIPTS_MAX_METADATA_ASC', + OffChainReceiptsMaxMetadataDesc = 'OFF_CHAIN_RECEIPTS_MAX_METADATA_DESC', + OffChainReceiptsMaxSignerAsc = 'OFF_CHAIN_RECEIPTS_MAX_SIGNER_ASC', + OffChainReceiptsMaxSignerDesc = 'OFF_CHAIN_RECEIPTS_MAX_SIGNER_DESC', + OffChainReceiptsMaxUidAsc = 'OFF_CHAIN_RECEIPTS_MAX_UID_ASC', + OffChainReceiptsMaxUidDesc = 'OFF_CHAIN_RECEIPTS_MAX_UID_DESC', + OffChainReceiptsMaxUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_MAX_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsMaxUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_MAX_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsMinBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_MIN_BLOCK_RANGE_ASC', + OffChainReceiptsMinBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_MIN_BLOCK_RANGE_DESC', + OffChainReceiptsMinCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_MIN_CREATED_AT_ASC', + OffChainReceiptsMinCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_MIN_CREATED_AT_DESC', + OffChainReceiptsMinCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_MIN_CREATED_BLOCK_ID_ASC', + OffChainReceiptsMinCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_MIN_CREATED_BLOCK_ID_DESC', + OffChainReceiptsMinIdAsc = 'OFF_CHAIN_RECEIPTS_MIN_ID_ASC', + OffChainReceiptsMinIdDesc = 'OFF_CHAIN_RECEIPTS_MIN_ID_DESC', + OffChainReceiptsMinLegIdAsc = 'OFF_CHAIN_RECEIPTS_MIN_LEG_ID_ASC', + OffChainReceiptsMinLegIdDesc = 'OFF_CHAIN_RECEIPTS_MIN_LEG_ID_DESC', + OffChainReceiptsMinMetadataAsc = 'OFF_CHAIN_RECEIPTS_MIN_METADATA_ASC', + OffChainReceiptsMinMetadataDesc = 'OFF_CHAIN_RECEIPTS_MIN_METADATA_DESC', + OffChainReceiptsMinSignerAsc = 'OFF_CHAIN_RECEIPTS_MIN_SIGNER_ASC', + OffChainReceiptsMinSignerDesc = 'OFF_CHAIN_RECEIPTS_MIN_SIGNER_DESC', + OffChainReceiptsMinUidAsc = 'OFF_CHAIN_RECEIPTS_MIN_UID_ASC', + OffChainReceiptsMinUidDesc = 'OFF_CHAIN_RECEIPTS_MIN_UID_DESC', + OffChainReceiptsMinUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_MIN_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsMinUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_MIN_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsStddevPopulationBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + OffChainReceiptsStddevPopulationBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + OffChainReceiptsStddevPopulationCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_CREATED_AT_ASC', + OffChainReceiptsStddevPopulationCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_CREATED_AT_DESC', + OffChainReceiptsStddevPopulationCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + OffChainReceiptsStddevPopulationCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + OffChainReceiptsStddevPopulationIdAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_ID_ASC', + OffChainReceiptsStddevPopulationIdDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_ID_DESC', + OffChainReceiptsStddevPopulationLegIdAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_LEG_ID_ASC', + OffChainReceiptsStddevPopulationLegIdDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_LEG_ID_DESC', + OffChainReceiptsStddevPopulationMetadataAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_METADATA_ASC', + OffChainReceiptsStddevPopulationMetadataDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_METADATA_DESC', + OffChainReceiptsStddevPopulationSignerAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_SIGNER_ASC', + OffChainReceiptsStddevPopulationSignerDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_SIGNER_DESC', + OffChainReceiptsStddevPopulationUidAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_UID_ASC', + OffChainReceiptsStddevPopulationUidDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_UID_DESC', + OffChainReceiptsStddevPopulationUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsStddevPopulationUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsStddevSampleBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + OffChainReceiptsStddevSampleBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + OffChainReceiptsStddevSampleCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_CREATED_AT_ASC', + OffChainReceiptsStddevSampleCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_CREATED_AT_DESC', + OffChainReceiptsStddevSampleCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + OffChainReceiptsStddevSampleCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + OffChainReceiptsStddevSampleIdAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_ID_ASC', + OffChainReceiptsStddevSampleIdDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_ID_DESC', + OffChainReceiptsStddevSampleLegIdAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_LEG_ID_ASC', + OffChainReceiptsStddevSampleLegIdDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_LEG_ID_DESC', + OffChainReceiptsStddevSampleMetadataAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_METADATA_ASC', + OffChainReceiptsStddevSampleMetadataDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_METADATA_DESC', + OffChainReceiptsStddevSampleSignerAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_SIGNER_ASC', + OffChainReceiptsStddevSampleSignerDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_SIGNER_DESC', + OffChainReceiptsStddevSampleUidAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_UID_ASC', + OffChainReceiptsStddevSampleUidDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_UID_DESC', + OffChainReceiptsStddevSampleUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsStddevSampleUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsSumBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_SUM_BLOCK_RANGE_ASC', + OffChainReceiptsSumBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_SUM_BLOCK_RANGE_DESC', + OffChainReceiptsSumCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_SUM_CREATED_AT_ASC', + OffChainReceiptsSumCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_SUM_CREATED_AT_DESC', + OffChainReceiptsSumCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_SUM_CREATED_BLOCK_ID_ASC', + OffChainReceiptsSumCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_SUM_CREATED_BLOCK_ID_DESC', + OffChainReceiptsSumIdAsc = 'OFF_CHAIN_RECEIPTS_SUM_ID_ASC', + OffChainReceiptsSumIdDesc = 'OFF_CHAIN_RECEIPTS_SUM_ID_DESC', + OffChainReceiptsSumLegIdAsc = 'OFF_CHAIN_RECEIPTS_SUM_LEG_ID_ASC', + OffChainReceiptsSumLegIdDesc = 'OFF_CHAIN_RECEIPTS_SUM_LEG_ID_DESC', + OffChainReceiptsSumMetadataAsc = 'OFF_CHAIN_RECEIPTS_SUM_METADATA_ASC', + OffChainReceiptsSumMetadataDesc = 'OFF_CHAIN_RECEIPTS_SUM_METADATA_DESC', + OffChainReceiptsSumSignerAsc = 'OFF_CHAIN_RECEIPTS_SUM_SIGNER_ASC', + OffChainReceiptsSumSignerDesc = 'OFF_CHAIN_RECEIPTS_SUM_SIGNER_DESC', + OffChainReceiptsSumUidAsc = 'OFF_CHAIN_RECEIPTS_SUM_UID_ASC', + OffChainReceiptsSumUidDesc = 'OFF_CHAIN_RECEIPTS_SUM_UID_DESC', + OffChainReceiptsSumUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_SUM_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsSumUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_SUM_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsVariancePopulationBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + OffChainReceiptsVariancePopulationBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + OffChainReceiptsVariancePopulationCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_CREATED_AT_ASC', + OffChainReceiptsVariancePopulationCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_CREATED_AT_DESC', + OffChainReceiptsVariancePopulationCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + OffChainReceiptsVariancePopulationCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + OffChainReceiptsVariancePopulationIdAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_ID_ASC', + OffChainReceiptsVariancePopulationIdDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_ID_DESC', + OffChainReceiptsVariancePopulationLegIdAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_LEG_ID_ASC', + OffChainReceiptsVariancePopulationLegIdDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_LEG_ID_DESC', + OffChainReceiptsVariancePopulationMetadataAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_METADATA_ASC', + OffChainReceiptsVariancePopulationMetadataDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_METADATA_DESC', + OffChainReceiptsVariancePopulationSignerAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_SIGNER_ASC', + OffChainReceiptsVariancePopulationSignerDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_SIGNER_DESC', + OffChainReceiptsVariancePopulationUidAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_UID_ASC', + OffChainReceiptsVariancePopulationUidDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_UID_DESC', + OffChainReceiptsVariancePopulationUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsVariancePopulationUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + OffChainReceiptsVarianceSampleBlockRangeAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + OffChainReceiptsVarianceSampleBlockRangeDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + OffChainReceiptsVarianceSampleCreatedAtAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + OffChainReceiptsVarianceSampleCreatedAtDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + OffChainReceiptsVarianceSampleCreatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + OffChainReceiptsVarianceSampleCreatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + OffChainReceiptsVarianceSampleIdAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_ID_ASC', + OffChainReceiptsVarianceSampleIdDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_ID_DESC', + OffChainReceiptsVarianceSampleLegIdAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_LEG_ID_ASC', + OffChainReceiptsVarianceSampleLegIdDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_LEG_ID_DESC', + OffChainReceiptsVarianceSampleMetadataAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_METADATA_ASC', + OffChainReceiptsVarianceSampleMetadataDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_METADATA_DESC', + OffChainReceiptsVarianceSampleSignerAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_SIGNER_ASC', + OffChainReceiptsVarianceSampleSignerDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_SIGNER_DESC', + OffChainReceiptsVarianceSampleUidAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_UID_ASC', + OffChainReceiptsVarianceSampleUidDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_UID_DESC', + OffChainReceiptsVarianceSampleUpdatedBlockIdAsc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + OffChainReceiptsVarianceSampleUpdatedBlockIdDesc = 'OFF_CHAIN_RECEIPTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + TickerAsc = 'TICKER_ASC', + TickerDesc = 'TICKER_DESC', + ToAsc = 'TO_ASC', + ToDesc = 'TO_DESC', + ToPortfolioAsc = 'TO_PORTFOLIO_ASC', + ToPortfolioDesc = 'TO_PORTFOLIO_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type Migration = Node & { + __typename?: 'Migration'; + createdAt?: Maybe; + executed: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + number: Scalars['Int']['output']; + processedBlock: Scalars['Int']['output']; + version: Scalars['String']['output']; +}; + +export type MigrationAggregates = { + __typename?: 'MigrationAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +export type MigrationAverageAggregates = { + __typename?: 'MigrationAverageAggregates'; + /** Mean average of executed across the matching connection */ + executed?: Maybe; + /** Mean average of number across the matching connection */ + number?: Maybe; + /** Mean average of processedBlock across the matching connection */ + processedBlock?: Maybe; +}; + +export type MigrationDistinctCountAggregates = { + __typename?: 'MigrationDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of executed across the matching connection */ + executed?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of number across the matching connection */ + number?: Maybe; + /** Distinct count of processedBlock across the matching connection */ + processedBlock?: Maybe; + /** Distinct count of version across the matching connection */ + version?: Maybe; +}; + +/** A filter to be used against `Migration` object types. All fields are combined with a logical ‘and.’ */ +export type MigrationFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `executed` field. */ + executed?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Filter by the object’s `number` field. */ + number?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `processedBlock` field. */ + processedBlock?: InputMaybe; + /** Filter by the object’s `version` field. */ + version?: InputMaybe; +}; + +export type MigrationMaxAggregates = { + __typename?: 'MigrationMaxAggregates'; + /** Maximum of executed across the matching connection */ + executed?: Maybe; + /** Maximum of number across the matching connection */ + number?: Maybe; + /** Maximum of processedBlock across the matching connection */ + processedBlock?: Maybe; +}; + +export type MigrationMinAggregates = { + __typename?: 'MigrationMinAggregates'; + /** Minimum of executed across the matching connection */ + executed?: Maybe; + /** Minimum of number across the matching connection */ + number?: Maybe; + /** Minimum of processedBlock across the matching connection */ + processedBlock?: Maybe; +}; + +export type MigrationStddevPopulationAggregates = { + __typename?: 'MigrationStddevPopulationAggregates'; + /** Population standard deviation of executed across the matching connection */ + executed?: Maybe; + /** Population standard deviation of number across the matching connection */ + number?: Maybe; + /** Population standard deviation of processedBlock across the matching connection */ + processedBlock?: Maybe; +}; + +export type MigrationStddevSampleAggregates = { + __typename?: 'MigrationStddevSampleAggregates'; + /** Sample standard deviation of executed across the matching connection */ + executed?: Maybe; + /** Sample standard deviation of number across the matching connection */ + number?: Maybe; + /** Sample standard deviation of processedBlock across the matching connection */ + processedBlock?: Maybe; +}; + +export type MigrationSumAggregates = { + __typename?: 'MigrationSumAggregates'; + /** Sum of executed across the matching connection */ + executed: Scalars['BigInt']['output']; + /** Sum of number across the matching connection */ + number: Scalars['BigInt']['output']; + /** Sum of processedBlock across the matching connection */ + processedBlock: Scalars['BigInt']['output']; +}; + +export type MigrationVariancePopulationAggregates = { + __typename?: 'MigrationVariancePopulationAggregates'; + /** Population variance of executed across the matching connection */ + executed?: Maybe; + /** Population variance of number across the matching connection */ + number?: Maybe; + /** Population variance of processedBlock across the matching connection */ + processedBlock?: Maybe; +}; + +export type MigrationVarianceSampleAggregates = { + __typename?: 'MigrationVarianceSampleAggregates'; + /** Sample variance of executed across the matching connection */ + executed?: Maybe; + /** Sample variance of number across the matching connection */ + number?: Maybe; + /** Sample variance of processedBlock across the matching connection */ + processedBlock?: Maybe; +}; + +/** A connection to a list of `Migration` values. */ +export type MigrationsConnection = { + __typename?: 'MigrationsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Migration` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Migration` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Migration` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Migration` values. */ +export type MigrationsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Migration` edge in the connection. */ +export type MigrationsEdge = { + __typename?: 'MigrationsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Migration` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Migration` for usage during aggregation. */ +export enum MigrationsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + Executed = 'EXECUTED', + Id = 'ID', + Number = 'NUMBER', + ProcessedBlock = 'PROCESSED_BLOCK', + Version = 'VERSION', +} + +export type MigrationsHavingAverageInput = { + createdAt?: InputMaybe; + executed?: InputMaybe; + number?: InputMaybe; + processedBlock?: InputMaybe; +}; + +export type MigrationsHavingDistinctCountInput = { + createdAt?: InputMaybe; + executed?: InputMaybe; + number?: InputMaybe; + processedBlock?: InputMaybe; +}; + +/** Conditions for `Migration` aggregates. */ +export type MigrationsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type MigrationsHavingMaxInput = { + createdAt?: InputMaybe; + executed?: InputMaybe; + number?: InputMaybe; + processedBlock?: InputMaybe; +}; + +export type MigrationsHavingMinInput = { + createdAt?: InputMaybe; + executed?: InputMaybe; + number?: InputMaybe; + processedBlock?: InputMaybe; +}; + +export type MigrationsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + executed?: InputMaybe; + number?: InputMaybe; + processedBlock?: InputMaybe; +}; + +export type MigrationsHavingStddevSampleInput = { + createdAt?: InputMaybe; + executed?: InputMaybe; + number?: InputMaybe; + processedBlock?: InputMaybe; +}; + +export type MigrationsHavingSumInput = { + createdAt?: InputMaybe; + executed?: InputMaybe; + number?: InputMaybe; + processedBlock?: InputMaybe; +}; + +export type MigrationsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + executed?: InputMaybe; + number?: InputMaybe; + processedBlock?: InputMaybe; +}; + +export type MigrationsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + executed?: InputMaybe; + number?: InputMaybe; + processedBlock?: InputMaybe; +}; + +/** Methods to use when ordering `Migration`. */ +export enum MigrationsOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + ExecutedAsc = 'EXECUTED_ASC', + ExecutedDesc = 'EXECUTED_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + NumberAsc = 'NUMBER_ASC', + NumberDesc = 'NUMBER_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ProcessedBlockAsc = 'PROCESSED_BLOCK_ASC', + ProcessedBlockDesc = 'PROCESSED_BLOCK_DESC', + VersionAsc = 'VERSION_ASC', + VersionDesc = 'VERSION_DESC', +} + +/** Represents all known chain "pallets" */ +export enum ModuleIdEnum { + Asset = 'asset', + Authoritydiscovery = 'authoritydiscovery', + Authorship = 'authorship', + Babe = 'babe', + Balances = 'balances', + Base = 'base', + Bridge = 'bridge', + Capitaldistribution = 'capitaldistribution', + Cddserviceproviders = 'cddserviceproviders', + Checkpoint = 'checkpoint', + Committeemembership = 'committeemembership', + Compliancemanager = 'compliancemanager', + Confidential = 'confidential', + Confidentialasset = 'confidentialasset', + Contracts = 'contracts', + Corporateaction = 'corporateaction', + Corporateballot = 'corporateballot', + Dividend = 'dividend', + Exemption = 'exemption', + Externalagents = 'externalagents', + Finalitytracker = 'finalitytracker', + Grandpa = 'grandpa', + Historical = 'historical', + Identity = 'identity', + Imonline = 'imonline', + Indices = 'indices', + Multisig = 'multisig', + Nft = 'nft', + Offences = 'offences', + Permissions = 'permissions', + Pips = 'pips', + Polymeshcommittee = 'polymeshcommittee', + Polymeshcontracts = 'polymeshcontracts', + Portfolio = 'portfolio', + Preimage = 'preimage', + Protocolfee = 'protocolfee', + Randomnesscollectiveflip = 'randomnesscollectiveflip', + Relayer = 'relayer', + Rewards = 'rewards', + Scheduler = 'scheduler', + Session = 'session', + Settlement = 'settlement', + Staking = 'staking', + Statetriemigration = 'statetriemigration', + Statistics = 'statistics', + Sto = 'sto', + Stocapped = 'stocapped', + Sudo = 'sudo', + System = 'system', + Technicalcommittee = 'technicalcommittee', + Technicalcommitteemembership = 'technicalcommitteemembership', + Testutils = 'testutils', + Timestamp = 'timestamp', + Transactionpayment = 'transactionpayment', + Treasury = 'treasury', + Upgradecommittee = 'upgradecommittee', + Upgradecommitteemembership = 'upgradecommitteemembership', + Utility = 'utility', +} + +/** A filter to be used against ModuleIdEnum fields. All fields are combined with a logical ‘and.’ */ +export type ModuleIdEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type MultiSig = Node & { + __typename?: 'MultiSig'; + address: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalMultisigIdAndCreatedBlockId: MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalMultisigIdAndUpdatedBlockId: MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigSignerMultisigIdAndCreatedBlockId: MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigSignerMultisigIdAndUpdatedBlockId: MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `MultiSig`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `MultiSig`. */ + creator?: Maybe; + /** Reads a single `Account` that is related to this `MultiSig`. */ + creatorAccount?: Maybe; + creatorAccountId: Scalars['String']['output']; + creatorId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByMultiSigProposalMultisigIdAndCreatorId: MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyConnection; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + proposals: MultiSigProposalsConnection; + signaturesRequired: Scalars['Int']['output']; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + signers: MultiSigSignersConnection; + /** Reads a single `Block` that is related to this `MultiSig`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigProposalsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigSignersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigAggregates = { + __typename?: 'MultiSigAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `MultiSig` object types. */ +export type MultiSigAggregatesFilter = { + /** Mean average aggregate over matching `MultiSig` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `MultiSig` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `MultiSig` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `MultiSig` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `MultiSig` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `MultiSig` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `MultiSig` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `MultiSig` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `MultiSig` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `MultiSig` objects. */ + varianceSample?: InputMaybe; +}; + +export type MultiSigAverageAggregateFilter = { + signaturesRequired?: InputMaybe; +}; + +export type MultiSigAverageAggregates = { + __typename?: 'MultiSigAverageAggregates'; + /** Mean average of signaturesRequired across the matching connection */ + signaturesRequired?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByCreatedBlockId: MultiSigProposalsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type MultiSigBlocksByMultiSigProposalMultisigIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigProposal`. */ +export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByUpdatedBlockId: MultiSigProposalsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigProposal`. */ +export type MultiSigBlocksByMultiSigProposalMultisigIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ +export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigSigner`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ +export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigSigner`. */ +export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + multiSigSignersByCreatedBlockId: MultiSigSignersConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigSigner`. */ +export type MultiSigBlocksByMultiSigSignerMultisigIdAndCreatedBlockIdManyToManyEdgeMultiSigSignersByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ +export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigSigner`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigSigner`. */ +export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigSigner`. */ +export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + multiSigSignersByUpdatedBlockId: MultiSigSignersConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigSigner`. */ +export type MultiSigBlocksByMultiSigSignerMultisigIdAndUpdatedBlockIdManyToManyEdgeMultiSigSignersByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type MultiSigDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + address?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + creatorAccountId?: InputMaybe; + creatorId?: InputMaybe; + id?: InputMaybe; + signaturesRequired?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type MultiSigDistinctCountAggregates = { + __typename?: 'MultiSigDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of address across the matching connection */ + address?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of creatorAccountId across the matching connection */ + creatorAccountId?: Maybe; + /** Distinct count of creatorId across the matching connection */ + creatorId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of signaturesRequired across the matching connection */ + signaturesRequired?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `MultiSig` object types. All fields are combined with a logical ‘and.’ */ +export type MultiSigFilter = { + /** Filter by the object’s `address` field. */ + address?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `creator` relation. */ + creator?: InputMaybe; + /** Filter by the object’s `creatorAccount` relation. */ + creatorAccount?: InputMaybe; + /** Filter by the object’s `creatorAccountId` field. */ + creatorAccountId?: InputMaybe; + /** Filter by the object’s `creatorId` field. */ + creatorId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `proposals` relation. */ + proposals?: InputMaybe; + /** Some related `proposals` exist. */ + proposalsExist?: InputMaybe; + /** Filter by the object’s `signaturesRequired` field. */ + signaturesRequired?: InputMaybe; + /** Filter by the object’s `signers` relation. */ + signers?: InputMaybe; + /** Some related `signers` exist. */ + signersExist?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `MultiSigProposal`. */ +export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyConnection = { + __typename?: 'MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `MultiSigProposal`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `MultiSigProposal`. */ +export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ +export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyEdge = { + __typename?: 'MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByCreatorId: MultiSigProposalsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `MultiSigProposal`. */ +export type MultiSigIdentitiesByMultiSigProposalMultisigIdAndCreatorIdManyToManyEdgeMultiSigProposalsByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type MultiSigMaxAggregateFilter = { + signaturesRequired?: InputMaybe; +}; + +export type MultiSigMaxAggregates = { + __typename?: 'MultiSigMaxAggregates'; + /** Maximum of signaturesRequired across the matching connection */ + signaturesRequired?: Maybe; +}; + +export type MultiSigMinAggregateFilter = { + signaturesRequired?: InputMaybe; +}; + +export type MultiSigMinAggregates = { + __typename?: 'MultiSigMinAggregates'; + /** Minimum of signaturesRequired across the matching connection */ + signaturesRequired?: Maybe; +}; + +export type MultiSigProposal = Node & { + __typename?: 'MultiSigProposal'; + approvalCount: Scalars['Int']['output']; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalVoteProposalIdAndCreatedBlockId: MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalVoteProposalIdAndUpdatedBlockId: MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `MultiSigProposal`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `MultiSigProposal`. */ + creator?: Maybe; + creatorAccount: Scalars['String']['output']; + creatorId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + eventIdx: Scalars['Int']['output']; + extrinsicIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + multiSigSignersByMultiSigProposalVoteProposalIdAndSignerId: MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyConnection; + /** Reads a single `MultiSig` that is related to this `MultiSigProposal`. */ + multisig?: Maybe; + multisigId: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + params: Scalars['JSON']['output']; + proposalId: Scalars['Int']['output']; + rejectionCount: Scalars['Int']['output']; + status: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `MultiSigProposal`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; +}; + +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigProposalVotesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigProposalAggregates = { + __typename?: 'MultiSigProposalAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `MultiSigProposal` object types. */ +export type MultiSigProposalAggregatesFilter = { + /** Mean average aggregate over matching `MultiSigProposal` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `MultiSigProposal` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `MultiSigProposal` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `MultiSigProposal` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `MultiSigProposal` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `MultiSigProposal` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `MultiSigProposal` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `MultiSigProposal` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `MultiSigProposal` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `MultiSigProposal` objects. */ + varianceSample?: InputMaybe; +}; + +export type MultiSigProposalAverageAggregateFilter = { + approvalCount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalAverageAggregates = { + __typename?: 'MultiSigProposalAverageAggregates'; + /** Mean average of approvalCount across the matching connection */ + approvalCount?: Maybe; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Mean average of proposalId across the matching connection */ + proposalId?: Maybe; + /** Mean average of rejectionCount across the matching connection */ + rejectionCount?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + multiSigProposalVotesByCreatedBlockId: MultiSigProposalVotesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalVotesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + multiSigProposalVotesByUpdatedBlockId: MultiSigProposalVotesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalBlocksByMultiSigProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalVotesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type MultiSigProposalDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + approvalCount?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + creatorAccount?: InputMaybe; + creatorId?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + id?: InputMaybe; + multisigId?: InputMaybe; + params?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; + status?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type MultiSigProposalDistinctCountAggregates = { + __typename?: 'MultiSigProposalDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of approvalCount across the matching connection */ + approvalCount?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of creatorAccount across the matching connection */ + creatorAccount?: Maybe; + /** Distinct count of creatorId across the matching connection */ + creatorId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of multisigId across the matching connection */ + multisigId?: Maybe; + /** Distinct count of params across the matching connection */ + params?: Maybe; + /** Distinct count of proposalId across the matching connection */ + proposalId?: Maybe; + /** Distinct count of rejectionCount across the matching connection */ + rejectionCount?: Maybe; + /** Distinct count of status across the matching connection */ + status?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `MultiSigProposal` object types. All fields are combined with a logical ‘and.’ */ +export type MultiSigProposalFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `approvalCount` field. */ + approvalCount?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `creator` relation. */ + creator?: InputMaybe; + /** Filter by the object’s `creatorAccount` field. */ + creatorAccount?: InputMaybe; + /** Filter by the object’s `creatorId` field. */ + creatorId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `extrinsicIdx` field. */ + extrinsicIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `multisig` relation. */ + multisig?: InputMaybe; + /** Filter by the object’s `multisigId` field. */ + multisigId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `params` field. */ + params?: InputMaybe; + /** Filter by the object’s `proposalId` field. */ + proposalId?: InputMaybe; + /** Filter by the object’s `rejectionCount` field. */ + rejectionCount?: InputMaybe; + /** Filter by the object’s `status` field. */ + status?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `votes` relation. */ + votes?: InputMaybe; + /** Some related `votes` exist. */ + votesExist?: InputMaybe; +}; + +export type MultiSigProposalMaxAggregateFilter = { + approvalCount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalMaxAggregates = { + __typename?: 'MultiSigProposalMaxAggregates'; + /** Maximum of approvalCount across the matching connection */ + approvalCount?: Maybe; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Maximum of proposalId across the matching connection */ + proposalId?: Maybe; + /** Maximum of rejectionCount across the matching connection */ + rejectionCount?: Maybe; +}; + +export type MultiSigProposalMinAggregateFilter = { + approvalCount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalMinAggregates = { + __typename?: 'MultiSigProposalMinAggregates'; + /** Minimum of approvalCount across the matching connection */ + approvalCount?: Maybe; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Minimum of proposalId across the matching connection */ + proposalId?: Maybe; + /** Minimum of rejectionCount across the matching connection */ + rejectionCount?: Maybe; +}; + +/** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyConnection = + { + __typename?: 'MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigSigner`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigSigner` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigSigner` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `MultiSigSigner` values, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyEdge = + { + __typename?: 'MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigSigner` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; + }; + +/** A `MultiSigSigner` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigProposalMultiSigSignersByMultiSigProposalVoteProposalIdAndSignerIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type MultiSigProposalStddevPopulationAggregateFilter = { + approvalCount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalStddevPopulationAggregates = { + __typename?: 'MultiSigProposalStddevPopulationAggregates'; + /** Population standard deviation of approvalCount across the matching connection */ + approvalCount?: Maybe; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Population standard deviation of proposalId across the matching connection */ + proposalId?: Maybe; + /** Population standard deviation of rejectionCount across the matching connection */ + rejectionCount?: Maybe; +}; + +export type MultiSigProposalStddevSampleAggregateFilter = { + approvalCount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalStddevSampleAggregates = { + __typename?: 'MultiSigProposalStddevSampleAggregates'; + /** Sample standard deviation of approvalCount across the matching connection */ + approvalCount?: Maybe; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Sample standard deviation of proposalId across the matching connection */ + proposalId?: Maybe; + /** Sample standard deviation of rejectionCount across the matching connection */ + rejectionCount?: Maybe; +}; + +export type MultiSigProposalSumAggregateFilter = { + approvalCount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalSumAggregates = { + __typename?: 'MultiSigProposalSumAggregates'; + /** Sum of approvalCount across the matching connection */ + approvalCount: Scalars['BigInt']['output']; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of extrinsicIdx across the matching connection */ + extrinsicIdx: Scalars['BigInt']['output']; + /** Sum of proposalId across the matching connection */ + proposalId: Scalars['BigInt']['output']; + /** Sum of rejectionCount across the matching connection */ + rejectionCount: Scalars['BigInt']['output']; +}; + +/** A filter to be used against many `MultiSigProposalVote` object types. All fields are combined with a logical ‘and.’ */ +export type MultiSigProposalToManyMultiSigProposalVoteFilter = { + /** Aggregates across related `MultiSigProposalVote` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `MultiSigProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `MultiSigProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `MultiSigProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type MultiSigProposalVariancePopulationAggregateFilter = { + approvalCount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalVariancePopulationAggregates = { + __typename?: 'MultiSigProposalVariancePopulationAggregates'; + /** Population variance of approvalCount across the matching connection */ + approvalCount?: Maybe; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Population variance of proposalId across the matching connection */ + proposalId?: Maybe; + /** Population variance of rejectionCount across the matching connection */ + rejectionCount?: Maybe; +}; + +export type MultiSigProposalVarianceSampleAggregateFilter = { + approvalCount?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalVarianceSampleAggregates = { + __typename?: 'MultiSigProposalVarianceSampleAggregates'; + /** Sample variance of approvalCount across the matching connection */ + approvalCount?: Maybe; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Sample variance of proposalId across the matching connection */ + proposalId?: Maybe; + /** Sample variance of rejectionCount across the matching connection */ + rejectionCount?: Maybe; +}; + +export type MultiSigProposalVote = Node & { + __typename?: 'MultiSigProposalVote'; + action?: Maybe; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `MultiSigProposalVote`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + eventIdx: Scalars['Int']['output']; + extrinsicIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `MultiSigProposal` that is related to this `MultiSigProposalVote`. */ + proposal?: Maybe; + proposalId: Scalars['String']['output']; + /** Reads a single `MultiSigSigner` that is related to this `MultiSigProposalVote`. */ + signer?: Maybe; + signerId: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `MultiSigProposalVote`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +/** Represents action performed on MultiSig proposal */ +export enum MultiSigProposalVoteActionEnum { + Approved = 'Approved', + Rejected = 'Rejected', +} + +/** A filter to be used against MultiSigProposalVoteActionEnum fields. All fields are combined with a logical ‘and.’ */ +export type MultiSigProposalVoteActionEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type MultiSigProposalVoteAggregates = { + __typename?: 'MultiSigProposalVoteAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `MultiSigProposalVote` object types. */ +export type MultiSigProposalVoteAggregatesFilter = { + /** Mean average aggregate over matching `MultiSigProposalVote` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `MultiSigProposalVote` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `MultiSigProposalVote` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `MultiSigProposalVote` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `MultiSigProposalVote` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `MultiSigProposalVote` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `MultiSigProposalVote` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `MultiSigProposalVote` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `MultiSigProposalVote` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `MultiSigProposalVote` objects. */ + varianceSample?: InputMaybe; +}; + +export type MultiSigProposalVoteAverageAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVoteAverageAggregates = { + __typename?: 'MultiSigProposalVoteAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type MultiSigProposalVoteDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + action?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + id?: InputMaybe; + proposalId?: InputMaybe; + signerId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type MultiSigProposalVoteDistinctCountAggregates = { + __typename?: 'MultiSigProposalVoteDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of action across the matching connection */ + action?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of proposalId across the matching connection */ + proposalId?: Maybe; + /** Distinct count of signerId across the matching connection */ + signerId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `MultiSigProposalVote` object types. All fields are combined with a logical ‘and.’ */ +export type MultiSigProposalVoteFilter = { + /** Filter by the object’s `action` field. */ + action?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `extrinsicIdx` field. */ + extrinsicIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `proposal` relation. */ + proposal?: InputMaybe; + /** Filter by the object’s `proposalId` field. */ + proposalId?: InputMaybe; + /** Filter by the object’s `signer` relation. */ + signer?: InputMaybe; + /** Filter by the object’s `signerId` field. */ + signerId?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type MultiSigProposalVoteMaxAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVoteMaxAggregates = { + __typename?: 'MultiSigProposalVoteMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type MultiSigProposalVoteMinAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVoteMinAggregates = { + __typename?: 'MultiSigProposalVoteMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type MultiSigProposalVoteStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVoteStddevPopulationAggregates = { + __typename?: 'MultiSigProposalVoteStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type MultiSigProposalVoteStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVoteStddevSampleAggregates = { + __typename?: 'MultiSigProposalVoteStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type MultiSigProposalVoteSumAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVoteSumAggregates = { + __typename?: 'MultiSigProposalVoteSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of extrinsicIdx across the matching connection */ + extrinsicIdx: Scalars['BigInt']['output']; +}; + +export type MultiSigProposalVoteVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVoteVariancePopulationAggregates = { + __typename?: 'MultiSigProposalVoteVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +export type MultiSigProposalVoteVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVoteVarianceSampleAggregates = { + __typename?: 'MultiSigProposalVoteVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of extrinsicIdx across the matching connection */ + extrinsicIdx?: Maybe; +}; + +/** A connection to a list of `MultiSigProposalVote` values. */ +export type MultiSigProposalVotesConnection = { + __typename?: 'MultiSigProposalVotesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigProposalVote` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigProposalVote` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigProposalVote` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `MultiSigProposalVote` values. */ +export type MultiSigProposalVotesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `MultiSigProposalVote` edge in the connection. */ +export type MultiSigProposalVotesEdge = { + __typename?: 'MultiSigProposalVotesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigProposalVote` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `MultiSigProposalVote` for usage during aggregation. */ +export enum MultiSigProposalVotesGroupBy { + Action = 'ACTION', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + EventIdx = 'EVENT_IDX', + ExtrinsicIdx = 'EXTRINSIC_IDX', + Id = 'ID', + ProposalId = 'PROPOSAL_ID', + SignerId = 'SIGNER_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type MultiSigProposalVotesHavingAverageInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVotesHavingDistinctCountInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +/** Conditions for `MultiSigProposalVote` aggregates. */ +export type MultiSigProposalVotesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type MultiSigProposalVotesHavingMaxInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVotesHavingMinInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVotesHavingStddevPopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVotesHavingStddevSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVotesHavingSumInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVotesHavingVariancePopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +export type MultiSigProposalVotesHavingVarianceSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; +}; + +/** Methods to use when ordering `MultiSigProposalVote`. */ +export enum MultiSigProposalVotesOrderBy { + ActionAsc = 'ACTION_ASC', + ActionDesc = 'ACTION_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + ExtrinsicIdxAsc = 'EXTRINSIC_IDX_ASC', + ExtrinsicIdxDesc = 'EXTRINSIC_IDX_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ProposalIdAsc = 'PROPOSAL_ID_ASC', + ProposalIdDesc = 'PROPOSAL_ID_DESC', + SignerIdAsc = 'SIGNER_ID_ASC', + SignerIdDesc = 'SIGNER_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** A connection to a list of `MultiSigProposal` values. */ +export type MultiSigProposalsConnection = { + __typename?: 'MultiSigProposalsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigProposal` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigProposal` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigProposal` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `MultiSigProposal` values. */ +export type MultiSigProposalsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `MultiSigProposal` edge in the connection. */ +export type MultiSigProposalsEdge = { + __typename?: 'MultiSigProposalsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigProposal` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `MultiSigProposal` for usage during aggregation. */ +export enum MultiSigProposalsGroupBy { + ApprovalCount = 'APPROVAL_COUNT', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorAccount = 'CREATOR_ACCOUNT', + CreatorId = 'CREATOR_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + EventIdx = 'EVENT_IDX', + ExtrinsicIdx = 'EXTRINSIC_IDX', + Id = 'ID', + MultisigId = 'MULTISIG_ID', + Params = 'PARAMS', + ProposalId = 'PROPOSAL_ID', + RejectionCount = 'REJECTION_COUNT', + Status = 'STATUS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type MultiSigProposalsHavingAverageInput = { + approvalCount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalsHavingDistinctCountInput = { + approvalCount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +/** Conditions for `MultiSigProposal` aggregates. */ +export type MultiSigProposalsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type MultiSigProposalsHavingMaxInput = { + approvalCount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalsHavingMinInput = { + approvalCount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalsHavingStddevPopulationInput = { + approvalCount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalsHavingStddevSampleInput = { + approvalCount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalsHavingSumInput = { + approvalCount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalsHavingVariancePopulationInput = { + approvalCount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +export type MultiSigProposalsHavingVarianceSampleInput = { + approvalCount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicIdx?: InputMaybe; + proposalId?: InputMaybe; + rejectionCount?: InputMaybe; +}; + +/** Methods to use when ordering `MultiSigProposal`. */ +export enum MultiSigProposalsOrderBy { + ApprovalCountAsc = 'APPROVAL_COUNT_ASC', + ApprovalCountDesc = 'APPROVAL_COUNT_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + CreatorAccountAsc = 'CREATOR_ACCOUNT_ASC', + CreatorAccountDesc = 'CREATOR_ACCOUNT_DESC', + CreatorIdAsc = 'CREATOR_ID_ASC', + CreatorIdDesc = 'CREATOR_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + ExtrinsicIdxAsc = 'EXTRINSIC_IDX_ASC', + ExtrinsicIdxDesc = 'EXTRINSIC_IDX_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + MultisigIdAsc = 'MULTISIG_ID_ASC', + MultisigIdDesc = 'MULTISIG_ID_DESC', + Natural = 'NATURAL', + ParamsAsc = 'PARAMS_ASC', + ParamsDesc = 'PARAMS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ProposalIdAsc = 'PROPOSAL_ID_ASC', + ProposalIdDesc = 'PROPOSAL_ID_DESC', + RejectionCountAsc = 'REJECTION_COUNT_ASC', + RejectionCountDesc = 'REJECTION_COUNT_DESC', + StatusAsc = 'STATUS_ASC', + StatusDesc = 'STATUS_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + VotesAverageActionAsc = 'VOTES_AVERAGE_ACTION_ASC', + VotesAverageActionDesc = 'VOTES_AVERAGE_ACTION_DESC', + VotesAverageBlockRangeAsc = 'VOTES_AVERAGE_BLOCK_RANGE_ASC', + VotesAverageBlockRangeDesc = 'VOTES_AVERAGE_BLOCK_RANGE_DESC', + VotesAverageCreatedAtAsc = 'VOTES_AVERAGE_CREATED_AT_ASC', + VotesAverageCreatedAtDesc = 'VOTES_AVERAGE_CREATED_AT_DESC', + VotesAverageCreatedBlockIdAsc = 'VOTES_AVERAGE_CREATED_BLOCK_ID_ASC', + VotesAverageCreatedBlockIdDesc = 'VOTES_AVERAGE_CREATED_BLOCK_ID_DESC', + VotesAverageDatetimeAsc = 'VOTES_AVERAGE_DATETIME_ASC', + VotesAverageDatetimeDesc = 'VOTES_AVERAGE_DATETIME_DESC', + VotesAverageEventIdxAsc = 'VOTES_AVERAGE_EVENT_IDX_ASC', + VotesAverageEventIdxDesc = 'VOTES_AVERAGE_EVENT_IDX_DESC', + VotesAverageExtrinsicIdxAsc = 'VOTES_AVERAGE_EXTRINSIC_IDX_ASC', + VotesAverageExtrinsicIdxDesc = 'VOTES_AVERAGE_EXTRINSIC_IDX_DESC', + VotesAverageIdAsc = 'VOTES_AVERAGE_ID_ASC', + VotesAverageIdDesc = 'VOTES_AVERAGE_ID_DESC', + VotesAverageProposalIdAsc = 'VOTES_AVERAGE_PROPOSAL_ID_ASC', + VotesAverageProposalIdDesc = 'VOTES_AVERAGE_PROPOSAL_ID_DESC', + VotesAverageSignerIdAsc = 'VOTES_AVERAGE_SIGNER_ID_ASC', + VotesAverageSignerIdDesc = 'VOTES_AVERAGE_SIGNER_ID_DESC', + VotesAverageUpdatedBlockIdAsc = 'VOTES_AVERAGE_UPDATED_BLOCK_ID_ASC', + VotesAverageUpdatedBlockIdDesc = 'VOTES_AVERAGE_UPDATED_BLOCK_ID_DESC', + VotesCountAsc = 'VOTES_COUNT_ASC', + VotesCountDesc = 'VOTES_COUNT_DESC', + VotesDistinctCountActionAsc = 'VOTES_DISTINCT_COUNT_ACTION_ASC', + VotesDistinctCountActionDesc = 'VOTES_DISTINCT_COUNT_ACTION_DESC', + VotesDistinctCountBlockRangeAsc = 'VOTES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + VotesDistinctCountBlockRangeDesc = 'VOTES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + VotesDistinctCountCreatedAtAsc = 'VOTES_DISTINCT_COUNT_CREATED_AT_ASC', + VotesDistinctCountCreatedAtDesc = 'VOTES_DISTINCT_COUNT_CREATED_AT_DESC', + VotesDistinctCountCreatedBlockIdAsc = 'VOTES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + VotesDistinctCountCreatedBlockIdDesc = 'VOTES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + VotesDistinctCountDatetimeAsc = 'VOTES_DISTINCT_COUNT_DATETIME_ASC', + VotesDistinctCountDatetimeDesc = 'VOTES_DISTINCT_COUNT_DATETIME_DESC', + VotesDistinctCountEventIdxAsc = 'VOTES_DISTINCT_COUNT_EVENT_IDX_ASC', + VotesDistinctCountEventIdxDesc = 'VOTES_DISTINCT_COUNT_EVENT_IDX_DESC', + VotesDistinctCountExtrinsicIdxAsc = 'VOTES_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + VotesDistinctCountExtrinsicIdxDesc = 'VOTES_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + VotesDistinctCountIdAsc = 'VOTES_DISTINCT_COUNT_ID_ASC', + VotesDistinctCountIdDesc = 'VOTES_DISTINCT_COUNT_ID_DESC', + VotesDistinctCountProposalIdAsc = 'VOTES_DISTINCT_COUNT_PROPOSAL_ID_ASC', + VotesDistinctCountProposalIdDesc = 'VOTES_DISTINCT_COUNT_PROPOSAL_ID_DESC', + VotesDistinctCountSignerIdAsc = 'VOTES_DISTINCT_COUNT_SIGNER_ID_ASC', + VotesDistinctCountSignerIdDesc = 'VOTES_DISTINCT_COUNT_SIGNER_ID_DESC', + VotesDistinctCountUpdatedBlockIdAsc = 'VOTES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + VotesDistinctCountUpdatedBlockIdDesc = 'VOTES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + VotesMaxActionAsc = 'VOTES_MAX_ACTION_ASC', + VotesMaxActionDesc = 'VOTES_MAX_ACTION_DESC', + VotesMaxBlockRangeAsc = 'VOTES_MAX_BLOCK_RANGE_ASC', + VotesMaxBlockRangeDesc = 'VOTES_MAX_BLOCK_RANGE_DESC', + VotesMaxCreatedAtAsc = 'VOTES_MAX_CREATED_AT_ASC', + VotesMaxCreatedAtDesc = 'VOTES_MAX_CREATED_AT_DESC', + VotesMaxCreatedBlockIdAsc = 'VOTES_MAX_CREATED_BLOCK_ID_ASC', + VotesMaxCreatedBlockIdDesc = 'VOTES_MAX_CREATED_BLOCK_ID_DESC', + VotesMaxDatetimeAsc = 'VOTES_MAX_DATETIME_ASC', + VotesMaxDatetimeDesc = 'VOTES_MAX_DATETIME_DESC', + VotesMaxEventIdxAsc = 'VOTES_MAX_EVENT_IDX_ASC', + VotesMaxEventIdxDesc = 'VOTES_MAX_EVENT_IDX_DESC', + VotesMaxExtrinsicIdxAsc = 'VOTES_MAX_EXTRINSIC_IDX_ASC', + VotesMaxExtrinsicIdxDesc = 'VOTES_MAX_EXTRINSIC_IDX_DESC', + VotesMaxIdAsc = 'VOTES_MAX_ID_ASC', + VotesMaxIdDesc = 'VOTES_MAX_ID_DESC', + VotesMaxProposalIdAsc = 'VOTES_MAX_PROPOSAL_ID_ASC', + VotesMaxProposalIdDesc = 'VOTES_MAX_PROPOSAL_ID_DESC', + VotesMaxSignerIdAsc = 'VOTES_MAX_SIGNER_ID_ASC', + VotesMaxSignerIdDesc = 'VOTES_MAX_SIGNER_ID_DESC', + VotesMaxUpdatedBlockIdAsc = 'VOTES_MAX_UPDATED_BLOCK_ID_ASC', + VotesMaxUpdatedBlockIdDesc = 'VOTES_MAX_UPDATED_BLOCK_ID_DESC', + VotesMinActionAsc = 'VOTES_MIN_ACTION_ASC', + VotesMinActionDesc = 'VOTES_MIN_ACTION_DESC', + VotesMinBlockRangeAsc = 'VOTES_MIN_BLOCK_RANGE_ASC', + VotesMinBlockRangeDesc = 'VOTES_MIN_BLOCK_RANGE_DESC', + VotesMinCreatedAtAsc = 'VOTES_MIN_CREATED_AT_ASC', + VotesMinCreatedAtDesc = 'VOTES_MIN_CREATED_AT_DESC', + VotesMinCreatedBlockIdAsc = 'VOTES_MIN_CREATED_BLOCK_ID_ASC', + VotesMinCreatedBlockIdDesc = 'VOTES_MIN_CREATED_BLOCK_ID_DESC', + VotesMinDatetimeAsc = 'VOTES_MIN_DATETIME_ASC', + VotesMinDatetimeDesc = 'VOTES_MIN_DATETIME_DESC', + VotesMinEventIdxAsc = 'VOTES_MIN_EVENT_IDX_ASC', + VotesMinEventIdxDesc = 'VOTES_MIN_EVENT_IDX_DESC', + VotesMinExtrinsicIdxAsc = 'VOTES_MIN_EXTRINSIC_IDX_ASC', + VotesMinExtrinsicIdxDesc = 'VOTES_MIN_EXTRINSIC_IDX_DESC', + VotesMinIdAsc = 'VOTES_MIN_ID_ASC', + VotesMinIdDesc = 'VOTES_MIN_ID_DESC', + VotesMinProposalIdAsc = 'VOTES_MIN_PROPOSAL_ID_ASC', + VotesMinProposalIdDesc = 'VOTES_MIN_PROPOSAL_ID_DESC', + VotesMinSignerIdAsc = 'VOTES_MIN_SIGNER_ID_ASC', + VotesMinSignerIdDesc = 'VOTES_MIN_SIGNER_ID_DESC', + VotesMinUpdatedBlockIdAsc = 'VOTES_MIN_UPDATED_BLOCK_ID_ASC', + VotesMinUpdatedBlockIdDesc = 'VOTES_MIN_UPDATED_BLOCK_ID_DESC', + VotesStddevPopulationActionAsc = 'VOTES_STDDEV_POPULATION_ACTION_ASC', + VotesStddevPopulationActionDesc = 'VOTES_STDDEV_POPULATION_ACTION_DESC', + VotesStddevPopulationBlockRangeAsc = 'VOTES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + VotesStddevPopulationBlockRangeDesc = 'VOTES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + VotesStddevPopulationCreatedAtAsc = 'VOTES_STDDEV_POPULATION_CREATED_AT_ASC', + VotesStddevPopulationCreatedAtDesc = 'VOTES_STDDEV_POPULATION_CREATED_AT_DESC', + VotesStddevPopulationCreatedBlockIdAsc = 'VOTES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + VotesStddevPopulationCreatedBlockIdDesc = 'VOTES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + VotesStddevPopulationDatetimeAsc = 'VOTES_STDDEV_POPULATION_DATETIME_ASC', + VotesStddevPopulationDatetimeDesc = 'VOTES_STDDEV_POPULATION_DATETIME_DESC', + VotesStddevPopulationEventIdxAsc = 'VOTES_STDDEV_POPULATION_EVENT_IDX_ASC', + VotesStddevPopulationEventIdxDesc = 'VOTES_STDDEV_POPULATION_EVENT_IDX_DESC', + VotesStddevPopulationExtrinsicIdxAsc = 'VOTES_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + VotesStddevPopulationExtrinsicIdxDesc = 'VOTES_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + VotesStddevPopulationIdAsc = 'VOTES_STDDEV_POPULATION_ID_ASC', + VotesStddevPopulationIdDesc = 'VOTES_STDDEV_POPULATION_ID_DESC', + VotesStddevPopulationProposalIdAsc = 'VOTES_STDDEV_POPULATION_PROPOSAL_ID_ASC', + VotesStddevPopulationProposalIdDesc = 'VOTES_STDDEV_POPULATION_PROPOSAL_ID_DESC', + VotesStddevPopulationSignerIdAsc = 'VOTES_STDDEV_POPULATION_SIGNER_ID_ASC', + VotesStddevPopulationSignerIdDesc = 'VOTES_STDDEV_POPULATION_SIGNER_ID_DESC', + VotesStddevPopulationUpdatedBlockIdAsc = 'VOTES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + VotesStddevPopulationUpdatedBlockIdDesc = 'VOTES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + VotesStddevSampleActionAsc = 'VOTES_STDDEV_SAMPLE_ACTION_ASC', + VotesStddevSampleActionDesc = 'VOTES_STDDEV_SAMPLE_ACTION_DESC', + VotesStddevSampleBlockRangeAsc = 'VOTES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + VotesStddevSampleBlockRangeDesc = 'VOTES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + VotesStddevSampleCreatedAtAsc = 'VOTES_STDDEV_SAMPLE_CREATED_AT_ASC', + VotesStddevSampleCreatedAtDesc = 'VOTES_STDDEV_SAMPLE_CREATED_AT_DESC', + VotesStddevSampleCreatedBlockIdAsc = 'VOTES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + VotesStddevSampleCreatedBlockIdDesc = 'VOTES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + VotesStddevSampleDatetimeAsc = 'VOTES_STDDEV_SAMPLE_DATETIME_ASC', + VotesStddevSampleDatetimeDesc = 'VOTES_STDDEV_SAMPLE_DATETIME_DESC', + VotesStddevSampleEventIdxAsc = 'VOTES_STDDEV_SAMPLE_EVENT_IDX_ASC', + VotesStddevSampleEventIdxDesc = 'VOTES_STDDEV_SAMPLE_EVENT_IDX_DESC', + VotesStddevSampleExtrinsicIdxAsc = 'VOTES_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + VotesStddevSampleExtrinsicIdxDesc = 'VOTES_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + VotesStddevSampleIdAsc = 'VOTES_STDDEV_SAMPLE_ID_ASC', + VotesStddevSampleIdDesc = 'VOTES_STDDEV_SAMPLE_ID_DESC', + VotesStddevSampleProposalIdAsc = 'VOTES_STDDEV_SAMPLE_PROPOSAL_ID_ASC', + VotesStddevSampleProposalIdDesc = 'VOTES_STDDEV_SAMPLE_PROPOSAL_ID_DESC', + VotesStddevSampleSignerIdAsc = 'VOTES_STDDEV_SAMPLE_SIGNER_ID_ASC', + VotesStddevSampleSignerIdDesc = 'VOTES_STDDEV_SAMPLE_SIGNER_ID_DESC', + VotesStddevSampleUpdatedBlockIdAsc = 'VOTES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + VotesStddevSampleUpdatedBlockIdDesc = 'VOTES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + VotesSumActionAsc = 'VOTES_SUM_ACTION_ASC', + VotesSumActionDesc = 'VOTES_SUM_ACTION_DESC', + VotesSumBlockRangeAsc = 'VOTES_SUM_BLOCK_RANGE_ASC', + VotesSumBlockRangeDesc = 'VOTES_SUM_BLOCK_RANGE_DESC', + VotesSumCreatedAtAsc = 'VOTES_SUM_CREATED_AT_ASC', + VotesSumCreatedAtDesc = 'VOTES_SUM_CREATED_AT_DESC', + VotesSumCreatedBlockIdAsc = 'VOTES_SUM_CREATED_BLOCK_ID_ASC', + VotesSumCreatedBlockIdDesc = 'VOTES_SUM_CREATED_BLOCK_ID_DESC', + VotesSumDatetimeAsc = 'VOTES_SUM_DATETIME_ASC', + VotesSumDatetimeDesc = 'VOTES_SUM_DATETIME_DESC', + VotesSumEventIdxAsc = 'VOTES_SUM_EVENT_IDX_ASC', + VotesSumEventIdxDesc = 'VOTES_SUM_EVENT_IDX_DESC', + VotesSumExtrinsicIdxAsc = 'VOTES_SUM_EXTRINSIC_IDX_ASC', + VotesSumExtrinsicIdxDesc = 'VOTES_SUM_EXTRINSIC_IDX_DESC', + VotesSumIdAsc = 'VOTES_SUM_ID_ASC', + VotesSumIdDesc = 'VOTES_SUM_ID_DESC', + VotesSumProposalIdAsc = 'VOTES_SUM_PROPOSAL_ID_ASC', + VotesSumProposalIdDesc = 'VOTES_SUM_PROPOSAL_ID_DESC', + VotesSumSignerIdAsc = 'VOTES_SUM_SIGNER_ID_ASC', + VotesSumSignerIdDesc = 'VOTES_SUM_SIGNER_ID_DESC', + VotesSumUpdatedBlockIdAsc = 'VOTES_SUM_UPDATED_BLOCK_ID_ASC', + VotesSumUpdatedBlockIdDesc = 'VOTES_SUM_UPDATED_BLOCK_ID_DESC', + VotesVariancePopulationActionAsc = 'VOTES_VARIANCE_POPULATION_ACTION_ASC', + VotesVariancePopulationActionDesc = 'VOTES_VARIANCE_POPULATION_ACTION_DESC', + VotesVariancePopulationBlockRangeAsc = 'VOTES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + VotesVariancePopulationBlockRangeDesc = 'VOTES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + VotesVariancePopulationCreatedAtAsc = 'VOTES_VARIANCE_POPULATION_CREATED_AT_ASC', + VotesVariancePopulationCreatedAtDesc = 'VOTES_VARIANCE_POPULATION_CREATED_AT_DESC', + VotesVariancePopulationCreatedBlockIdAsc = 'VOTES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + VotesVariancePopulationCreatedBlockIdDesc = 'VOTES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + VotesVariancePopulationDatetimeAsc = 'VOTES_VARIANCE_POPULATION_DATETIME_ASC', + VotesVariancePopulationDatetimeDesc = 'VOTES_VARIANCE_POPULATION_DATETIME_DESC', + VotesVariancePopulationEventIdxAsc = 'VOTES_VARIANCE_POPULATION_EVENT_IDX_ASC', + VotesVariancePopulationEventIdxDesc = 'VOTES_VARIANCE_POPULATION_EVENT_IDX_DESC', + VotesVariancePopulationExtrinsicIdxAsc = 'VOTES_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + VotesVariancePopulationExtrinsicIdxDesc = 'VOTES_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + VotesVariancePopulationIdAsc = 'VOTES_VARIANCE_POPULATION_ID_ASC', + VotesVariancePopulationIdDesc = 'VOTES_VARIANCE_POPULATION_ID_DESC', + VotesVariancePopulationProposalIdAsc = 'VOTES_VARIANCE_POPULATION_PROPOSAL_ID_ASC', + VotesVariancePopulationProposalIdDesc = 'VOTES_VARIANCE_POPULATION_PROPOSAL_ID_DESC', + VotesVariancePopulationSignerIdAsc = 'VOTES_VARIANCE_POPULATION_SIGNER_ID_ASC', + VotesVariancePopulationSignerIdDesc = 'VOTES_VARIANCE_POPULATION_SIGNER_ID_DESC', + VotesVariancePopulationUpdatedBlockIdAsc = 'VOTES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + VotesVariancePopulationUpdatedBlockIdDesc = 'VOTES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + VotesVarianceSampleActionAsc = 'VOTES_VARIANCE_SAMPLE_ACTION_ASC', + VotesVarianceSampleActionDesc = 'VOTES_VARIANCE_SAMPLE_ACTION_DESC', + VotesVarianceSampleBlockRangeAsc = 'VOTES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + VotesVarianceSampleBlockRangeDesc = 'VOTES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + VotesVarianceSampleCreatedAtAsc = 'VOTES_VARIANCE_SAMPLE_CREATED_AT_ASC', + VotesVarianceSampleCreatedAtDesc = 'VOTES_VARIANCE_SAMPLE_CREATED_AT_DESC', + VotesVarianceSampleCreatedBlockIdAsc = 'VOTES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + VotesVarianceSampleCreatedBlockIdDesc = 'VOTES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + VotesVarianceSampleDatetimeAsc = 'VOTES_VARIANCE_SAMPLE_DATETIME_ASC', + VotesVarianceSampleDatetimeDesc = 'VOTES_VARIANCE_SAMPLE_DATETIME_DESC', + VotesVarianceSampleEventIdxAsc = 'VOTES_VARIANCE_SAMPLE_EVENT_IDX_ASC', + VotesVarianceSampleEventIdxDesc = 'VOTES_VARIANCE_SAMPLE_EVENT_IDX_DESC', + VotesVarianceSampleExtrinsicIdxAsc = 'VOTES_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + VotesVarianceSampleExtrinsicIdxDesc = 'VOTES_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + VotesVarianceSampleIdAsc = 'VOTES_VARIANCE_SAMPLE_ID_ASC', + VotesVarianceSampleIdDesc = 'VOTES_VARIANCE_SAMPLE_ID_DESC', + VotesVarianceSampleProposalIdAsc = 'VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', + VotesVarianceSampleProposalIdDesc = 'VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', + VotesVarianceSampleSignerIdAsc = 'VOTES_VARIANCE_SAMPLE_SIGNER_ID_ASC', + VotesVarianceSampleSignerIdDesc = 'VOTES_VARIANCE_SAMPLE_SIGNER_ID_DESC', + VotesVarianceSampleUpdatedBlockIdAsc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + VotesVarianceSampleUpdatedBlockIdDesc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', +} + +export type MultiSigSigner = Node & { + __typename?: 'MultiSigSigner'; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalVoteSignerIdAndCreatedBlockId: MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByMultiSigProposalVoteSignerIdAndUpdatedBlockId: MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `MultiSigSigner`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposalsByMultiSigProposalVoteSignerIdAndProposalId: MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyConnection; + /** Reads a single `MultiSig` that is related to this `MultiSigSigner`. */ + multisig?: Maybe; + multisigId: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + signerType: SignerTypeEnum; + signerValue: Scalars['String']['output']; + status: MultiSigSignerStatusEnum; + /** Reads a single `Block` that is related to this `MultiSigSigner`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; +}; + +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigSignerVotesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type MultiSigSignerAggregates = { + __typename?: 'MultiSigSignerAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `MultiSigSigner` object types. */ +export type MultiSigSignerAggregatesFilter = { + /** Distinct count aggregate over matching `MultiSigSigner` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `MultiSigSigner` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + multiSigProposalVotesByCreatedBlockId: MultiSigProposalVotesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndCreatedBlockIdManyToManyEdgeMultiSigProposalVotesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + multiSigProposalVotesByUpdatedBlockId: MultiSigProposalVotesConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerBlocksByMultiSigProposalVoteSignerIdAndUpdatedBlockIdManyToManyEdgeMultiSigProposalVotesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type MultiSigSignerDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + multisigId?: InputMaybe; + signerType?: InputMaybe; + signerValue?: InputMaybe; + status?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type MultiSigSignerDistinctCountAggregates = { + __typename?: 'MultiSigSignerDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of multisigId across the matching connection */ + multisigId?: Maybe; + /** Distinct count of signerType across the matching connection */ + signerType?: Maybe; + /** Distinct count of signerValue across the matching connection */ + signerValue?: Maybe; + /** Distinct count of status across the matching connection */ + status?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `MultiSigSigner` object types. All fields are combined with a logical ‘and.’ */ +export type MultiSigSignerFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `multisig` relation. */ + multisig?: InputMaybe; + /** Filter by the object’s `multisigId` field. */ + multisigId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `signerType` field. */ + signerType?: InputMaybe; + /** Filter by the object’s `signerValue` field. */ + signerValue?: InputMaybe; + /** Filter by the object’s `status` field. */ + status?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `votes` relation. */ + votes?: InputMaybe; + /** Some related `votes` exist. */ + votesExist?: InputMaybe; +}; + +/** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyConnection = + { + __typename?: 'MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigProposal`, info from the `MultiSigProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigProposal` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigProposal` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `MultiSigProposal` values, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyEdge = + { + __typename?: 'MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigProposal` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + votes: MultiSigProposalVotesConnection; + }; + +/** A `MultiSigProposal` edge in the connection, with data from `MultiSigProposalVote`. */ +export type MultiSigSignerMultiSigProposalsByMultiSigProposalVoteSignerIdAndProposalIdManyToManyEdgeVotesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** Represents MultiSig signer status */ +export enum MultiSigSignerStatusEnum { + Approved = 'Approved', + Authorized = 'Authorized', + Removed = 'Removed', +} + +/** A filter to be used against MultiSigSignerStatusEnum fields. All fields are combined with a logical ‘and.’ */ +export type MultiSigSignerStatusEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +/** A filter to be used against many `MultiSigProposalVote` object types. All fields are combined with a logical ‘and.’ */ +export type MultiSigSignerToManyMultiSigProposalVoteFilter = { + /** Aggregates across related `MultiSigProposalVote` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `MultiSigProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `MultiSigProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `MultiSigProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A connection to a list of `MultiSigSigner` values. */ +export type MultiSigSignersConnection = { + __typename?: 'MultiSigSignersConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSigSigner` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSigSigner` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSigSigner` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `MultiSigSigner` values. */ +export type MultiSigSignersConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `MultiSigSigner` edge in the connection. */ +export type MultiSigSignersEdge = { + __typename?: 'MultiSigSignersEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSigSigner` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `MultiSigSigner` for usage during aggregation. */ +export enum MultiSigSignersGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + MultisigId = 'MULTISIG_ID', + SignerType = 'SIGNER_TYPE', + SignerValue = 'SIGNER_VALUE', + Status = 'STATUS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type MultiSigSignersHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type MultiSigSignersHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `MultiSigSigner` aggregates. */ +export type MultiSigSignersHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type MultiSigSignersHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type MultiSigSignersHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type MultiSigSignersHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type MultiSigSignersHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type MultiSigSignersHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type MultiSigSignersHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type MultiSigSignersHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `MultiSigSigner`. */ +export enum MultiSigSignersOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + MultisigIdAsc = 'MULTISIG_ID_ASC', + MultisigIdDesc = 'MULTISIG_ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + SignerTypeAsc = 'SIGNER_TYPE_ASC', + SignerTypeDesc = 'SIGNER_TYPE_DESC', + SignerValueAsc = 'SIGNER_VALUE_ASC', + SignerValueDesc = 'SIGNER_VALUE_DESC', + StatusAsc = 'STATUS_ASC', + StatusDesc = 'STATUS_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + VotesAverageActionAsc = 'VOTES_AVERAGE_ACTION_ASC', + VotesAverageActionDesc = 'VOTES_AVERAGE_ACTION_DESC', + VotesAverageBlockRangeAsc = 'VOTES_AVERAGE_BLOCK_RANGE_ASC', + VotesAverageBlockRangeDesc = 'VOTES_AVERAGE_BLOCK_RANGE_DESC', + VotesAverageCreatedAtAsc = 'VOTES_AVERAGE_CREATED_AT_ASC', + VotesAverageCreatedAtDesc = 'VOTES_AVERAGE_CREATED_AT_DESC', + VotesAverageCreatedBlockIdAsc = 'VOTES_AVERAGE_CREATED_BLOCK_ID_ASC', + VotesAverageCreatedBlockIdDesc = 'VOTES_AVERAGE_CREATED_BLOCK_ID_DESC', + VotesAverageDatetimeAsc = 'VOTES_AVERAGE_DATETIME_ASC', + VotesAverageDatetimeDesc = 'VOTES_AVERAGE_DATETIME_DESC', + VotesAverageEventIdxAsc = 'VOTES_AVERAGE_EVENT_IDX_ASC', + VotesAverageEventIdxDesc = 'VOTES_AVERAGE_EVENT_IDX_DESC', + VotesAverageExtrinsicIdxAsc = 'VOTES_AVERAGE_EXTRINSIC_IDX_ASC', + VotesAverageExtrinsicIdxDesc = 'VOTES_AVERAGE_EXTRINSIC_IDX_DESC', + VotesAverageIdAsc = 'VOTES_AVERAGE_ID_ASC', + VotesAverageIdDesc = 'VOTES_AVERAGE_ID_DESC', + VotesAverageProposalIdAsc = 'VOTES_AVERAGE_PROPOSAL_ID_ASC', + VotesAverageProposalIdDesc = 'VOTES_AVERAGE_PROPOSAL_ID_DESC', + VotesAverageSignerIdAsc = 'VOTES_AVERAGE_SIGNER_ID_ASC', + VotesAverageSignerIdDesc = 'VOTES_AVERAGE_SIGNER_ID_DESC', + VotesAverageUpdatedBlockIdAsc = 'VOTES_AVERAGE_UPDATED_BLOCK_ID_ASC', + VotesAverageUpdatedBlockIdDesc = 'VOTES_AVERAGE_UPDATED_BLOCK_ID_DESC', + VotesCountAsc = 'VOTES_COUNT_ASC', + VotesCountDesc = 'VOTES_COUNT_DESC', + VotesDistinctCountActionAsc = 'VOTES_DISTINCT_COUNT_ACTION_ASC', + VotesDistinctCountActionDesc = 'VOTES_DISTINCT_COUNT_ACTION_DESC', + VotesDistinctCountBlockRangeAsc = 'VOTES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + VotesDistinctCountBlockRangeDesc = 'VOTES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + VotesDistinctCountCreatedAtAsc = 'VOTES_DISTINCT_COUNT_CREATED_AT_ASC', + VotesDistinctCountCreatedAtDesc = 'VOTES_DISTINCT_COUNT_CREATED_AT_DESC', + VotesDistinctCountCreatedBlockIdAsc = 'VOTES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + VotesDistinctCountCreatedBlockIdDesc = 'VOTES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + VotesDistinctCountDatetimeAsc = 'VOTES_DISTINCT_COUNT_DATETIME_ASC', + VotesDistinctCountDatetimeDesc = 'VOTES_DISTINCT_COUNT_DATETIME_DESC', + VotesDistinctCountEventIdxAsc = 'VOTES_DISTINCT_COUNT_EVENT_IDX_ASC', + VotesDistinctCountEventIdxDesc = 'VOTES_DISTINCT_COUNT_EVENT_IDX_DESC', + VotesDistinctCountExtrinsicIdxAsc = 'VOTES_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + VotesDistinctCountExtrinsicIdxDesc = 'VOTES_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + VotesDistinctCountIdAsc = 'VOTES_DISTINCT_COUNT_ID_ASC', + VotesDistinctCountIdDesc = 'VOTES_DISTINCT_COUNT_ID_DESC', + VotesDistinctCountProposalIdAsc = 'VOTES_DISTINCT_COUNT_PROPOSAL_ID_ASC', + VotesDistinctCountProposalIdDesc = 'VOTES_DISTINCT_COUNT_PROPOSAL_ID_DESC', + VotesDistinctCountSignerIdAsc = 'VOTES_DISTINCT_COUNT_SIGNER_ID_ASC', + VotesDistinctCountSignerIdDesc = 'VOTES_DISTINCT_COUNT_SIGNER_ID_DESC', + VotesDistinctCountUpdatedBlockIdAsc = 'VOTES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + VotesDistinctCountUpdatedBlockIdDesc = 'VOTES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + VotesMaxActionAsc = 'VOTES_MAX_ACTION_ASC', + VotesMaxActionDesc = 'VOTES_MAX_ACTION_DESC', + VotesMaxBlockRangeAsc = 'VOTES_MAX_BLOCK_RANGE_ASC', + VotesMaxBlockRangeDesc = 'VOTES_MAX_BLOCK_RANGE_DESC', + VotesMaxCreatedAtAsc = 'VOTES_MAX_CREATED_AT_ASC', + VotesMaxCreatedAtDesc = 'VOTES_MAX_CREATED_AT_DESC', + VotesMaxCreatedBlockIdAsc = 'VOTES_MAX_CREATED_BLOCK_ID_ASC', + VotesMaxCreatedBlockIdDesc = 'VOTES_MAX_CREATED_BLOCK_ID_DESC', + VotesMaxDatetimeAsc = 'VOTES_MAX_DATETIME_ASC', + VotesMaxDatetimeDesc = 'VOTES_MAX_DATETIME_DESC', + VotesMaxEventIdxAsc = 'VOTES_MAX_EVENT_IDX_ASC', + VotesMaxEventIdxDesc = 'VOTES_MAX_EVENT_IDX_DESC', + VotesMaxExtrinsicIdxAsc = 'VOTES_MAX_EXTRINSIC_IDX_ASC', + VotesMaxExtrinsicIdxDesc = 'VOTES_MAX_EXTRINSIC_IDX_DESC', + VotesMaxIdAsc = 'VOTES_MAX_ID_ASC', + VotesMaxIdDesc = 'VOTES_MAX_ID_DESC', + VotesMaxProposalIdAsc = 'VOTES_MAX_PROPOSAL_ID_ASC', + VotesMaxProposalIdDesc = 'VOTES_MAX_PROPOSAL_ID_DESC', + VotesMaxSignerIdAsc = 'VOTES_MAX_SIGNER_ID_ASC', + VotesMaxSignerIdDesc = 'VOTES_MAX_SIGNER_ID_DESC', + VotesMaxUpdatedBlockIdAsc = 'VOTES_MAX_UPDATED_BLOCK_ID_ASC', + VotesMaxUpdatedBlockIdDesc = 'VOTES_MAX_UPDATED_BLOCK_ID_DESC', + VotesMinActionAsc = 'VOTES_MIN_ACTION_ASC', + VotesMinActionDesc = 'VOTES_MIN_ACTION_DESC', + VotesMinBlockRangeAsc = 'VOTES_MIN_BLOCK_RANGE_ASC', + VotesMinBlockRangeDesc = 'VOTES_MIN_BLOCK_RANGE_DESC', + VotesMinCreatedAtAsc = 'VOTES_MIN_CREATED_AT_ASC', + VotesMinCreatedAtDesc = 'VOTES_MIN_CREATED_AT_DESC', + VotesMinCreatedBlockIdAsc = 'VOTES_MIN_CREATED_BLOCK_ID_ASC', + VotesMinCreatedBlockIdDesc = 'VOTES_MIN_CREATED_BLOCK_ID_DESC', + VotesMinDatetimeAsc = 'VOTES_MIN_DATETIME_ASC', + VotesMinDatetimeDesc = 'VOTES_MIN_DATETIME_DESC', + VotesMinEventIdxAsc = 'VOTES_MIN_EVENT_IDX_ASC', + VotesMinEventIdxDesc = 'VOTES_MIN_EVENT_IDX_DESC', + VotesMinExtrinsicIdxAsc = 'VOTES_MIN_EXTRINSIC_IDX_ASC', + VotesMinExtrinsicIdxDesc = 'VOTES_MIN_EXTRINSIC_IDX_DESC', + VotesMinIdAsc = 'VOTES_MIN_ID_ASC', + VotesMinIdDesc = 'VOTES_MIN_ID_DESC', + VotesMinProposalIdAsc = 'VOTES_MIN_PROPOSAL_ID_ASC', + VotesMinProposalIdDesc = 'VOTES_MIN_PROPOSAL_ID_DESC', + VotesMinSignerIdAsc = 'VOTES_MIN_SIGNER_ID_ASC', + VotesMinSignerIdDesc = 'VOTES_MIN_SIGNER_ID_DESC', + VotesMinUpdatedBlockIdAsc = 'VOTES_MIN_UPDATED_BLOCK_ID_ASC', + VotesMinUpdatedBlockIdDesc = 'VOTES_MIN_UPDATED_BLOCK_ID_DESC', + VotesStddevPopulationActionAsc = 'VOTES_STDDEV_POPULATION_ACTION_ASC', + VotesStddevPopulationActionDesc = 'VOTES_STDDEV_POPULATION_ACTION_DESC', + VotesStddevPopulationBlockRangeAsc = 'VOTES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + VotesStddevPopulationBlockRangeDesc = 'VOTES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + VotesStddevPopulationCreatedAtAsc = 'VOTES_STDDEV_POPULATION_CREATED_AT_ASC', + VotesStddevPopulationCreatedAtDesc = 'VOTES_STDDEV_POPULATION_CREATED_AT_DESC', + VotesStddevPopulationCreatedBlockIdAsc = 'VOTES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + VotesStddevPopulationCreatedBlockIdDesc = 'VOTES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + VotesStddevPopulationDatetimeAsc = 'VOTES_STDDEV_POPULATION_DATETIME_ASC', + VotesStddevPopulationDatetimeDesc = 'VOTES_STDDEV_POPULATION_DATETIME_DESC', + VotesStddevPopulationEventIdxAsc = 'VOTES_STDDEV_POPULATION_EVENT_IDX_ASC', + VotesStddevPopulationEventIdxDesc = 'VOTES_STDDEV_POPULATION_EVENT_IDX_DESC', + VotesStddevPopulationExtrinsicIdxAsc = 'VOTES_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + VotesStddevPopulationExtrinsicIdxDesc = 'VOTES_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + VotesStddevPopulationIdAsc = 'VOTES_STDDEV_POPULATION_ID_ASC', + VotesStddevPopulationIdDesc = 'VOTES_STDDEV_POPULATION_ID_DESC', + VotesStddevPopulationProposalIdAsc = 'VOTES_STDDEV_POPULATION_PROPOSAL_ID_ASC', + VotesStddevPopulationProposalIdDesc = 'VOTES_STDDEV_POPULATION_PROPOSAL_ID_DESC', + VotesStddevPopulationSignerIdAsc = 'VOTES_STDDEV_POPULATION_SIGNER_ID_ASC', + VotesStddevPopulationSignerIdDesc = 'VOTES_STDDEV_POPULATION_SIGNER_ID_DESC', + VotesStddevPopulationUpdatedBlockIdAsc = 'VOTES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + VotesStddevPopulationUpdatedBlockIdDesc = 'VOTES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + VotesStddevSampleActionAsc = 'VOTES_STDDEV_SAMPLE_ACTION_ASC', + VotesStddevSampleActionDesc = 'VOTES_STDDEV_SAMPLE_ACTION_DESC', + VotesStddevSampleBlockRangeAsc = 'VOTES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + VotesStddevSampleBlockRangeDesc = 'VOTES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + VotesStddevSampleCreatedAtAsc = 'VOTES_STDDEV_SAMPLE_CREATED_AT_ASC', + VotesStddevSampleCreatedAtDesc = 'VOTES_STDDEV_SAMPLE_CREATED_AT_DESC', + VotesStddevSampleCreatedBlockIdAsc = 'VOTES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + VotesStddevSampleCreatedBlockIdDesc = 'VOTES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + VotesStddevSampleDatetimeAsc = 'VOTES_STDDEV_SAMPLE_DATETIME_ASC', + VotesStddevSampleDatetimeDesc = 'VOTES_STDDEV_SAMPLE_DATETIME_DESC', + VotesStddevSampleEventIdxAsc = 'VOTES_STDDEV_SAMPLE_EVENT_IDX_ASC', + VotesStddevSampleEventIdxDesc = 'VOTES_STDDEV_SAMPLE_EVENT_IDX_DESC', + VotesStddevSampleExtrinsicIdxAsc = 'VOTES_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + VotesStddevSampleExtrinsicIdxDesc = 'VOTES_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + VotesStddevSampleIdAsc = 'VOTES_STDDEV_SAMPLE_ID_ASC', + VotesStddevSampleIdDesc = 'VOTES_STDDEV_SAMPLE_ID_DESC', + VotesStddevSampleProposalIdAsc = 'VOTES_STDDEV_SAMPLE_PROPOSAL_ID_ASC', + VotesStddevSampleProposalIdDesc = 'VOTES_STDDEV_SAMPLE_PROPOSAL_ID_DESC', + VotesStddevSampleSignerIdAsc = 'VOTES_STDDEV_SAMPLE_SIGNER_ID_ASC', + VotesStddevSampleSignerIdDesc = 'VOTES_STDDEV_SAMPLE_SIGNER_ID_DESC', + VotesStddevSampleUpdatedBlockIdAsc = 'VOTES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + VotesStddevSampleUpdatedBlockIdDesc = 'VOTES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + VotesSumActionAsc = 'VOTES_SUM_ACTION_ASC', + VotesSumActionDesc = 'VOTES_SUM_ACTION_DESC', + VotesSumBlockRangeAsc = 'VOTES_SUM_BLOCK_RANGE_ASC', + VotesSumBlockRangeDesc = 'VOTES_SUM_BLOCK_RANGE_DESC', + VotesSumCreatedAtAsc = 'VOTES_SUM_CREATED_AT_ASC', + VotesSumCreatedAtDesc = 'VOTES_SUM_CREATED_AT_DESC', + VotesSumCreatedBlockIdAsc = 'VOTES_SUM_CREATED_BLOCK_ID_ASC', + VotesSumCreatedBlockIdDesc = 'VOTES_SUM_CREATED_BLOCK_ID_DESC', + VotesSumDatetimeAsc = 'VOTES_SUM_DATETIME_ASC', + VotesSumDatetimeDesc = 'VOTES_SUM_DATETIME_DESC', + VotesSumEventIdxAsc = 'VOTES_SUM_EVENT_IDX_ASC', + VotesSumEventIdxDesc = 'VOTES_SUM_EVENT_IDX_DESC', + VotesSumExtrinsicIdxAsc = 'VOTES_SUM_EXTRINSIC_IDX_ASC', + VotesSumExtrinsicIdxDesc = 'VOTES_SUM_EXTRINSIC_IDX_DESC', + VotesSumIdAsc = 'VOTES_SUM_ID_ASC', + VotesSumIdDesc = 'VOTES_SUM_ID_DESC', + VotesSumProposalIdAsc = 'VOTES_SUM_PROPOSAL_ID_ASC', + VotesSumProposalIdDesc = 'VOTES_SUM_PROPOSAL_ID_DESC', + VotesSumSignerIdAsc = 'VOTES_SUM_SIGNER_ID_ASC', + VotesSumSignerIdDesc = 'VOTES_SUM_SIGNER_ID_DESC', + VotesSumUpdatedBlockIdAsc = 'VOTES_SUM_UPDATED_BLOCK_ID_ASC', + VotesSumUpdatedBlockIdDesc = 'VOTES_SUM_UPDATED_BLOCK_ID_DESC', + VotesVariancePopulationActionAsc = 'VOTES_VARIANCE_POPULATION_ACTION_ASC', + VotesVariancePopulationActionDesc = 'VOTES_VARIANCE_POPULATION_ACTION_DESC', + VotesVariancePopulationBlockRangeAsc = 'VOTES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + VotesVariancePopulationBlockRangeDesc = 'VOTES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + VotesVariancePopulationCreatedAtAsc = 'VOTES_VARIANCE_POPULATION_CREATED_AT_ASC', + VotesVariancePopulationCreatedAtDesc = 'VOTES_VARIANCE_POPULATION_CREATED_AT_DESC', + VotesVariancePopulationCreatedBlockIdAsc = 'VOTES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + VotesVariancePopulationCreatedBlockIdDesc = 'VOTES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + VotesVariancePopulationDatetimeAsc = 'VOTES_VARIANCE_POPULATION_DATETIME_ASC', + VotesVariancePopulationDatetimeDesc = 'VOTES_VARIANCE_POPULATION_DATETIME_DESC', + VotesVariancePopulationEventIdxAsc = 'VOTES_VARIANCE_POPULATION_EVENT_IDX_ASC', + VotesVariancePopulationEventIdxDesc = 'VOTES_VARIANCE_POPULATION_EVENT_IDX_DESC', + VotesVariancePopulationExtrinsicIdxAsc = 'VOTES_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + VotesVariancePopulationExtrinsicIdxDesc = 'VOTES_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + VotesVariancePopulationIdAsc = 'VOTES_VARIANCE_POPULATION_ID_ASC', + VotesVariancePopulationIdDesc = 'VOTES_VARIANCE_POPULATION_ID_DESC', + VotesVariancePopulationProposalIdAsc = 'VOTES_VARIANCE_POPULATION_PROPOSAL_ID_ASC', + VotesVariancePopulationProposalIdDesc = 'VOTES_VARIANCE_POPULATION_PROPOSAL_ID_DESC', + VotesVariancePopulationSignerIdAsc = 'VOTES_VARIANCE_POPULATION_SIGNER_ID_ASC', + VotesVariancePopulationSignerIdDesc = 'VOTES_VARIANCE_POPULATION_SIGNER_ID_DESC', + VotesVariancePopulationUpdatedBlockIdAsc = 'VOTES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + VotesVariancePopulationUpdatedBlockIdDesc = 'VOTES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + VotesVarianceSampleActionAsc = 'VOTES_VARIANCE_SAMPLE_ACTION_ASC', + VotesVarianceSampleActionDesc = 'VOTES_VARIANCE_SAMPLE_ACTION_DESC', + VotesVarianceSampleBlockRangeAsc = 'VOTES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + VotesVarianceSampleBlockRangeDesc = 'VOTES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + VotesVarianceSampleCreatedAtAsc = 'VOTES_VARIANCE_SAMPLE_CREATED_AT_ASC', + VotesVarianceSampleCreatedAtDesc = 'VOTES_VARIANCE_SAMPLE_CREATED_AT_DESC', + VotesVarianceSampleCreatedBlockIdAsc = 'VOTES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + VotesVarianceSampleCreatedBlockIdDesc = 'VOTES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + VotesVarianceSampleDatetimeAsc = 'VOTES_VARIANCE_SAMPLE_DATETIME_ASC', + VotesVarianceSampleDatetimeDesc = 'VOTES_VARIANCE_SAMPLE_DATETIME_DESC', + VotesVarianceSampleEventIdxAsc = 'VOTES_VARIANCE_SAMPLE_EVENT_IDX_ASC', + VotesVarianceSampleEventIdxDesc = 'VOTES_VARIANCE_SAMPLE_EVENT_IDX_DESC', + VotesVarianceSampleExtrinsicIdxAsc = 'VOTES_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + VotesVarianceSampleExtrinsicIdxDesc = 'VOTES_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + VotesVarianceSampleIdAsc = 'VOTES_VARIANCE_SAMPLE_ID_ASC', + VotesVarianceSampleIdDesc = 'VOTES_VARIANCE_SAMPLE_ID_DESC', + VotesVarianceSampleProposalIdAsc = 'VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', + VotesVarianceSampleProposalIdDesc = 'VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', + VotesVarianceSampleSignerIdAsc = 'VOTES_VARIANCE_SAMPLE_SIGNER_ID_ASC', + VotesVarianceSampleSignerIdDesc = 'VOTES_VARIANCE_SAMPLE_SIGNER_ID_DESC', + VotesVarianceSampleUpdatedBlockIdAsc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + VotesVarianceSampleUpdatedBlockIdDesc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', +} + +export type MultiSigStddevPopulationAggregateFilter = { + signaturesRequired?: InputMaybe; +}; + +export type MultiSigStddevPopulationAggregates = { + __typename?: 'MultiSigStddevPopulationAggregates'; + /** Population standard deviation of signaturesRequired across the matching connection */ + signaturesRequired?: Maybe; +}; + +export type MultiSigStddevSampleAggregateFilter = { + signaturesRequired?: InputMaybe; +}; + +export type MultiSigStddevSampleAggregates = { + __typename?: 'MultiSigStddevSampleAggregates'; + /** Sample standard deviation of signaturesRequired across the matching connection */ + signaturesRequired?: Maybe; +}; + +export type MultiSigSumAggregateFilter = { + signaturesRequired?: InputMaybe; +}; + +export type MultiSigSumAggregates = { + __typename?: 'MultiSigSumAggregates'; + /** Sum of signaturesRequired across the matching connection */ + signaturesRequired: Scalars['BigInt']['output']; +}; + +/** A filter to be used against many `MultiSigProposal` object types. All fields are combined with a logical ‘and.’ */ +export type MultiSigToManyMultiSigProposalFilter = { + /** Aggregates across related `MultiSigProposal` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `MultiSigProposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `MultiSigProposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `MultiSigProposal` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `MultiSigSigner` object types. All fields are combined with a logical ‘and.’ */ +export type MultiSigToManyMultiSigSignerFilter = { + /** Aggregates across related `MultiSigSigner` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `MultiSigSigner` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `MultiSigSigner` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `MultiSigSigner` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type MultiSigVariancePopulationAggregateFilter = { + signaturesRequired?: InputMaybe; +}; + +export type MultiSigVariancePopulationAggregates = { + __typename?: 'MultiSigVariancePopulationAggregates'; + /** Population variance of signaturesRequired across the matching connection */ + signaturesRequired?: Maybe; +}; + +export type MultiSigVarianceSampleAggregateFilter = { + signaturesRequired?: InputMaybe; +}; + +export type MultiSigVarianceSampleAggregates = { + __typename?: 'MultiSigVarianceSampleAggregates'; + /** Sample variance of signaturesRequired across the matching connection */ + signaturesRequired?: Maybe; +}; + +/** A connection to a list of `MultiSig` values. */ +export type MultiSigsConnection = { + __typename?: 'MultiSigsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `MultiSig` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `MultiSig` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `MultiSig` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `MultiSig` values. */ +export type MultiSigsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `MultiSig` edge in the connection. */ +export type MultiSigsEdge = { + __typename?: 'MultiSigsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `MultiSig` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `MultiSig` for usage during aggregation. */ +export enum MultiSigsGroupBy { + Address = 'ADDRESS', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorAccountId = 'CREATOR_ACCOUNT_ID', + CreatorId = 'CREATOR_ID', + Id = 'ID', + SignaturesRequired = 'SIGNATURES_REQUIRED', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type MultiSigsHavingAverageInput = { + createdAt?: InputMaybe; + signaturesRequired?: InputMaybe; +}; + +export type MultiSigsHavingDistinctCountInput = { + createdAt?: InputMaybe; + signaturesRequired?: InputMaybe; +}; + +/** Conditions for `MultiSig` aggregates. */ +export type MultiSigsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type MultiSigsHavingMaxInput = { + createdAt?: InputMaybe; + signaturesRequired?: InputMaybe; +}; + +export type MultiSigsHavingMinInput = { + createdAt?: InputMaybe; + signaturesRequired?: InputMaybe; +}; + +export type MultiSigsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + signaturesRequired?: InputMaybe; +}; + +export type MultiSigsHavingStddevSampleInput = { + createdAt?: InputMaybe; + signaturesRequired?: InputMaybe; +}; + +export type MultiSigsHavingSumInput = { + createdAt?: InputMaybe; + signaturesRequired?: InputMaybe; +}; + +export type MultiSigsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + signaturesRequired?: InputMaybe; +}; + +export type MultiSigsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + signaturesRequired?: InputMaybe; +}; + +/** Methods to use when ordering `MultiSig`. */ +export enum MultiSigsOrderBy { + AddressAsc = 'ADDRESS_ASC', + AddressDesc = 'ADDRESS_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + CreatorAccountIdAsc = 'CREATOR_ACCOUNT_ID_ASC', + CreatorAccountIdDesc = 'CREATOR_ACCOUNT_ID_DESC', + CreatorIdAsc = 'CREATOR_ID_ASC', + CreatorIdDesc = 'CREATOR_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ProposalsAverageApprovalCountAsc = 'PROPOSALS_AVERAGE_APPROVAL_COUNT_ASC', + ProposalsAverageApprovalCountDesc = 'PROPOSALS_AVERAGE_APPROVAL_COUNT_DESC', + ProposalsAverageBlockRangeAsc = 'PROPOSALS_AVERAGE_BLOCK_RANGE_ASC', + ProposalsAverageBlockRangeDesc = 'PROPOSALS_AVERAGE_BLOCK_RANGE_DESC', + ProposalsAverageCreatedAtAsc = 'PROPOSALS_AVERAGE_CREATED_AT_ASC', + ProposalsAverageCreatedAtDesc = 'PROPOSALS_AVERAGE_CREATED_AT_DESC', + ProposalsAverageCreatedBlockIdAsc = 'PROPOSALS_AVERAGE_CREATED_BLOCK_ID_ASC', + ProposalsAverageCreatedBlockIdDesc = 'PROPOSALS_AVERAGE_CREATED_BLOCK_ID_DESC', + ProposalsAverageCreatorAccountAsc = 'PROPOSALS_AVERAGE_CREATOR_ACCOUNT_ASC', + ProposalsAverageCreatorAccountDesc = 'PROPOSALS_AVERAGE_CREATOR_ACCOUNT_DESC', + ProposalsAverageCreatorIdAsc = 'PROPOSALS_AVERAGE_CREATOR_ID_ASC', + ProposalsAverageCreatorIdDesc = 'PROPOSALS_AVERAGE_CREATOR_ID_DESC', + ProposalsAverageDatetimeAsc = 'PROPOSALS_AVERAGE_DATETIME_ASC', + ProposalsAverageDatetimeDesc = 'PROPOSALS_AVERAGE_DATETIME_DESC', + ProposalsAverageEventIdxAsc = 'PROPOSALS_AVERAGE_EVENT_IDX_ASC', + ProposalsAverageEventIdxDesc = 'PROPOSALS_AVERAGE_EVENT_IDX_DESC', + ProposalsAverageExtrinsicIdxAsc = 'PROPOSALS_AVERAGE_EXTRINSIC_IDX_ASC', + ProposalsAverageExtrinsicIdxDesc = 'PROPOSALS_AVERAGE_EXTRINSIC_IDX_DESC', + ProposalsAverageIdAsc = 'PROPOSALS_AVERAGE_ID_ASC', + ProposalsAverageIdDesc = 'PROPOSALS_AVERAGE_ID_DESC', + ProposalsAverageMultisigIdAsc = 'PROPOSALS_AVERAGE_MULTISIG_ID_ASC', + ProposalsAverageMultisigIdDesc = 'PROPOSALS_AVERAGE_MULTISIG_ID_DESC', + ProposalsAverageParamsAsc = 'PROPOSALS_AVERAGE_PARAMS_ASC', + ProposalsAverageParamsDesc = 'PROPOSALS_AVERAGE_PARAMS_DESC', + ProposalsAverageProposalIdAsc = 'PROPOSALS_AVERAGE_PROPOSAL_ID_ASC', + ProposalsAverageProposalIdDesc = 'PROPOSALS_AVERAGE_PROPOSAL_ID_DESC', + ProposalsAverageRejectionCountAsc = 'PROPOSALS_AVERAGE_REJECTION_COUNT_ASC', + ProposalsAverageRejectionCountDesc = 'PROPOSALS_AVERAGE_REJECTION_COUNT_DESC', + ProposalsAverageStatusAsc = 'PROPOSALS_AVERAGE_STATUS_ASC', + ProposalsAverageStatusDesc = 'PROPOSALS_AVERAGE_STATUS_DESC', + ProposalsAverageUpdatedBlockIdAsc = 'PROPOSALS_AVERAGE_UPDATED_BLOCK_ID_ASC', + ProposalsAverageUpdatedBlockIdDesc = 'PROPOSALS_AVERAGE_UPDATED_BLOCK_ID_DESC', + ProposalsCountAsc = 'PROPOSALS_COUNT_ASC', + ProposalsCountDesc = 'PROPOSALS_COUNT_DESC', + ProposalsDistinctCountApprovalCountAsc = 'PROPOSALS_DISTINCT_COUNT_APPROVAL_COUNT_ASC', + ProposalsDistinctCountApprovalCountDesc = 'PROPOSALS_DISTINCT_COUNT_APPROVAL_COUNT_DESC', + ProposalsDistinctCountBlockRangeAsc = 'PROPOSALS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + ProposalsDistinctCountBlockRangeDesc = 'PROPOSALS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + ProposalsDistinctCountCreatedAtAsc = 'PROPOSALS_DISTINCT_COUNT_CREATED_AT_ASC', + ProposalsDistinctCountCreatedAtDesc = 'PROPOSALS_DISTINCT_COUNT_CREATED_AT_DESC', + ProposalsDistinctCountCreatedBlockIdAsc = 'PROPOSALS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + ProposalsDistinctCountCreatedBlockIdDesc = 'PROPOSALS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + ProposalsDistinctCountCreatorAccountAsc = 'PROPOSALS_DISTINCT_COUNT_CREATOR_ACCOUNT_ASC', + ProposalsDistinctCountCreatorAccountDesc = 'PROPOSALS_DISTINCT_COUNT_CREATOR_ACCOUNT_DESC', + ProposalsDistinctCountCreatorIdAsc = 'PROPOSALS_DISTINCT_COUNT_CREATOR_ID_ASC', + ProposalsDistinctCountCreatorIdDesc = 'PROPOSALS_DISTINCT_COUNT_CREATOR_ID_DESC', + ProposalsDistinctCountDatetimeAsc = 'PROPOSALS_DISTINCT_COUNT_DATETIME_ASC', + ProposalsDistinctCountDatetimeDesc = 'PROPOSALS_DISTINCT_COUNT_DATETIME_DESC', + ProposalsDistinctCountEventIdxAsc = 'PROPOSALS_DISTINCT_COUNT_EVENT_IDX_ASC', + ProposalsDistinctCountEventIdxDesc = 'PROPOSALS_DISTINCT_COUNT_EVENT_IDX_DESC', + ProposalsDistinctCountExtrinsicIdxAsc = 'PROPOSALS_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + ProposalsDistinctCountExtrinsicIdxDesc = 'PROPOSALS_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + ProposalsDistinctCountIdAsc = 'PROPOSALS_DISTINCT_COUNT_ID_ASC', + ProposalsDistinctCountIdDesc = 'PROPOSALS_DISTINCT_COUNT_ID_DESC', + ProposalsDistinctCountMultisigIdAsc = 'PROPOSALS_DISTINCT_COUNT_MULTISIG_ID_ASC', + ProposalsDistinctCountMultisigIdDesc = 'PROPOSALS_DISTINCT_COUNT_MULTISIG_ID_DESC', + ProposalsDistinctCountParamsAsc = 'PROPOSALS_DISTINCT_COUNT_PARAMS_ASC', + ProposalsDistinctCountParamsDesc = 'PROPOSALS_DISTINCT_COUNT_PARAMS_DESC', + ProposalsDistinctCountProposalIdAsc = 'PROPOSALS_DISTINCT_COUNT_PROPOSAL_ID_ASC', + ProposalsDistinctCountProposalIdDesc = 'PROPOSALS_DISTINCT_COUNT_PROPOSAL_ID_DESC', + ProposalsDistinctCountRejectionCountAsc = 'PROPOSALS_DISTINCT_COUNT_REJECTION_COUNT_ASC', + ProposalsDistinctCountRejectionCountDesc = 'PROPOSALS_DISTINCT_COUNT_REJECTION_COUNT_DESC', + ProposalsDistinctCountStatusAsc = 'PROPOSALS_DISTINCT_COUNT_STATUS_ASC', + ProposalsDistinctCountStatusDesc = 'PROPOSALS_DISTINCT_COUNT_STATUS_DESC', + ProposalsDistinctCountUpdatedBlockIdAsc = 'PROPOSALS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + ProposalsDistinctCountUpdatedBlockIdDesc = 'PROPOSALS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + ProposalsMaxApprovalCountAsc = 'PROPOSALS_MAX_APPROVAL_COUNT_ASC', + ProposalsMaxApprovalCountDesc = 'PROPOSALS_MAX_APPROVAL_COUNT_DESC', + ProposalsMaxBlockRangeAsc = 'PROPOSALS_MAX_BLOCK_RANGE_ASC', + ProposalsMaxBlockRangeDesc = 'PROPOSALS_MAX_BLOCK_RANGE_DESC', + ProposalsMaxCreatedAtAsc = 'PROPOSALS_MAX_CREATED_AT_ASC', + ProposalsMaxCreatedAtDesc = 'PROPOSALS_MAX_CREATED_AT_DESC', + ProposalsMaxCreatedBlockIdAsc = 'PROPOSALS_MAX_CREATED_BLOCK_ID_ASC', + ProposalsMaxCreatedBlockIdDesc = 'PROPOSALS_MAX_CREATED_BLOCK_ID_DESC', + ProposalsMaxCreatorAccountAsc = 'PROPOSALS_MAX_CREATOR_ACCOUNT_ASC', + ProposalsMaxCreatorAccountDesc = 'PROPOSALS_MAX_CREATOR_ACCOUNT_DESC', + ProposalsMaxCreatorIdAsc = 'PROPOSALS_MAX_CREATOR_ID_ASC', + ProposalsMaxCreatorIdDesc = 'PROPOSALS_MAX_CREATOR_ID_DESC', + ProposalsMaxDatetimeAsc = 'PROPOSALS_MAX_DATETIME_ASC', + ProposalsMaxDatetimeDesc = 'PROPOSALS_MAX_DATETIME_DESC', + ProposalsMaxEventIdxAsc = 'PROPOSALS_MAX_EVENT_IDX_ASC', + ProposalsMaxEventIdxDesc = 'PROPOSALS_MAX_EVENT_IDX_DESC', + ProposalsMaxExtrinsicIdxAsc = 'PROPOSALS_MAX_EXTRINSIC_IDX_ASC', + ProposalsMaxExtrinsicIdxDesc = 'PROPOSALS_MAX_EXTRINSIC_IDX_DESC', + ProposalsMaxIdAsc = 'PROPOSALS_MAX_ID_ASC', + ProposalsMaxIdDesc = 'PROPOSALS_MAX_ID_DESC', + ProposalsMaxMultisigIdAsc = 'PROPOSALS_MAX_MULTISIG_ID_ASC', + ProposalsMaxMultisigIdDesc = 'PROPOSALS_MAX_MULTISIG_ID_DESC', + ProposalsMaxParamsAsc = 'PROPOSALS_MAX_PARAMS_ASC', + ProposalsMaxParamsDesc = 'PROPOSALS_MAX_PARAMS_DESC', + ProposalsMaxProposalIdAsc = 'PROPOSALS_MAX_PROPOSAL_ID_ASC', + ProposalsMaxProposalIdDesc = 'PROPOSALS_MAX_PROPOSAL_ID_DESC', + ProposalsMaxRejectionCountAsc = 'PROPOSALS_MAX_REJECTION_COUNT_ASC', + ProposalsMaxRejectionCountDesc = 'PROPOSALS_MAX_REJECTION_COUNT_DESC', + ProposalsMaxStatusAsc = 'PROPOSALS_MAX_STATUS_ASC', + ProposalsMaxStatusDesc = 'PROPOSALS_MAX_STATUS_DESC', + ProposalsMaxUpdatedBlockIdAsc = 'PROPOSALS_MAX_UPDATED_BLOCK_ID_ASC', + ProposalsMaxUpdatedBlockIdDesc = 'PROPOSALS_MAX_UPDATED_BLOCK_ID_DESC', + ProposalsMinApprovalCountAsc = 'PROPOSALS_MIN_APPROVAL_COUNT_ASC', + ProposalsMinApprovalCountDesc = 'PROPOSALS_MIN_APPROVAL_COUNT_DESC', + ProposalsMinBlockRangeAsc = 'PROPOSALS_MIN_BLOCK_RANGE_ASC', + ProposalsMinBlockRangeDesc = 'PROPOSALS_MIN_BLOCK_RANGE_DESC', + ProposalsMinCreatedAtAsc = 'PROPOSALS_MIN_CREATED_AT_ASC', + ProposalsMinCreatedAtDesc = 'PROPOSALS_MIN_CREATED_AT_DESC', + ProposalsMinCreatedBlockIdAsc = 'PROPOSALS_MIN_CREATED_BLOCK_ID_ASC', + ProposalsMinCreatedBlockIdDesc = 'PROPOSALS_MIN_CREATED_BLOCK_ID_DESC', + ProposalsMinCreatorAccountAsc = 'PROPOSALS_MIN_CREATOR_ACCOUNT_ASC', + ProposalsMinCreatorAccountDesc = 'PROPOSALS_MIN_CREATOR_ACCOUNT_DESC', + ProposalsMinCreatorIdAsc = 'PROPOSALS_MIN_CREATOR_ID_ASC', + ProposalsMinCreatorIdDesc = 'PROPOSALS_MIN_CREATOR_ID_DESC', + ProposalsMinDatetimeAsc = 'PROPOSALS_MIN_DATETIME_ASC', + ProposalsMinDatetimeDesc = 'PROPOSALS_MIN_DATETIME_DESC', + ProposalsMinEventIdxAsc = 'PROPOSALS_MIN_EVENT_IDX_ASC', + ProposalsMinEventIdxDesc = 'PROPOSALS_MIN_EVENT_IDX_DESC', + ProposalsMinExtrinsicIdxAsc = 'PROPOSALS_MIN_EXTRINSIC_IDX_ASC', + ProposalsMinExtrinsicIdxDesc = 'PROPOSALS_MIN_EXTRINSIC_IDX_DESC', + ProposalsMinIdAsc = 'PROPOSALS_MIN_ID_ASC', + ProposalsMinIdDesc = 'PROPOSALS_MIN_ID_DESC', + ProposalsMinMultisigIdAsc = 'PROPOSALS_MIN_MULTISIG_ID_ASC', + ProposalsMinMultisigIdDesc = 'PROPOSALS_MIN_MULTISIG_ID_DESC', + ProposalsMinParamsAsc = 'PROPOSALS_MIN_PARAMS_ASC', + ProposalsMinParamsDesc = 'PROPOSALS_MIN_PARAMS_DESC', + ProposalsMinProposalIdAsc = 'PROPOSALS_MIN_PROPOSAL_ID_ASC', + ProposalsMinProposalIdDesc = 'PROPOSALS_MIN_PROPOSAL_ID_DESC', + ProposalsMinRejectionCountAsc = 'PROPOSALS_MIN_REJECTION_COUNT_ASC', + ProposalsMinRejectionCountDesc = 'PROPOSALS_MIN_REJECTION_COUNT_DESC', + ProposalsMinStatusAsc = 'PROPOSALS_MIN_STATUS_ASC', + ProposalsMinStatusDesc = 'PROPOSALS_MIN_STATUS_DESC', + ProposalsMinUpdatedBlockIdAsc = 'PROPOSALS_MIN_UPDATED_BLOCK_ID_ASC', + ProposalsMinUpdatedBlockIdDesc = 'PROPOSALS_MIN_UPDATED_BLOCK_ID_DESC', + ProposalsStddevPopulationApprovalCountAsc = 'PROPOSALS_STDDEV_POPULATION_APPROVAL_COUNT_ASC', + ProposalsStddevPopulationApprovalCountDesc = 'PROPOSALS_STDDEV_POPULATION_APPROVAL_COUNT_DESC', + ProposalsStddevPopulationBlockRangeAsc = 'PROPOSALS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + ProposalsStddevPopulationBlockRangeDesc = 'PROPOSALS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + ProposalsStddevPopulationCreatedAtAsc = 'PROPOSALS_STDDEV_POPULATION_CREATED_AT_ASC', + ProposalsStddevPopulationCreatedAtDesc = 'PROPOSALS_STDDEV_POPULATION_CREATED_AT_DESC', + ProposalsStddevPopulationCreatedBlockIdAsc = 'PROPOSALS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalsStddevPopulationCreatedBlockIdDesc = 'PROPOSALS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalsStddevPopulationCreatorAccountAsc = 'PROPOSALS_STDDEV_POPULATION_CREATOR_ACCOUNT_ASC', + ProposalsStddevPopulationCreatorAccountDesc = 'PROPOSALS_STDDEV_POPULATION_CREATOR_ACCOUNT_DESC', + ProposalsStddevPopulationCreatorIdAsc = 'PROPOSALS_STDDEV_POPULATION_CREATOR_ID_ASC', + ProposalsStddevPopulationCreatorIdDesc = 'PROPOSALS_STDDEV_POPULATION_CREATOR_ID_DESC', + ProposalsStddevPopulationDatetimeAsc = 'PROPOSALS_STDDEV_POPULATION_DATETIME_ASC', + ProposalsStddevPopulationDatetimeDesc = 'PROPOSALS_STDDEV_POPULATION_DATETIME_DESC', + ProposalsStddevPopulationEventIdxAsc = 'PROPOSALS_STDDEV_POPULATION_EVENT_IDX_ASC', + ProposalsStddevPopulationEventIdxDesc = 'PROPOSALS_STDDEV_POPULATION_EVENT_IDX_DESC', + ProposalsStddevPopulationExtrinsicIdxAsc = 'PROPOSALS_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + ProposalsStddevPopulationExtrinsicIdxDesc = 'PROPOSALS_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + ProposalsStddevPopulationIdAsc = 'PROPOSALS_STDDEV_POPULATION_ID_ASC', + ProposalsStddevPopulationIdDesc = 'PROPOSALS_STDDEV_POPULATION_ID_DESC', + ProposalsStddevPopulationMultisigIdAsc = 'PROPOSALS_STDDEV_POPULATION_MULTISIG_ID_ASC', + ProposalsStddevPopulationMultisigIdDesc = 'PROPOSALS_STDDEV_POPULATION_MULTISIG_ID_DESC', + ProposalsStddevPopulationParamsAsc = 'PROPOSALS_STDDEV_POPULATION_PARAMS_ASC', + ProposalsStddevPopulationParamsDesc = 'PROPOSALS_STDDEV_POPULATION_PARAMS_DESC', + ProposalsStddevPopulationProposalIdAsc = 'PROPOSALS_STDDEV_POPULATION_PROPOSAL_ID_ASC', + ProposalsStddevPopulationProposalIdDesc = 'PROPOSALS_STDDEV_POPULATION_PROPOSAL_ID_DESC', + ProposalsStddevPopulationRejectionCountAsc = 'PROPOSALS_STDDEV_POPULATION_REJECTION_COUNT_ASC', + ProposalsStddevPopulationRejectionCountDesc = 'PROPOSALS_STDDEV_POPULATION_REJECTION_COUNT_DESC', + ProposalsStddevPopulationStatusAsc = 'PROPOSALS_STDDEV_POPULATION_STATUS_ASC', + ProposalsStddevPopulationStatusDesc = 'PROPOSALS_STDDEV_POPULATION_STATUS_DESC', + ProposalsStddevPopulationUpdatedBlockIdAsc = 'PROPOSALS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalsStddevPopulationUpdatedBlockIdDesc = 'PROPOSALS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalsStddevSampleApprovalCountAsc = 'PROPOSALS_STDDEV_SAMPLE_APPROVAL_COUNT_ASC', + ProposalsStddevSampleApprovalCountDesc = 'PROPOSALS_STDDEV_SAMPLE_APPROVAL_COUNT_DESC', + ProposalsStddevSampleBlockRangeAsc = 'PROPOSALS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + ProposalsStddevSampleBlockRangeDesc = 'PROPOSALS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + ProposalsStddevSampleCreatedAtAsc = 'PROPOSALS_STDDEV_SAMPLE_CREATED_AT_ASC', + ProposalsStddevSampleCreatedAtDesc = 'PROPOSALS_STDDEV_SAMPLE_CREATED_AT_DESC', + ProposalsStddevSampleCreatedBlockIdAsc = 'PROPOSALS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalsStddevSampleCreatedBlockIdDesc = 'PROPOSALS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalsStddevSampleCreatorAccountAsc = 'PROPOSALS_STDDEV_SAMPLE_CREATOR_ACCOUNT_ASC', + ProposalsStddevSampleCreatorAccountDesc = 'PROPOSALS_STDDEV_SAMPLE_CREATOR_ACCOUNT_DESC', + ProposalsStddevSampleCreatorIdAsc = 'PROPOSALS_STDDEV_SAMPLE_CREATOR_ID_ASC', + ProposalsStddevSampleCreatorIdDesc = 'PROPOSALS_STDDEV_SAMPLE_CREATOR_ID_DESC', + ProposalsStddevSampleDatetimeAsc = 'PROPOSALS_STDDEV_SAMPLE_DATETIME_ASC', + ProposalsStddevSampleDatetimeDesc = 'PROPOSALS_STDDEV_SAMPLE_DATETIME_DESC', + ProposalsStddevSampleEventIdxAsc = 'PROPOSALS_STDDEV_SAMPLE_EVENT_IDX_ASC', + ProposalsStddevSampleEventIdxDesc = 'PROPOSALS_STDDEV_SAMPLE_EVENT_IDX_DESC', + ProposalsStddevSampleExtrinsicIdxAsc = 'PROPOSALS_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + ProposalsStddevSampleExtrinsicIdxDesc = 'PROPOSALS_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + ProposalsStddevSampleIdAsc = 'PROPOSALS_STDDEV_SAMPLE_ID_ASC', + ProposalsStddevSampleIdDesc = 'PROPOSALS_STDDEV_SAMPLE_ID_DESC', + ProposalsStddevSampleMultisigIdAsc = 'PROPOSALS_STDDEV_SAMPLE_MULTISIG_ID_ASC', + ProposalsStddevSampleMultisigIdDesc = 'PROPOSALS_STDDEV_SAMPLE_MULTISIG_ID_DESC', + ProposalsStddevSampleParamsAsc = 'PROPOSALS_STDDEV_SAMPLE_PARAMS_ASC', + ProposalsStddevSampleParamsDesc = 'PROPOSALS_STDDEV_SAMPLE_PARAMS_DESC', + ProposalsStddevSampleProposalIdAsc = 'PROPOSALS_STDDEV_SAMPLE_PROPOSAL_ID_ASC', + ProposalsStddevSampleProposalIdDesc = 'PROPOSALS_STDDEV_SAMPLE_PROPOSAL_ID_DESC', + ProposalsStddevSampleRejectionCountAsc = 'PROPOSALS_STDDEV_SAMPLE_REJECTION_COUNT_ASC', + ProposalsStddevSampleRejectionCountDesc = 'PROPOSALS_STDDEV_SAMPLE_REJECTION_COUNT_DESC', + ProposalsStddevSampleStatusAsc = 'PROPOSALS_STDDEV_SAMPLE_STATUS_ASC', + ProposalsStddevSampleStatusDesc = 'PROPOSALS_STDDEV_SAMPLE_STATUS_DESC', + ProposalsStddevSampleUpdatedBlockIdAsc = 'PROPOSALS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalsStddevSampleUpdatedBlockIdDesc = 'PROPOSALS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + ProposalsSumApprovalCountAsc = 'PROPOSALS_SUM_APPROVAL_COUNT_ASC', + ProposalsSumApprovalCountDesc = 'PROPOSALS_SUM_APPROVAL_COUNT_DESC', + ProposalsSumBlockRangeAsc = 'PROPOSALS_SUM_BLOCK_RANGE_ASC', + ProposalsSumBlockRangeDesc = 'PROPOSALS_SUM_BLOCK_RANGE_DESC', + ProposalsSumCreatedAtAsc = 'PROPOSALS_SUM_CREATED_AT_ASC', + ProposalsSumCreatedAtDesc = 'PROPOSALS_SUM_CREATED_AT_DESC', + ProposalsSumCreatedBlockIdAsc = 'PROPOSALS_SUM_CREATED_BLOCK_ID_ASC', + ProposalsSumCreatedBlockIdDesc = 'PROPOSALS_SUM_CREATED_BLOCK_ID_DESC', + ProposalsSumCreatorAccountAsc = 'PROPOSALS_SUM_CREATOR_ACCOUNT_ASC', + ProposalsSumCreatorAccountDesc = 'PROPOSALS_SUM_CREATOR_ACCOUNT_DESC', + ProposalsSumCreatorIdAsc = 'PROPOSALS_SUM_CREATOR_ID_ASC', + ProposalsSumCreatorIdDesc = 'PROPOSALS_SUM_CREATOR_ID_DESC', + ProposalsSumDatetimeAsc = 'PROPOSALS_SUM_DATETIME_ASC', + ProposalsSumDatetimeDesc = 'PROPOSALS_SUM_DATETIME_DESC', + ProposalsSumEventIdxAsc = 'PROPOSALS_SUM_EVENT_IDX_ASC', + ProposalsSumEventIdxDesc = 'PROPOSALS_SUM_EVENT_IDX_DESC', + ProposalsSumExtrinsicIdxAsc = 'PROPOSALS_SUM_EXTRINSIC_IDX_ASC', + ProposalsSumExtrinsicIdxDesc = 'PROPOSALS_SUM_EXTRINSIC_IDX_DESC', + ProposalsSumIdAsc = 'PROPOSALS_SUM_ID_ASC', + ProposalsSumIdDesc = 'PROPOSALS_SUM_ID_DESC', + ProposalsSumMultisigIdAsc = 'PROPOSALS_SUM_MULTISIG_ID_ASC', + ProposalsSumMultisigIdDesc = 'PROPOSALS_SUM_MULTISIG_ID_DESC', + ProposalsSumParamsAsc = 'PROPOSALS_SUM_PARAMS_ASC', + ProposalsSumParamsDesc = 'PROPOSALS_SUM_PARAMS_DESC', + ProposalsSumProposalIdAsc = 'PROPOSALS_SUM_PROPOSAL_ID_ASC', + ProposalsSumProposalIdDesc = 'PROPOSALS_SUM_PROPOSAL_ID_DESC', + ProposalsSumRejectionCountAsc = 'PROPOSALS_SUM_REJECTION_COUNT_ASC', + ProposalsSumRejectionCountDesc = 'PROPOSALS_SUM_REJECTION_COUNT_DESC', + ProposalsSumStatusAsc = 'PROPOSALS_SUM_STATUS_ASC', + ProposalsSumStatusDesc = 'PROPOSALS_SUM_STATUS_DESC', + ProposalsSumUpdatedBlockIdAsc = 'PROPOSALS_SUM_UPDATED_BLOCK_ID_ASC', + ProposalsSumUpdatedBlockIdDesc = 'PROPOSALS_SUM_UPDATED_BLOCK_ID_DESC', + ProposalsVariancePopulationApprovalCountAsc = 'PROPOSALS_VARIANCE_POPULATION_APPROVAL_COUNT_ASC', + ProposalsVariancePopulationApprovalCountDesc = 'PROPOSALS_VARIANCE_POPULATION_APPROVAL_COUNT_DESC', + ProposalsVariancePopulationBlockRangeAsc = 'PROPOSALS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + ProposalsVariancePopulationBlockRangeDesc = 'PROPOSALS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + ProposalsVariancePopulationCreatedAtAsc = 'PROPOSALS_VARIANCE_POPULATION_CREATED_AT_ASC', + ProposalsVariancePopulationCreatedAtDesc = 'PROPOSALS_VARIANCE_POPULATION_CREATED_AT_DESC', + ProposalsVariancePopulationCreatedBlockIdAsc = 'PROPOSALS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + ProposalsVariancePopulationCreatedBlockIdDesc = 'PROPOSALS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + ProposalsVariancePopulationCreatorAccountAsc = 'PROPOSALS_VARIANCE_POPULATION_CREATOR_ACCOUNT_ASC', + ProposalsVariancePopulationCreatorAccountDesc = 'PROPOSALS_VARIANCE_POPULATION_CREATOR_ACCOUNT_DESC', + ProposalsVariancePopulationCreatorIdAsc = 'PROPOSALS_VARIANCE_POPULATION_CREATOR_ID_ASC', + ProposalsVariancePopulationCreatorIdDesc = 'PROPOSALS_VARIANCE_POPULATION_CREATOR_ID_DESC', + ProposalsVariancePopulationDatetimeAsc = 'PROPOSALS_VARIANCE_POPULATION_DATETIME_ASC', + ProposalsVariancePopulationDatetimeDesc = 'PROPOSALS_VARIANCE_POPULATION_DATETIME_DESC', + ProposalsVariancePopulationEventIdxAsc = 'PROPOSALS_VARIANCE_POPULATION_EVENT_IDX_ASC', + ProposalsVariancePopulationEventIdxDesc = 'PROPOSALS_VARIANCE_POPULATION_EVENT_IDX_DESC', + ProposalsVariancePopulationExtrinsicIdxAsc = 'PROPOSALS_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + ProposalsVariancePopulationExtrinsicIdxDesc = 'PROPOSALS_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + ProposalsVariancePopulationIdAsc = 'PROPOSALS_VARIANCE_POPULATION_ID_ASC', + ProposalsVariancePopulationIdDesc = 'PROPOSALS_VARIANCE_POPULATION_ID_DESC', + ProposalsVariancePopulationMultisigIdAsc = 'PROPOSALS_VARIANCE_POPULATION_MULTISIG_ID_ASC', + ProposalsVariancePopulationMultisigIdDesc = 'PROPOSALS_VARIANCE_POPULATION_MULTISIG_ID_DESC', + ProposalsVariancePopulationParamsAsc = 'PROPOSALS_VARIANCE_POPULATION_PARAMS_ASC', + ProposalsVariancePopulationParamsDesc = 'PROPOSALS_VARIANCE_POPULATION_PARAMS_DESC', + ProposalsVariancePopulationProposalIdAsc = 'PROPOSALS_VARIANCE_POPULATION_PROPOSAL_ID_ASC', + ProposalsVariancePopulationProposalIdDesc = 'PROPOSALS_VARIANCE_POPULATION_PROPOSAL_ID_DESC', + ProposalsVariancePopulationRejectionCountAsc = 'PROPOSALS_VARIANCE_POPULATION_REJECTION_COUNT_ASC', + ProposalsVariancePopulationRejectionCountDesc = 'PROPOSALS_VARIANCE_POPULATION_REJECTION_COUNT_DESC', + ProposalsVariancePopulationStatusAsc = 'PROPOSALS_VARIANCE_POPULATION_STATUS_ASC', + ProposalsVariancePopulationStatusDesc = 'PROPOSALS_VARIANCE_POPULATION_STATUS_DESC', + ProposalsVariancePopulationUpdatedBlockIdAsc = 'PROPOSALS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + ProposalsVariancePopulationUpdatedBlockIdDesc = 'PROPOSALS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + ProposalsVarianceSampleApprovalCountAsc = 'PROPOSALS_VARIANCE_SAMPLE_APPROVAL_COUNT_ASC', + ProposalsVarianceSampleApprovalCountDesc = 'PROPOSALS_VARIANCE_SAMPLE_APPROVAL_COUNT_DESC', + ProposalsVarianceSampleBlockRangeAsc = 'PROPOSALS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + ProposalsVarianceSampleBlockRangeDesc = 'PROPOSALS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + ProposalsVarianceSampleCreatedAtAsc = 'PROPOSALS_VARIANCE_SAMPLE_CREATED_AT_ASC', + ProposalsVarianceSampleCreatedAtDesc = 'PROPOSALS_VARIANCE_SAMPLE_CREATED_AT_DESC', + ProposalsVarianceSampleCreatedBlockIdAsc = 'PROPOSALS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + ProposalsVarianceSampleCreatedBlockIdDesc = 'PROPOSALS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + ProposalsVarianceSampleCreatorAccountAsc = 'PROPOSALS_VARIANCE_SAMPLE_CREATOR_ACCOUNT_ASC', + ProposalsVarianceSampleCreatorAccountDesc = 'PROPOSALS_VARIANCE_SAMPLE_CREATOR_ACCOUNT_DESC', + ProposalsVarianceSampleCreatorIdAsc = 'PROPOSALS_VARIANCE_SAMPLE_CREATOR_ID_ASC', + ProposalsVarianceSampleCreatorIdDesc = 'PROPOSALS_VARIANCE_SAMPLE_CREATOR_ID_DESC', + ProposalsVarianceSampleDatetimeAsc = 'PROPOSALS_VARIANCE_SAMPLE_DATETIME_ASC', + ProposalsVarianceSampleDatetimeDesc = 'PROPOSALS_VARIANCE_SAMPLE_DATETIME_DESC', + ProposalsVarianceSampleEventIdxAsc = 'PROPOSALS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + ProposalsVarianceSampleEventIdxDesc = 'PROPOSALS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + ProposalsVarianceSampleExtrinsicIdxAsc = 'PROPOSALS_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + ProposalsVarianceSampleExtrinsicIdxDesc = 'PROPOSALS_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + ProposalsVarianceSampleIdAsc = 'PROPOSALS_VARIANCE_SAMPLE_ID_ASC', + ProposalsVarianceSampleIdDesc = 'PROPOSALS_VARIANCE_SAMPLE_ID_DESC', + ProposalsVarianceSampleMultisigIdAsc = 'PROPOSALS_VARIANCE_SAMPLE_MULTISIG_ID_ASC', + ProposalsVarianceSampleMultisigIdDesc = 'PROPOSALS_VARIANCE_SAMPLE_MULTISIG_ID_DESC', + ProposalsVarianceSampleParamsAsc = 'PROPOSALS_VARIANCE_SAMPLE_PARAMS_ASC', + ProposalsVarianceSampleParamsDesc = 'PROPOSALS_VARIANCE_SAMPLE_PARAMS_DESC', + ProposalsVarianceSampleProposalIdAsc = 'PROPOSALS_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', + ProposalsVarianceSampleProposalIdDesc = 'PROPOSALS_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', + ProposalsVarianceSampleRejectionCountAsc = 'PROPOSALS_VARIANCE_SAMPLE_REJECTION_COUNT_ASC', + ProposalsVarianceSampleRejectionCountDesc = 'PROPOSALS_VARIANCE_SAMPLE_REJECTION_COUNT_DESC', + ProposalsVarianceSampleStatusAsc = 'PROPOSALS_VARIANCE_SAMPLE_STATUS_ASC', + ProposalsVarianceSampleStatusDesc = 'PROPOSALS_VARIANCE_SAMPLE_STATUS_DESC', + ProposalsVarianceSampleUpdatedBlockIdAsc = 'PROPOSALS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + ProposalsVarianceSampleUpdatedBlockIdDesc = 'PROPOSALS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + SignaturesRequiredAsc = 'SIGNATURES_REQUIRED_ASC', + SignaturesRequiredDesc = 'SIGNATURES_REQUIRED_DESC', + SignersAverageBlockRangeAsc = 'SIGNERS_AVERAGE_BLOCK_RANGE_ASC', + SignersAverageBlockRangeDesc = 'SIGNERS_AVERAGE_BLOCK_RANGE_DESC', + SignersAverageCreatedAtAsc = 'SIGNERS_AVERAGE_CREATED_AT_ASC', + SignersAverageCreatedAtDesc = 'SIGNERS_AVERAGE_CREATED_AT_DESC', + SignersAverageCreatedBlockIdAsc = 'SIGNERS_AVERAGE_CREATED_BLOCK_ID_ASC', + SignersAverageCreatedBlockIdDesc = 'SIGNERS_AVERAGE_CREATED_BLOCK_ID_DESC', + SignersAverageIdAsc = 'SIGNERS_AVERAGE_ID_ASC', + SignersAverageIdDesc = 'SIGNERS_AVERAGE_ID_DESC', + SignersAverageMultisigIdAsc = 'SIGNERS_AVERAGE_MULTISIG_ID_ASC', + SignersAverageMultisigIdDesc = 'SIGNERS_AVERAGE_MULTISIG_ID_DESC', + SignersAverageSignerTypeAsc = 'SIGNERS_AVERAGE_SIGNER_TYPE_ASC', + SignersAverageSignerTypeDesc = 'SIGNERS_AVERAGE_SIGNER_TYPE_DESC', + SignersAverageSignerValueAsc = 'SIGNERS_AVERAGE_SIGNER_VALUE_ASC', + SignersAverageSignerValueDesc = 'SIGNERS_AVERAGE_SIGNER_VALUE_DESC', + SignersAverageStatusAsc = 'SIGNERS_AVERAGE_STATUS_ASC', + SignersAverageStatusDesc = 'SIGNERS_AVERAGE_STATUS_DESC', + SignersAverageUpdatedBlockIdAsc = 'SIGNERS_AVERAGE_UPDATED_BLOCK_ID_ASC', + SignersAverageUpdatedBlockIdDesc = 'SIGNERS_AVERAGE_UPDATED_BLOCK_ID_DESC', + SignersCountAsc = 'SIGNERS_COUNT_ASC', + SignersCountDesc = 'SIGNERS_COUNT_DESC', + SignersDistinctCountBlockRangeAsc = 'SIGNERS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + SignersDistinctCountBlockRangeDesc = 'SIGNERS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + SignersDistinctCountCreatedAtAsc = 'SIGNERS_DISTINCT_COUNT_CREATED_AT_ASC', + SignersDistinctCountCreatedAtDesc = 'SIGNERS_DISTINCT_COUNT_CREATED_AT_DESC', + SignersDistinctCountCreatedBlockIdAsc = 'SIGNERS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + SignersDistinctCountCreatedBlockIdDesc = 'SIGNERS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + SignersDistinctCountIdAsc = 'SIGNERS_DISTINCT_COUNT_ID_ASC', + SignersDistinctCountIdDesc = 'SIGNERS_DISTINCT_COUNT_ID_DESC', + SignersDistinctCountMultisigIdAsc = 'SIGNERS_DISTINCT_COUNT_MULTISIG_ID_ASC', + SignersDistinctCountMultisigIdDesc = 'SIGNERS_DISTINCT_COUNT_MULTISIG_ID_DESC', + SignersDistinctCountSignerTypeAsc = 'SIGNERS_DISTINCT_COUNT_SIGNER_TYPE_ASC', + SignersDistinctCountSignerTypeDesc = 'SIGNERS_DISTINCT_COUNT_SIGNER_TYPE_DESC', + SignersDistinctCountSignerValueAsc = 'SIGNERS_DISTINCT_COUNT_SIGNER_VALUE_ASC', + SignersDistinctCountSignerValueDesc = 'SIGNERS_DISTINCT_COUNT_SIGNER_VALUE_DESC', + SignersDistinctCountStatusAsc = 'SIGNERS_DISTINCT_COUNT_STATUS_ASC', + SignersDistinctCountStatusDesc = 'SIGNERS_DISTINCT_COUNT_STATUS_DESC', + SignersDistinctCountUpdatedBlockIdAsc = 'SIGNERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + SignersDistinctCountUpdatedBlockIdDesc = 'SIGNERS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + SignersMaxBlockRangeAsc = 'SIGNERS_MAX_BLOCK_RANGE_ASC', + SignersMaxBlockRangeDesc = 'SIGNERS_MAX_BLOCK_RANGE_DESC', + SignersMaxCreatedAtAsc = 'SIGNERS_MAX_CREATED_AT_ASC', + SignersMaxCreatedAtDesc = 'SIGNERS_MAX_CREATED_AT_DESC', + SignersMaxCreatedBlockIdAsc = 'SIGNERS_MAX_CREATED_BLOCK_ID_ASC', + SignersMaxCreatedBlockIdDesc = 'SIGNERS_MAX_CREATED_BLOCK_ID_DESC', + SignersMaxIdAsc = 'SIGNERS_MAX_ID_ASC', + SignersMaxIdDesc = 'SIGNERS_MAX_ID_DESC', + SignersMaxMultisigIdAsc = 'SIGNERS_MAX_MULTISIG_ID_ASC', + SignersMaxMultisigIdDesc = 'SIGNERS_MAX_MULTISIG_ID_DESC', + SignersMaxSignerTypeAsc = 'SIGNERS_MAX_SIGNER_TYPE_ASC', + SignersMaxSignerTypeDesc = 'SIGNERS_MAX_SIGNER_TYPE_DESC', + SignersMaxSignerValueAsc = 'SIGNERS_MAX_SIGNER_VALUE_ASC', + SignersMaxSignerValueDesc = 'SIGNERS_MAX_SIGNER_VALUE_DESC', + SignersMaxStatusAsc = 'SIGNERS_MAX_STATUS_ASC', + SignersMaxStatusDesc = 'SIGNERS_MAX_STATUS_DESC', + SignersMaxUpdatedBlockIdAsc = 'SIGNERS_MAX_UPDATED_BLOCK_ID_ASC', + SignersMaxUpdatedBlockIdDesc = 'SIGNERS_MAX_UPDATED_BLOCK_ID_DESC', + SignersMinBlockRangeAsc = 'SIGNERS_MIN_BLOCK_RANGE_ASC', + SignersMinBlockRangeDesc = 'SIGNERS_MIN_BLOCK_RANGE_DESC', + SignersMinCreatedAtAsc = 'SIGNERS_MIN_CREATED_AT_ASC', + SignersMinCreatedAtDesc = 'SIGNERS_MIN_CREATED_AT_DESC', + SignersMinCreatedBlockIdAsc = 'SIGNERS_MIN_CREATED_BLOCK_ID_ASC', + SignersMinCreatedBlockIdDesc = 'SIGNERS_MIN_CREATED_BLOCK_ID_DESC', + SignersMinIdAsc = 'SIGNERS_MIN_ID_ASC', + SignersMinIdDesc = 'SIGNERS_MIN_ID_DESC', + SignersMinMultisigIdAsc = 'SIGNERS_MIN_MULTISIG_ID_ASC', + SignersMinMultisigIdDesc = 'SIGNERS_MIN_MULTISIG_ID_DESC', + SignersMinSignerTypeAsc = 'SIGNERS_MIN_SIGNER_TYPE_ASC', + SignersMinSignerTypeDesc = 'SIGNERS_MIN_SIGNER_TYPE_DESC', + SignersMinSignerValueAsc = 'SIGNERS_MIN_SIGNER_VALUE_ASC', + SignersMinSignerValueDesc = 'SIGNERS_MIN_SIGNER_VALUE_DESC', + SignersMinStatusAsc = 'SIGNERS_MIN_STATUS_ASC', + SignersMinStatusDesc = 'SIGNERS_MIN_STATUS_DESC', + SignersMinUpdatedBlockIdAsc = 'SIGNERS_MIN_UPDATED_BLOCK_ID_ASC', + SignersMinUpdatedBlockIdDesc = 'SIGNERS_MIN_UPDATED_BLOCK_ID_DESC', + SignersStddevPopulationBlockRangeAsc = 'SIGNERS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + SignersStddevPopulationBlockRangeDesc = 'SIGNERS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + SignersStddevPopulationCreatedAtAsc = 'SIGNERS_STDDEV_POPULATION_CREATED_AT_ASC', + SignersStddevPopulationCreatedAtDesc = 'SIGNERS_STDDEV_POPULATION_CREATED_AT_DESC', + SignersStddevPopulationCreatedBlockIdAsc = 'SIGNERS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + SignersStddevPopulationCreatedBlockIdDesc = 'SIGNERS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + SignersStddevPopulationIdAsc = 'SIGNERS_STDDEV_POPULATION_ID_ASC', + SignersStddevPopulationIdDesc = 'SIGNERS_STDDEV_POPULATION_ID_DESC', + SignersStddevPopulationMultisigIdAsc = 'SIGNERS_STDDEV_POPULATION_MULTISIG_ID_ASC', + SignersStddevPopulationMultisigIdDesc = 'SIGNERS_STDDEV_POPULATION_MULTISIG_ID_DESC', + SignersStddevPopulationSignerTypeAsc = 'SIGNERS_STDDEV_POPULATION_SIGNER_TYPE_ASC', + SignersStddevPopulationSignerTypeDesc = 'SIGNERS_STDDEV_POPULATION_SIGNER_TYPE_DESC', + SignersStddevPopulationSignerValueAsc = 'SIGNERS_STDDEV_POPULATION_SIGNER_VALUE_ASC', + SignersStddevPopulationSignerValueDesc = 'SIGNERS_STDDEV_POPULATION_SIGNER_VALUE_DESC', + SignersStddevPopulationStatusAsc = 'SIGNERS_STDDEV_POPULATION_STATUS_ASC', + SignersStddevPopulationStatusDesc = 'SIGNERS_STDDEV_POPULATION_STATUS_DESC', + SignersStddevPopulationUpdatedBlockIdAsc = 'SIGNERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + SignersStddevPopulationUpdatedBlockIdDesc = 'SIGNERS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + SignersStddevSampleBlockRangeAsc = 'SIGNERS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + SignersStddevSampleBlockRangeDesc = 'SIGNERS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + SignersStddevSampleCreatedAtAsc = 'SIGNERS_STDDEV_SAMPLE_CREATED_AT_ASC', + SignersStddevSampleCreatedAtDesc = 'SIGNERS_STDDEV_SAMPLE_CREATED_AT_DESC', + SignersStddevSampleCreatedBlockIdAsc = 'SIGNERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + SignersStddevSampleCreatedBlockIdDesc = 'SIGNERS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + SignersStddevSampleIdAsc = 'SIGNERS_STDDEV_SAMPLE_ID_ASC', + SignersStddevSampleIdDesc = 'SIGNERS_STDDEV_SAMPLE_ID_DESC', + SignersStddevSampleMultisigIdAsc = 'SIGNERS_STDDEV_SAMPLE_MULTISIG_ID_ASC', + SignersStddevSampleMultisigIdDesc = 'SIGNERS_STDDEV_SAMPLE_MULTISIG_ID_DESC', + SignersStddevSampleSignerTypeAsc = 'SIGNERS_STDDEV_SAMPLE_SIGNER_TYPE_ASC', + SignersStddevSampleSignerTypeDesc = 'SIGNERS_STDDEV_SAMPLE_SIGNER_TYPE_DESC', + SignersStddevSampleSignerValueAsc = 'SIGNERS_STDDEV_SAMPLE_SIGNER_VALUE_ASC', + SignersStddevSampleSignerValueDesc = 'SIGNERS_STDDEV_SAMPLE_SIGNER_VALUE_DESC', + SignersStddevSampleStatusAsc = 'SIGNERS_STDDEV_SAMPLE_STATUS_ASC', + SignersStddevSampleStatusDesc = 'SIGNERS_STDDEV_SAMPLE_STATUS_DESC', + SignersStddevSampleUpdatedBlockIdAsc = 'SIGNERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + SignersStddevSampleUpdatedBlockIdDesc = 'SIGNERS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + SignersSumBlockRangeAsc = 'SIGNERS_SUM_BLOCK_RANGE_ASC', + SignersSumBlockRangeDesc = 'SIGNERS_SUM_BLOCK_RANGE_DESC', + SignersSumCreatedAtAsc = 'SIGNERS_SUM_CREATED_AT_ASC', + SignersSumCreatedAtDesc = 'SIGNERS_SUM_CREATED_AT_DESC', + SignersSumCreatedBlockIdAsc = 'SIGNERS_SUM_CREATED_BLOCK_ID_ASC', + SignersSumCreatedBlockIdDesc = 'SIGNERS_SUM_CREATED_BLOCK_ID_DESC', + SignersSumIdAsc = 'SIGNERS_SUM_ID_ASC', + SignersSumIdDesc = 'SIGNERS_SUM_ID_DESC', + SignersSumMultisigIdAsc = 'SIGNERS_SUM_MULTISIG_ID_ASC', + SignersSumMultisigIdDesc = 'SIGNERS_SUM_MULTISIG_ID_DESC', + SignersSumSignerTypeAsc = 'SIGNERS_SUM_SIGNER_TYPE_ASC', + SignersSumSignerTypeDesc = 'SIGNERS_SUM_SIGNER_TYPE_DESC', + SignersSumSignerValueAsc = 'SIGNERS_SUM_SIGNER_VALUE_ASC', + SignersSumSignerValueDesc = 'SIGNERS_SUM_SIGNER_VALUE_DESC', + SignersSumStatusAsc = 'SIGNERS_SUM_STATUS_ASC', + SignersSumStatusDesc = 'SIGNERS_SUM_STATUS_DESC', + SignersSumUpdatedBlockIdAsc = 'SIGNERS_SUM_UPDATED_BLOCK_ID_ASC', + SignersSumUpdatedBlockIdDesc = 'SIGNERS_SUM_UPDATED_BLOCK_ID_DESC', + SignersVariancePopulationBlockRangeAsc = 'SIGNERS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + SignersVariancePopulationBlockRangeDesc = 'SIGNERS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + SignersVariancePopulationCreatedAtAsc = 'SIGNERS_VARIANCE_POPULATION_CREATED_AT_ASC', + SignersVariancePopulationCreatedAtDesc = 'SIGNERS_VARIANCE_POPULATION_CREATED_AT_DESC', + SignersVariancePopulationCreatedBlockIdAsc = 'SIGNERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + SignersVariancePopulationCreatedBlockIdDesc = 'SIGNERS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + SignersVariancePopulationIdAsc = 'SIGNERS_VARIANCE_POPULATION_ID_ASC', + SignersVariancePopulationIdDesc = 'SIGNERS_VARIANCE_POPULATION_ID_DESC', + SignersVariancePopulationMultisigIdAsc = 'SIGNERS_VARIANCE_POPULATION_MULTISIG_ID_ASC', + SignersVariancePopulationMultisigIdDesc = 'SIGNERS_VARIANCE_POPULATION_MULTISIG_ID_DESC', + SignersVariancePopulationSignerTypeAsc = 'SIGNERS_VARIANCE_POPULATION_SIGNER_TYPE_ASC', + SignersVariancePopulationSignerTypeDesc = 'SIGNERS_VARIANCE_POPULATION_SIGNER_TYPE_DESC', + SignersVariancePopulationSignerValueAsc = 'SIGNERS_VARIANCE_POPULATION_SIGNER_VALUE_ASC', + SignersVariancePopulationSignerValueDesc = 'SIGNERS_VARIANCE_POPULATION_SIGNER_VALUE_DESC', + SignersVariancePopulationStatusAsc = 'SIGNERS_VARIANCE_POPULATION_STATUS_ASC', + SignersVariancePopulationStatusDesc = 'SIGNERS_VARIANCE_POPULATION_STATUS_DESC', + SignersVariancePopulationUpdatedBlockIdAsc = 'SIGNERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + SignersVariancePopulationUpdatedBlockIdDesc = 'SIGNERS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + SignersVarianceSampleBlockRangeAsc = 'SIGNERS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + SignersVarianceSampleBlockRangeDesc = 'SIGNERS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + SignersVarianceSampleCreatedAtAsc = 'SIGNERS_VARIANCE_SAMPLE_CREATED_AT_ASC', + SignersVarianceSampleCreatedAtDesc = 'SIGNERS_VARIANCE_SAMPLE_CREATED_AT_DESC', + SignersVarianceSampleCreatedBlockIdAsc = 'SIGNERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + SignersVarianceSampleCreatedBlockIdDesc = 'SIGNERS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + SignersVarianceSampleIdAsc = 'SIGNERS_VARIANCE_SAMPLE_ID_ASC', + SignersVarianceSampleIdDesc = 'SIGNERS_VARIANCE_SAMPLE_ID_DESC', + SignersVarianceSampleMultisigIdAsc = 'SIGNERS_VARIANCE_SAMPLE_MULTISIG_ID_ASC', + SignersVarianceSampleMultisigIdDesc = 'SIGNERS_VARIANCE_SAMPLE_MULTISIG_ID_DESC', + SignersVarianceSampleSignerTypeAsc = 'SIGNERS_VARIANCE_SAMPLE_SIGNER_TYPE_ASC', + SignersVarianceSampleSignerTypeDesc = 'SIGNERS_VARIANCE_SAMPLE_SIGNER_TYPE_DESC', + SignersVarianceSampleSignerValueAsc = 'SIGNERS_VARIANCE_SAMPLE_SIGNER_VALUE_ASC', + SignersVarianceSampleSignerValueDesc = 'SIGNERS_VARIANCE_SAMPLE_SIGNER_VALUE_DESC', + SignersVarianceSampleStatusAsc = 'SIGNERS_VARIANCE_SAMPLE_STATUS_ASC', + SignersVarianceSampleStatusDesc = 'SIGNERS_VARIANCE_SAMPLE_STATUS_DESC', + SignersVarianceSampleUpdatedBlockIdAsc = 'SIGNERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + SignersVarianceSampleUpdatedBlockIdDesc = 'SIGNERS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type NftHolder = Node & { + __typename?: 'NftHolder'; + /** Reads a single `Asset` that is related to this `NftHolder`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `NftHolder`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `NftHolder`. */ + identity?: Maybe; + identityId: Scalars['String']['output']; + nftIds?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Block` that is related to this `NftHolder`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type NftHolderAggregates = { + __typename?: 'NftHolderAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `NftHolder` object types. */ +export type NftHolderAggregatesFilter = { + /** Distinct count aggregate over matching `NftHolder` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `NftHolder` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type NftHolderDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + nftIds?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type NftHolderDistinctCountAggregates = { + __typename?: 'NftHolderDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of nftIds across the matching connection */ + nftIds?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `NftHolder` object types. All fields are combined with a logical ‘and.’ */ +export type NftHolderFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` relation. */ + identity?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Filter by the object’s `nftIds` field. */ + nftIds?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `NftHolder` values. */ +export type NftHoldersConnection = { + __typename?: 'NftHoldersConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `NftHolder` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `NftHolder` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `NftHolder` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `NftHolder` values. */ +export type NftHoldersConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `NftHolder` edge in the connection. */ +export type NftHoldersEdge = { + __typename?: 'NftHoldersEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `NftHolder` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `NftHolder` for usage during aggregation. */ +export enum NftHoldersGroupBy { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + NftIds = 'NFT_IDS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type NftHoldersHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type NftHoldersHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `NftHolder` aggregates. */ +export type NftHoldersHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type NftHoldersHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type NftHoldersHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type NftHoldersHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type NftHoldersHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type NftHoldersHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type NftHoldersHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type NftHoldersHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `NftHolder`. */ +export enum NftHoldersOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + NftIdsAsc = 'NFT_IDS_ASC', + NftIdsDesc = 'NFT_IDS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** An object with a globally unique `ID`. */ +export type Node = { + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; +}; + +export type OffChainReceipt = Node & { + __typename?: 'OffChainReceipt'; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockId: OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockId: OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionEventOffChainReceiptIdAndCreatedBlockId: OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionEventOffChainReceiptIdAndUpdatedBlockId: OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `OffChainReceipt`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmations: InstructionAffirmationsConnection; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEvents: InstructionEventsConnection; + /** Reads and enables pagination through a set of `InstructionParty`. */ + instructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyId: OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByInstructionAffirmationOffChainReceiptIdAndInstructionId: OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByInstructionEventOffChainReceiptIdAndInstructionId: OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyConnection; + /** Reads a single `Leg` that is related to this `OffChainReceipt`. */ + leg?: Maybe; + legId?: Maybe; + metadata?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + signer: Scalars['String']['output']; + uid: Scalars['Int']['output']; + /** Reads a single `Block` that is related to this `OffChainReceipt`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type OffChainReceiptInstructionAffirmationsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type OffChainReceiptInstructionEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type OffChainReceiptAggregates = { + __typename?: 'OffChainReceiptAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `OffChainReceipt` object types. */ +export type OffChainReceiptAggregatesFilter = { + /** Mean average aggregate over matching `OffChainReceipt` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `OffChainReceipt` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `OffChainReceipt` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `OffChainReceipt` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `OffChainReceipt` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `OffChainReceipt` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `OffChainReceipt` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `OffChainReceipt` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `OffChainReceipt` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `OffChainReceipt` objects. */ + varianceSample?: InputMaybe; +}; + +export type OffChainReceiptAverageAggregateFilter = { + uid?: InputMaybe; +}; + +export type OffChainReceiptAverageAggregates = { + __typename?: 'OffChainReceiptAverageAggregates'; + /** Mean average of uid across the matching connection */ + uid?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByCreatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndCreatedBlockIdManyToManyEdgeInstructionAffirmationsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionAffirmation`. */ +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmationsByUpdatedBlockId: InstructionAffirmationsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionAffirmation`. */ +export type OffChainReceiptBlocksByInstructionAffirmationOffChainReceiptIdAndUpdatedBlockIdManyToManyEdgeInstructionAffirmationsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyEdge = + { + __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEventsByCreatedBlockId: InstructionEventsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndCreatedBlockIdManyToManyEdgeInstructionEventsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `InstructionEvent`. */ +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge = + { + __typename?: 'OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEventsByUpdatedBlockId: InstructionEventsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Block` edge in the connection, with data from `InstructionEvent`. */ +export type OffChainReceiptBlocksByInstructionEventOffChainReceiptIdAndUpdatedBlockIdManyToManyEdgeInstructionEventsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type OffChainReceiptDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + legId?: InputMaybe; + metadata?: InputMaybe; + signer?: InputMaybe; + uid?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type OffChainReceiptDistinctCountAggregates = { + __typename?: 'OffChainReceiptDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of legId across the matching connection */ + legId?: Maybe; + /** Distinct count of metadata across the matching connection */ + metadata?: Maybe; + /** Distinct count of signer across the matching connection */ + signer?: Maybe; + /** Distinct count of uid across the matching connection */ + uid?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `OffChainReceipt` object types. All fields are combined with a logical ‘and.’ */ +export type OffChainReceiptFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `instructionAffirmations` relation. */ + instructionAffirmations?: InputMaybe; + /** Some related `instructionAffirmations` exist. */ + instructionAffirmationsExist?: InputMaybe; + /** Filter by the object’s `instructionEvents` relation. */ + instructionEvents?: InputMaybe; + /** Some related `instructionEvents` exist. */ + instructionEventsExist?: InputMaybe; + /** Filter by the object’s `leg` relation. */ + leg?: InputMaybe; + /** A related `leg` exists. */ + legExists?: InputMaybe; + /** Filter by the object’s `legId` field. */ + legId?: InputMaybe; + /** Filter by the object’s `metadata` field. */ + metadata?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `signer` field. */ + signer?: InputMaybe; + /** Filter by the object’s `uid` field. */ + uid?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ +export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyConnection = + { + __typename?: 'OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `InstructionParty`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `InstructionParty` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `InstructionParty` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `InstructionParty` values, with data from `InstructionAffirmation`. */ +export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ +export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyEdge = + { + __typename?: 'OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `InstructionParty` at the end of the edge. */ + node?: Maybe; + }; + +/** A `InstructionParty` edge in the connection, with data from `InstructionAffirmation`. */ +export type OffChainReceiptInstructionPartiesByInstructionAffirmationOffChainReceiptIdAndPartyIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ +export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyConnection = + { + __typename?: 'OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionAffirmation`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionAffirmation`. */ +export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ +export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyEdge = + { + __typename?: 'OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + affirmations: InstructionAffirmationsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionAffirmation`. */ +export type OffChainReceiptInstructionsByInstructionAffirmationOffChainReceiptIdAndInstructionIdManyToManyEdgeAffirmationsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ +export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyConnection = + { + __typename?: 'OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `InstructionEvent`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `InstructionEvent`. */ +export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ +export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyEdge = + { + __typename?: 'OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + events: InstructionEventsConnection; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; + }; + +/** A `Instruction` edge in the connection, with data from `InstructionEvent`. */ +export type OffChainReceiptInstructionsByInstructionEventOffChainReceiptIdAndInstructionIdManyToManyEdgeEventsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type OffChainReceiptMaxAggregateFilter = { + uid?: InputMaybe; +}; + +export type OffChainReceiptMaxAggregates = { + __typename?: 'OffChainReceiptMaxAggregates'; + /** Maximum of uid across the matching connection */ + uid?: Maybe; +}; + +export type OffChainReceiptMinAggregateFilter = { + uid?: InputMaybe; +}; + +export type OffChainReceiptMinAggregates = { + __typename?: 'OffChainReceiptMinAggregates'; + /** Minimum of uid across the matching connection */ + uid?: Maybe; +}; + +export type OffChainReceiptStddevPopulationAggregateFilter = { + uid?: InputMaybe; +}; + +export type OffChainReceiptStddevPopulationAggregates = { + __typename?: 'OffChainReceiptStddevPopulationAggregates'; + /** Population standard deviation of uid across the matching connection */ + uid?: Maybe; +}; + +export type OffChainReceiptStddevSampleAggregateFilter = { + uid?: InputMaybe; +}; + +export type OffChainReceiptStddevSampleAggregates = { + __typename?: 'OffChainReceiptStddevSampleAggregates'; + /** Sample standard deviation of uid across the matching connection */ + uid?: Maybe; +}; + +export type OffChainReceiptSumAggregateFilter = { + uid?: InputMaybe; +}; + +export type OffChainReceiptSumAggregates = { + __typename?: 'OffChainReceiptSumAggregates'; + /** Sum of uid across the matching connection */ + uid: Scalars['BigInt']['output']; +}; + +/** A filter to be used against many `InstructionAffirmation` object types. All fields are combined with a logical ‘and.’ */ +export type OffChainReceiptToManyInstructionAffirmationFilter = { + /** Aggregates across related `InstructionAffirmation` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `InstructionAffirmation` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `InstructionEvent` object types. All fields are combined with a logical ‘and.’ */ +export type OffChainReceiptToManyInstructionEventFilter = { + /** Aggregates across related `InstructionEvent` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `InstructionEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `InstructionEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `InstructionEvent` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type OffChainReceiptVariancePopulationAggregateFilter = { + uid?: InputMaybe; +}; + +export type OffChainReceiptVariancePopulationAggregates = { + __typename?: 'OffChainReceiptVariancePopulationAggregates'; + /** Population variance of uid across the matching connection */ + uid?: Maybe; +}; + +export type OffChainReceiptVarianceSampleAggregateFilter = { + uid?: InputMaybe; +}; + +export type OffChainReceiptVarianceSampleAggregates = { + __typename?: 'OffChainReceiptVarianceSampleAggregates'; + /** Sample variance of uid across the matching connection */ + uid?: Maybe; +}; + +/** A connection to a list of `OffChainReceipt` values. */ +export type OffChainReceiptsConnection = { + __typename?: 'OffChainReceiptsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `OffChainReceipt` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `OffChainReceipt` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `OffChainReceipt` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `OffChainReceipt` values. */ +export type OffChainReceiptsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `OffChainReceipt` edge in the connection. */ +export type OffChainReceiptsEdge = { + __typename?: 'OffChainReceiptsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `OffChainReceipt` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `OffChainReceipt` for usage during aggregation. */ +export enum OffChainReceiptsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + LegId = 'LEG_ID', + Metadata = 'METADATA', + Signer = 'SIGNER', + Uid = 'UID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type OffChainReceiptsHavingAverageInput = { + createdAt?: InputMaybe; + uid?: InputMaybe; +}; + +export type OffChainReceiptsHavingDistinctCountInput = { + createdAt?: InputMaybe; + uid?: InputMaybe; +}; + +/** Conditions for `OffChainReceipt` aggregates. */ +export type OffChainReceiptsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type OffChainReceiptsHavingMaxInput = { + createdAt?: InputMaybe; + uid?: InputMaybe; +}; + +export type OffChainReceiptsHavingMinInput = { + createdAt?: InputMaybe; + uid?: InputMaybe; +}; + +export type OffChainReceiptsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + uid?: InputMaybe; +}; + +export type OffChainReceiptsHavingStddevSampleInput = { + createdAt?: InputMaybe; + uid?: InputMaybe; +}; + +export type OffChainReceiptsHavingSumInput = { + createdAt?: InputMaybe; + uid?: InputMaybe; +}; + +export type OffChainReceiptsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + uid?: InputMaybe; +}; + +export type OffChainReceiptsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + uid?: InputMaybe; +}; + +/** Methods to use when ordering `OffChainReceipt`. */ +export enum OffChainReceiptsOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + InstructionAffirmationsAverageBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_BLOCK_RANGE_ASC', + InstructionAffirmationsAverageBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_BLOCK_RANGE_DESC', + InstructionAffirmationsAverageCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_CREATED_AT_ASC', + InstructionAffirmationsAverageCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_CREATED_AT_DESC', + InstructionAffirmationsAverageCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsAverageCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsAverageExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_EXPIRY_ASC', + InstructionAffirmationsAverageExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_EXPIRY_DESC', + InstructionAffirmationsAverageIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_IDENTITY_ASC', + InstructionAffirmationsAverageIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_IDENTITY_DESC', + InstructionAffirmationsAverageIdAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_ID_ASC', + InstructionAffirmationsAverageIdDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_ID_DESC', + InstructionAffirmationsAverageInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_INSTRUCTION_ID_ASC', + InstructionAffirmationsAverageInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_INSTRUCTION_ID_DESC', + InstructionAffirmationsAverageIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsAverageIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsAverageIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_IS_MEDIATOR_ASC', + InstructionAffirmationsAverageIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_IS_MEDIATOR_DESC', + InstructionAffirmationsAverageOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsAverageOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsAveragePartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_PARTY_ID_ASC', + InstructionAffirmationsAveragePartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_PARTY_ID_DESC', + InstructionAffirmationsAveragePortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_PORTFOLIOS_ASC', + InstructionAffirmationsAveragePortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_PORTFOLIOS_DESC', + InstructionAffirmationsAverageStatusAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_STATUS_ASC', + InstructionAffirmationsAverageStatusDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_STATUS_DESC', + InstructionAffirmationsAverageUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsAverageUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsCountAsc = 'INSTRUCTION_AFFIRMATIONS_COUNT_ASC', + InstructionAffirmationsCountDesc = 'INSTRUCTION_AFFIRMATIONS_COUNT_DESC', + InstructionAffirmationsDistinctCountBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InstructionAffirmationsDistinctCountBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InstructionAffirmationsDistinctCountCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_CREATED_AT_ASC', + InstructionAffirmationsDistinctCountCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_CREATED_AT_DESC', + InstructionAffirmationsDistinctCountCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsDistinctCountCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsDistinctCountExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_EXPIRY_ASC', + InstructionAffirmationsDistinctCountExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_EXPIRY_DESC', + InstructionAffirmationsDistinctCountIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_IDENTITY_ASC', + InstructionAffirmationsDistinctCountIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_IDENTITY_DESC', + InstructionAffirmationsDistinctCountIdAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_ID_ASC', + InstructionAffirmationsDistinctCountIdDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_ID_DESC', + InstructionAffirmationsDistinctCountInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + InstructionAffirmationsDistinctCountInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + InstructionAffirmationsDistinctCountIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsDistinctCountIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsDistinctCountIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_IS_MEDIATOR_ASC', + InstructionAffirmationsDistinctCountIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_IS_MEDIATOR_DESC', + InstructionAffirmationsDistinctCountOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsDistinctCountOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsDistinctCountPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_PARTY_ID_ASC', + InstructionAffirmationsDistinctCountPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_PARTY_ID_DESC', + InstructionAffirmationsDistinctCountPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_PORTFOLIOS_ASC', + InstructionAffirmationsDistinctCountPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_PORTFOLIOS_DESC', + InstructionAffirmationsDistinctCountStatusAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_STATUS_ASC', + InstructionAffirmationsDistinctCountStatusDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_STATUS_DESC', + InstructionAffirmationsDistinctCountUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsDistinctCountUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsMaxBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_BLOCK_RANGE_ASC', + InstructionAffirmationsMaxBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_BLOCK_RANGE_DESC', + InstructionAffirmationsMaxCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_CREATED_AT_ASC', + InstructionAffirmationsMaxCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_CREATED_AT_DESC', + InstructionAffirmationsMaxCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsMaxCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsMaxExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_EXPIRY_ASC', + InstructionAffirmationsMaxExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_EXPIRY_DESC', + InstructionAffirmationsMaxIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_IDENTITY_ASC', + InstructionAffirmationsMaxIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_IDENTITY_DESC', + InstructionAffirmationsMaxIdAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_ID_ASC', + InstructionAffirmationsMaxIdDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_ID_DESC', + InstructionAffirmationsMaxInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_INSTRUCTION_ID_ASC', + InstructionAffirmationsMaxInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_INSTRUCTION_ID_DESC', + InstructionAffirmationsMaxIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsMaxIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsMaxIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_IS_MEDIATOR_ASC', + InstructionAffirmationsMaxIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_IS_MEDIATOR_DESC', + InstructionAffirmationsMaxOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsMaxOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsMaxPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_PARTY_ID_ASC', + InstructionAffirmationsMaxPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_PARTY_ID_DESC', + InstructionAffirmationsMaxPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_PORTFOLIOS_ASC', + InstructionAffirmationsMaxPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_PORTFOLIOS_DESC', + InstructionAffirmationsMaxStatusAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_STATUS_ASC', + InstructionAffirmationsMaxStatusDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_STATUS_DESC', + InstructionAffirmationsMaxUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_MAX_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsMaxUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_MAX_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsMinBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_BLOCK_RANGE_ASC', + InstructionAffirmationsMinBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_BLOCK_RANGE_DESC', + InstructionAffirmationsMinCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_CREATED_AT_ASC', + InstructionAffirmationsMinCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_CREATED_AT_DESC', + InstructionAffirmationsMinCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsMinCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsMinExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_EXPIRY_ASC', + InstructionAffirmationsMinExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_EXPIRY_DESC', + InstructionAffirmationsMinIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_IDENTITY_ASC', + InstructionAffirmationsMinIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_IDENTITY_DESC', + InstructionAffirmationsMinIdAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_ID_ASC', + InstructionAffirmationsMinIdDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_ID_DESC', + InstructionAffirmationsMinInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_INSTRUCTION_ID_ASC', + InstructionAffirmationsMinInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_INSTRUCTION_ID_DESC', + InstructionAffirmationsMinIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsMinIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsMinIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_IS_MEDIATOR_ASC', + InstructionAffirmationsMinIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_IS_MEDIATOR_DESC', + InstructionAffirmationsMinOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsMinOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsMinPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_PARTY_ID_ASC', + InstructionAffirmationsMinPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_PARTY_ID_DESC', + InstructionAffirmationsMinPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_PORTFOLIOS_ASC', + InstructionAffirmationsMinPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_PORTFOLIOS_DESC', + InstructionAffirmationsMinStatusAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_STATUS_ASC', + InstructionAffirmationsMinStatusDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_STATUS_DESC', + InstructionAffirmationsMinUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_MIN_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsMinUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_MIN_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsStddevPopulationBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InstructionAffirmationsStddevPopulationBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InstructionAffirmationsStddevPopulationCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_CREATED_AT_ASC', + InstructionAffirmationsStddevPopulationCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_CREATED_AT_DESC', + InstructionAffirmationsStddevPopulationCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsStddevPopulationCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsStddevPopulationExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_EXPIRY_ASC', + InstructionAffirmationsStddevPopulationExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_EXPIRY_DESC', + InstructionAffirmationsStddevPopulationIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_IDENTITY_ASC', + InstructionAffirmationsStddevPopulationIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_IDENTITY_DESC', + InstructionAffirmationsStddevPopulationIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_ID_ASC', + InstructionAffirmationsStddevPopulationIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_ID_DESC', + InstructionAffirmationsStddevPopulationInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + InstructionAffirmationsStddevPopulationInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + InstructionAffirmationsStddevPopulationIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsStddevPopulationIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsStddevPopulationIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_IS_MEDIATOR_ASC', + InstructionAffirmationsStddevPopulationIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_IS_MEDIATOR_DESC', + InstructionAffirmationsStddevPopulationOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsStddevPopulationOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsStddevPopulationPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_PARTY_ID_ASC', + InstructionAffirmationsStddevPopulationPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_PARTY_ID_DESC', + InstructionAffirmationsStddevPopulationPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_PORTFOLIOS_ASC', + InstructionAffirmationsStddevPopulationPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_PORTFOLIOS_DESC', + InstructionAffirmationsStddevPopulationStatusAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_STATUS_ASC', + InstructionAffirmationsStddevPopulationStatusDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_STATUS_DESC', + InstructionAffirmationsStddevPopulationUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsStddevPopulationUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsStddevSampleBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InstructionAffirmationsStddevSampleBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InstructionAffirmationsStddevSampleCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + InstructionAffirmationsStddevSampleCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + InstructionAffirmationsStddevSampleCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsStddevSampleCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsStddevSampleExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_EXPIRY_ASC', + InstructionAffirmationsStddevSampleExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_EXPIRY_DESC', + InstructionAffirmationsStddevSampleIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_IDENTITY_ASC', + InstructionAffirmationsStddevSampleIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_IDENTITY_DESC', + InstructionAffirmationsStddevSampleIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_ID_ASC', + InstructionAffirmationsStddevSampleIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_ID_DESC', + InstructionAffirmationsStddevSampleInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + InstructionAffirmationsStddevSampleInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + InstructionAffirmationsStddevSampleIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsStddevSampleIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsStddevSampleIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_IS_MEDIATOR_ASC', + InstructionAffirmationsStddevSampleIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_IS_MEDIATOR_DESC', + InstructionAffirmationsStddevSampleOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsStddevSampleOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsStddevSamplePartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_PARTY_ID_ASC', + InstructionAffirmationsStddevSamplePartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_PARTY_ID_DESC', + InstructionAffirmationsStddevSamplePortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_PORTFOLIOS_ASC', + InstructionAffirmationsStddevSamplePortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_PORTFOLIOS_DESC', + InstructionAffirmationsStddevSampleStatusAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_STATUS_ASC', + InstructionAffirmationsStddevSampleStatusDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_STATUS_DESC', + InstructionAffirmationsStddevSampleUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsStddevSampleUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsSumBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_BLOCK_RANGE_ASC', + InstructionAffirmationsSumBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_BLOCK_RANGE_DESC', + InstructionAffirmationsSumCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_CREATED_AT_ASC', + InstructionAffirmationsSumCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_CREATED_AT_DESC', + InstructionAffirmationsSumCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsSumCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsSumExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_EXPIRY_ASC', + InstructionAffirmationsSumExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_EXPIRY_DESC', + InstructionAffirmationsSumIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_IDENTITY_ASC', + InstructionAffirmationsSumIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_IDENTITY_DESC', + InstructionAffirmationsSumIdAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_ID_ASC', + InstructionAffirmationsSumIdDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_ID_DESC', + InstructionAffirmationsSumInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_INSTRUCTION_ID_ASC', + InstructionAffirmationsSumInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_INSTRUCTION_ID_DESC', + InstructionAffirmationsSumIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsSumIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsSumIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_IS_MEDIATOR_ASC', + InstructionAffirmationsSumIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_IS_MEDIATOR_DESC', + InstructionAffirmationsSumOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsSumOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsSumPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_PARTY_ID_ASC', + InstructionAffirmationsSumPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_PARTY_ID_DESC', + InstructionAffirmationsSumPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_PORTFOLIOS_ASC', + InstructionAffirmationsSumPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_PORTFOLIOS_DESC', + InstructionAffirmationsSumStatusAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_STATUS_ASC', + InstructionAffirmationsSumStatusDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_STATUS_DESC', + InstructionAffirmationsSumUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_SUM_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsSumUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_SUM_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsVariancePopulationBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InstructionAffirmationsVariancePopulationBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InstructionAffirmationsVariancePopulationCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + InstructionAffirmationsVariancePopulationCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + InstructionAffirmationsVariancePopulationCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsVariancePopulationCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsVariancePopulationExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_EXPIRY_ASC', + InstructionAffirmationsVariancePopulationExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_EXPIRY_DESC', + InstructionAffirmationsVariancePopulationIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_IDENTITY_ASC', + InstructionAffirmationsVariancePopulationIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_IDENTITY_DESC', + InstructionAffirmationsVariancePopulationIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_ID_ASC', + InstructionAffirmationsVariancePopulationIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_ID_DESC', + InstructionAffirmationsVariancePopulationInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + InstructionAffirmationsVariancePopulationInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + InstructionAffirmationsVariancePopulationIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsVariancePopulationIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsVariancePopulationIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_IS_MEDIATOR_ASC', + InstructionAffirmationsVariancePopulationIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_IS_MEDIATOR_DESC', + InstructionAffirmationsVariancePopulationOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsVariancePopulationOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsVariancePopulationPartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_PARTY_ID_ASC', + InstructionAffirmationsVariancePopulationPartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_PARTY_ID_DESC', + InstructionAffirmationsVariancePopulationPortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_PORTFOLIOS_ASC', + InstructionAffirmationsVariancePopulationPortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_PORTFOLIOS_DESC', + InstructionAffirmationsVariancePopulationStatusAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_STATUS_ASC', + InstructionAffirmationsVariancePopulationStatusDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_STATUS_DESC', + InstructionAffirmationsVariancePopulationUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsVariancePopulationUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionAffirmationsVarianceSampleBlockRangeAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InstructionAffirmationsVarianceSampleBlockRangeDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InstructionAffirmationsVarianceSampleCreatedAtAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + InstructionAffirmationsVarianceSampleCreatedAtDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + InstructionAffirmationsVarianceSampleCreatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionAffirmationsVarianceSampleCreatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionAffirmationsVarianceSampleExpiryAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_EXPIRY_ASC', + InstructionAffirmationsVarianceSampleExpiryDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_EXPIRY_DESC', + InstructionAffirmationsVarianceSampleIdentityAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_IDENTITY_ASC', + InstructionAffirmationsVarianceSampleIdentityDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_IDENTITY_DESC', + InstructionAffirmationsVarianceSampleIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_ID_ASC', + InstructionAffirmationsVarianceSampleIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_ID_DESC', + InstructionAffirmationsVarianceSampleInstructionIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + InstructionAffirmationsVarianceSampleInstructionIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + InstructionAffirmationsVarianceSampleIsAutomaticallyAffirmedAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_ASC', + InstructionAffirmationsVarianceSampleIsAutomaticallyAffirmedDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_IS_AUTOMATICALLY_AFFIRMED_DESC', + InstructionAffirmationsVarianceSampleIsMediatorAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_IS_MEDIATOR_ASC', + InstructionAffirmationsVarianceSampleIsMediatorDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_IS_MEDIATOR_DESC', + InstructionAffirmationsVarianceSampleOffChainReceiptIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionAffirmationsVarianceSampleOffChainReceiptIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionAffirmationsVarianceSamplePartyIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_PARTY_ID_ASC', + InstructionAffirmationsVarianceSamplePartyIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_PARTY_ID_DESC', + InstructionAffirmationsVarianceSamplePortfoliosAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_PORTFOLIOS_ASC', + InstructionAffirmationsVarianceSamplePortfoliosDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_PORTFOLIOS_DESC', + InstructionAffirmationsVarianceSampleStatusAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_STATUS_ASC', + InstructionAffirmationsVarianceSampleStatusDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_STATUS_DESC', + InstructionAffirmationsVarianceSampleUpdatedBlockIdAsc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionAffirmationsVarianceSampleUpdatedBlockIdDesc = 'INSTRUCTION_AFFIRMATIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionEventsAverageBlockRangeAsc = 'INSTRUCTION_EVENTS_AVERAGE_BLOCK_RANGE_ASC', + InstructionEventsAverageBlockRangeDesc = 'INSTRUCTION_EVENTS_AVERAGE_BLOCK_RANGE_DESC', + InstructionEventsAverageCreatedAtAsc = 'INSTRUCTION_EVENTS_AVERAGE_CREATED_AT_ASC', + InstructionEventsAverageCreatedAtDesc = 'INSTRUCTION_EVENTS_AVERAGE_CREATED_AT_DESC', + InstructionEventsAverageCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_AVERAGE_CREATED_BLOCK_ID_ASC', + InstructionEventsAverageCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_AVERAGE_CREATED_BLOCK_ID_DESC', + InstructionEventsAverageEventAsc = 'INSTRUCTION_EVENTS_AVERAGE_EVENT_ASC', + InstructionEventsAverageEventDesc = 'INSTRUCTION_EVENTS_AVERAGE_EVENT_DESC', + InstructionEventsAverageEventIdxAsc = 'INSTRUCTION_EVENTS_AVERAGE_EVENT_IDX_ASC', + InstructionEventsAverageEventIdxDesc = 'INSTRUCTION_EVENTS_AVERAGE_EVENT_IDX_DESC', + InstructionEventsAverageFailureReasonAsc = 'INSTRUCTION_EVENTS_AVERAGE_FAILURE_REASON_ASC', + InstructionEventsAverageFailureReasonDesc = 'INSTRUCTION_EVENTS_AVERAGE_FAILURE_REASON_DESC', + InstructionEventsAverageIdentityAsc = 'INSTRUCTION_EVENTS_AVERAGE_IDENTITY_ASC', + InstructionEventsAverageIdentityDesc = 'INSTRUCTION_EVENTS_AVERAGE_IDENTITY_DESC', + InstructionEventsAverageIdAsc = 'INSTRUCTION_EVENTS_AVERAGE_ID_ASC', + InstructionEventsAverageIdDesc = 'INSTRUCTION_EVENTS_AVERAGE_ID_DESC', + InstructionEventsAverageInstructionIdAsc = 'INSTRUCTION_EVENTS_AVERAGE_INSTRUCTION_ID_ASC', + InstructionEventsAverageInstructionIdDesc = 'INSTRUCTION_EVENTS_AVERAGE_INSTRUCTION_ID_DESC', + InstructionEventsAverageOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_AVERAGE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsAverageOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_AVERAGE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsAveragePortfolioAsc = 'INSTRUCTION_EVENTS_AVERAGE_PORTFOLIO_ASC', + InstructionEventsAveragePortfolioDesc = 'INSTRUCTION_EVENTS_AVERAGE_PORTFOLIO_DESC', + InstructionEventsAverageUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_AVERAGE_UPDATED_BLOCK_ID_ASC', + InstructionEventsAverageUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_AVERAGE_UPDATED_BLOCK_ID_DESC', + InstructionEventsCountAsc = 'INSTRUCTION_EVENTS_COUNT_ASC', + InstructionEventsCountDesc = 'INSTRUCTION_EVENTS_COUNT_DESC', + InstructionEventsDistinctCountBlockRangeAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InstructionEventsDistinctCountBlockRangeDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InstructionEventsDistinctCountCreatedAtAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_CREATED_AT_ASC', + InstructionEventsDistinctCountCreatedAtDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_CREATED_AT_DESC', + InstructionEventsDistinctCountCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InstructionEventsDistinctCountCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InstructionEventsDistinctCountEventAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_EVENT_ASC', + InstructionEventsDistinctCountEventDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_EVENT_DESC', + InstructionEventsDistinctCountEventIdxAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_EVENT_IDX_ASC', + InstructionEventsDistinctCountEventIdxDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_EVENT_IDX_DESC', + InstructionEventsDistinctCountFailureReasonAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_FAILURE_REASON_ASC', + InstructionEventsDistinctCountFailureReasonDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_FAILURE_REASON_DESC', + InstructionEventsDistinctCountIdentityAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_IDENTITY_ASC', + InstructionEventsDistinctCountIdentityDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_IDENTITY_DESC', + InstructionEventsDistinctCountIdAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_ID_ASC', + InstructionEventsDistinctCountIdDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_ID_DESC', + InstructionEventsDistinctCountInstructionIdAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + InstructionEventsDistinctCountInstructionIdDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + InstructionEventsDistinctCountOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsDistinctCountOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsDistinctCountPortfolioAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_PORTFOLIO_ASC', + InstructionEventsDistinctCountPortfolioDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_PORTFOLIO_DESC', + InstructionEventsDistinctCountUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InstructionEventsDistinctCountUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InstructionEventsMaxBlockRangeAsc = 'INSTRUCTION_EVENTS_MAX_BLOCK_RANGE_ASC', + InstructionEventsMaxBlockRangeDesc = 'INSTRUCTION_EVENTS_MAX_BLOCK_RANGE_DESC', + InstructionEventsMaxCreatedAtAsc = 'INSTRUCTION_EVENTS_MAX_CREATED_AT_ASC', + InstructionEventsMaxCreatedAtDesc = 'INSTRUCTION_EVENTS_MAX_CREATED_AT_DESC', + InstructionEventsMaxCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_MAX_CREATED_BLOCK_ID_ASC', + InstructionEventsMaxCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_MAX_CREATED_BLOCK_ID_DESC', + InstructionEventsMaxEventAsc = 'INSTRUCTION_EVENTS_MAX_EVENT_ASC', + InstructionEventsMaxEventDesc = 'INSTRUCTION_EVENTS_MAX_EVENT_DESC', + InstructionEventsMaxEventIdxAsc = 'INSTRUCTION_EVENTS_MAX_EVENT_IDX_ASC', + InstructionEventsMaxEventIdxDesc = 'INSTRUCTION_EVENTS_MAX_EVENT_IDX_DESC', + InstructionEventsMaxFailureReasonAsc = 'INSTRUCTION_EVENTS_MAX_FAILURE_REASON_ASC', + InstructionEventsMaxFailureReasonDesc = 'INSTRUCTION_EVENTS_MAX_FAILURE_REASON_DESC', + InstructionEventsMaxIdentityAsc = 'INSTRUCTION_EVENTS_MAX_IDENTITY_ASC', + InstructionEventsMaxIdentityDesc = 'INSTRUCTION_EVENTS_MAX_IDENTITY_DESC', + InstructionEventsMaxIdAsc = 'INSTRUCTION_EVENTS_MAX_ID_ASC', + InstructionEventsMaxIdDesc = 'INSTRUCTION_EVENTS_MAX_ID_DESC', + InstructionEventsMaxInstructionIdAsc = 'INSTRUCTION_EVENTS_MAX_INSTRUCTION_ID_ASC', + InstructionEventsMaxInstructionIdDesc = 'INSTRUCTION_EVENTS_MAX_INSTRUCTION_ID_DESC', + InstructionEventsMaxOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_MAX_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsMaxOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_MAX_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsMaxPortfolioAsc = 'INSTRUCTION_EVENTS_MAX_PORTFOLIO_ASC', + InstructionEventsMaxPortfolioDesc = 'INSTRUCTION_EVENTS_MAX_PORTFOLIO_DESC', + InstructionEventsMaxUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_MAX_UPDATED_BLOCK_ID_ASC', + InstructionEventsMaxUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_MAX_UPDATED_BLOCK_ID_DESC', + InstructionEventsMinBlockRangeAsc = 'INSTRUCTION_EVENTS_MIN_BLOCK_RANGE_ASC', + InstructionEventsMinBlockRangeDesc = 'INSTRUCTION_EVENTS_MIN_BLOCK_RANGE_DESC', + InstructionEventsMinCreatedAtAsc = 'INSTRUCTION_EVENTS_MIN_CREATED_AT_ASC', + InstructionEventsMinCreatedAtDesc = 'INSTRUCTION_EVENTS_MIN_CREATED_AT_DESC', + InstructionEventsMinCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_MIN_CREATED_BLOCK_ID_ASC', + InstructionEventsMinCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_MIN_CREATED_BLOCK_ID_DESC', + InstructionEventsMinEventAsc = 'INSTRUCTION_EVENTS_MIN_EVENT_ASC', + InstructionEventsMinEventDesc = 'INSTRUCTION_EVENTS_MIN_EVENT_DESC', + InstructionEventsMinEventIdxAsc = 'INSTRUCTION_EVENTS_MIN_EVENT_IDX_ASC', + InstructionEventsMinEventIdxDesc = 'INSTRUCTION_EVENTS_MIN_EVENT_IDX_DESC', + InstructionEventsMinFailureReasonAsc = 'INSTRUCTION_EVENTS_MIN_FAILURE_REASON_ASC', + InstructionEventsMinFailureReasonDesc = 'INSTRUCTION_EVENTS_MIN_FAILURE_REASON_DESC', + InstructionEventsMinIdentityAsc = 'INSTRUCTION_EVENTS_MIN_IDENTITY_ASC', + InstructionEventsMinIdentityDesc = 'INSTRUCTION_EVENTS_MIN_IDENTITY_DESC', + InstructionEventsMinIdAsc = 'INSTRUCTION_EVENTS_MIN_ID_ASC', + InstructionEventsMinIdDesc = 'INSTRUCTION_EVENTS_MIN_ID_DESC', + InstructionEventsMinInstructionIdAsc = 'INSTRUCTION_EVENTS_MIN_INSTRUCTION_ID_ASC', + InstructionEventsMinInstructionIdDesc = 'INSTRUCTION_EVENTS_MIN_INSTRUCTION_ID_DESC', + InstructionEventsMinOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_MIN_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsMinOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_MIN_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsMinPortfolioAsc = 'INSTRUCTION_EVENTS_MIN_PORTFOLIO_ASC', + InstructionEventsMinPortfolioDesc = 'INSTRUCTION_EVENTS_MIN_PORTFOLIO_DESC', + InstructionEventsMinUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_MIN_UPDATED_BLOCK_ID_ASC', + InstructionEventsMinUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_MIN_UPDATED_BLOCK_ID_DESC', + InstructionEventsStddevPopulationBlockRangeAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InstructionEventsStddevPopulationBlockRangeDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InstructionEventsStddevPopulationCreatedAtAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_CREATED_AT_ASC', + InstructionEventsStddevPopulationCreatedAtDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_CREATED_AT_DESC', + InstructionEventsStddevPopulationCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionEventsStddevPopulationCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionEventsStddevPopulationEventAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_EVENT_ASC', + InstructionEventsStddevPopulationEventDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_EVENT_DESC', + InstructionEventsStddevPopulationEventIdxAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_EVENT_IDX_ASC', + InstructionEventsStddevPopulationEventIdxDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_EVENT_IDX_DESC', + InstructionEventsStddevPopulationFailureReasonAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_FAILURE_REASON_ASC', + InstructionEventsStddevPopulationFailureReasonDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_FAILURE_REASON_DESC', + InstructionEventsStddevPopulationIdentityAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_IDENTITY_ASC', + InstructionEventsStddevPopulationIdentityDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_IDENTITY_DESC', + InstructionEventsStddevPopulationIdAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_ID_ASC', + InstructionEventsStddevPopulationIdDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_ID_DESC', + InstructionEventsStddevPopulationInstructionIdAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + InstructionEventsStddevPopulationInstructionIdDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + InstructionEventsStddevPopulationOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsStddevPopulationOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsStddevPopulationPortfolioAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_PORTFOLIO_ASC', + InstructionEventsStddevPopulationPortfolioDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_PORTFOLIO_DESC', + InstructionEventsStddevPopulationUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionEventsStddevPopulationUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionEventsStddevSampleBlockRangeAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InstructionEventsStddevSampleBlockRangeDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InstructionEventsStddevSampleCreatedAtAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_CREATED_AT_ASC', + InstructionEventsStddevSampleCreatedAtDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_CREATED_AT_DESC', + InstructionEventsStddevSampleCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionEventsStddevSampleCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionEventsStddevSampleEventAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_EVENT_ASC', + InstructionEventsStddevSampleEventDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_EVENT_DESC', + InstructionEventsStddevSampleEventIdxAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_EVENT_IDX_ASC', + InstructionEventsStddevSampleEventIdxDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_EVENT_IDX_DESC', + InstructionEventsStddevSampleFailureReasonAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_FAILURE_REASON_ASC', + InstructionEventsStddevSampleFailureReasonDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_FAILURE_REASON_DESC', + InstructionEventsStddevSampleIdentityAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_IDENTITY_ASC', + InstructionEventsStddevSampleIdentityDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_IDENTITY_DESC', + InstructionEventsStddevSampleIdAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_ID_ASC', + InstructionEventsStddevSampleIdDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_ID_DESC', + InstructionEventsStddevSampleInstructionIdAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + InstructionEventsStddevSampleInstructionIdDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + InstructionEventsStddevSampleOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsStddevSampleOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsStddevSamplePortfolioAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_PORTFOLIO_ASC', + InstructionEventsStddevSamplePortfolioDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_PORTFOLIO_DESC', + InstructionEventsStddevSampleUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionEventsStddevSampleUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionEventsSumBlockRangeAsc = 'INSTRUCTION_EVENTS_SUM_BLOCK_RANGE_ASC', + InstructionEventsSumBlockRangeDesc = 'INSTRUCTION_EVENTS_SUM_BLOCK_RANGE_DESC', + InstructionEventsSumCreatedAtAsc = 'INSTRUCTION_EVENTS_SUM_CREATED_AT_ASC', + InstructionEventsSumCreatedAtDesc = 'INSTRUCTION_EVENTS_SUM_CREATED_AT_DESC', + InstructionEventsSumCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_SUM_CREATED_BLOCK_ID_ASC', + InstructionEventsSumCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_SUM_CREATED_BLOCK_ID_DESC', + InstructionEventsSumEventAsc = 'INSTRUCTION_EVENTS_SUM_EVENT_ASC', + InstructionEventsSumEventDesc = 'INSTRUCTION_EVENTS_SUM_EVENT_DESC', + InstructionEventsSumEventIdxAsc = 'INSTRUCTION_EVENTS_SUM_EVENT_IDX_ASC', + InstructionEventsSumEventIdxDesc = 'INSTRUCTION_EVENTS_SUM_EVENT_IDX_DESC', + InstructionEventsSumFailureReasonAsc = 'INSTRUCTION_EVENTS_SUM_FAILURE_REASON_ASC', + InstructionEventsSumFailureReasonDesc = 'INSTRUCTION_EVENTS_SUM_FAILURE_REASON_DESC', + InstructionEventsSumIdentityAsc = 'INSTRUCTION_EVENTS_SUM_IDENTITY_ASC', + InstructionEventsSumIdentityDesc = 'INSTRUCTION_EVENTS_SUM_IDENTITY_DESC', + InstructionEventsSumIdAsc = 'INSTRUCTION_EVENTS_SUM_ID_ASC', + InstructionEventsSumIdDesc = 'INSTRUCTION_EVENTS_SUM_ID_DESC', + InstructionEventsSumInstructionIdAsc = 'INSTRUCTION_EVENTS_SUM_INSTRUCTION_ID_ASC', + InstructionEventsSumInstructionIdDesc = 'INSTRUCTION_EVENTS_SUM_INSTRUCTION_ID_DESC', + InstructionEventsSumOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_SUM_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsSumOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_SUM_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsSumPortfolioAsc = 'INSTRUCTION_EVENTS_SUM_PORTFOLIO_ASC', + InstructionEventsSumPortfolioDesc = 'INSTRUCTION_EVENTS_SUM_PORTFOLIO_DESC', + InstructionEventsSumUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_SUM_UPDATED_BLOCK_ID_ASC', + InstructionEventsSumUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_SUM_UPDATED_BLOCK_ID_DESC', + InstructionEventsVariancePopulationBlockRangeAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InstructionEventsVariancePopulationBlockRangeDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InstructionEventsVariancePopulationCreatedAtAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_CREATED_AT_ASC', + InstructionEventsVariancePopulationCreatedAtDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_CREATED_AT_DESC', + InstructionEventsVariancePopulationCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionEventsVariancePopulationCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionEventsVariancePopulationEventAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_EVENT_ASC', + InstructionEventsVariancePopulationEventDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_EVENT_DESC', + InstructionEventsVariancePopulationEventIdxAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_EVENT_IDX_ASC', + InstructionEventsVariancePopulationEventIdxDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_EVENT_IDX_DESC', + InstructionEventsVariancePopulationFailureReasonAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_FAILURE_REASON_ASC', + InstructionEventsVariancePopulationFailureReasonDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_FAILURE_REASON_DESC', + InstructionEventsVariancePopulationIdentityAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_IDENTITY_ASC', + InstructionEventsVariancePopulationIdentityDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_IDENTITY_DESC', + InstructionEventsVariancePopulationIdAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_ID_ASC', + InstructionEventsVariancePopulationIdDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_ID_DESC', + InstructionEventsVariancePopulationInstructionIdAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + InstructionEventsVariancePopulationInstructionIdDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + InstructionEventsVariancePopulationOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsVariancePopulationOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsVariancePopulationPortfolioAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_PORTFOLIO_ASC', + InstructionEventsVariancePopulationPortfolioDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_PORTFOLIO_DESC', + InstructionEventsVariancePopulationUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionEventsVariancePopulationUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionEventsVarianceSampleBlockRangeAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InstructionEventsVarianceSampleBlockRangeDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InstructionEventsVarianceSampleCreatedAtAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_CREATED_AT_ASC', + InstructionEventsVarianceSampleCreatedAtDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_CREATED_AT_DESC', + InstructionEventsVarianceSampleCreatedBlockIdAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionEventsVarianceSampleCreatedBlockIdDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionEventsVarianceSampleEventAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_EVENT_ASC', + InstructionEventsVarianceSampleEventDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_EVENT_DESC', + InstructionEventsVarianceSampleEventIdxAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_EVENT_IDX_ASC', + InstructionEventsVarianceSampleEventIdxDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_EVENT_IDX_DESC', + InstructionEventsVarianceSampleFailureReasonAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_FAILURE_REASON_ASC', + InstructionEventsVarianceSampleFailureReasonDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_FAILURE_REASON_DESC', + InstructionEventsVarianceSampleIdentityAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_IDENTITY_ASC', + InstructionEventsVarianceSampleIdentityDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_IDENTITY_DESC', + InstructionEventsVarianceSampleIdAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_ID_ASC', + InstructionEventsVarianceSampleIdDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_ID_DESC', + InstructionEventsVarianceSampleInstructionIdAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + InstructionEventsVarianceSampleInstructionIdDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + InstructionEventsVarianceSampleOffChainReceiptIdAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_ASC', + InstructionEventsVarianceSampleOffChainReceiptIdDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_OFF_CHAIN_RECEIPT_ID_DESC', + InstructionEventsVarianceSamplePortfolioAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_PORTFOLIO_ASC', + InstructionEventsVarianceSamplePortfolioDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_PORTFOLIO_DESC', + InstructionEventsVarianceSampleUpdatedBlockIdAsc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionEventsVarianceSampleUpdatedBlockIdDesc = 'INSTRUCTION_EVENTS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + LegIdAsc = 'LEG_ID_ASC', + LegIdDesc = 'LEG_ID_DESC', + MetadataAsc = 'METADATA_ASC', + MetadataDesc = 'METADATA_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + SignerAsc = 'SIGNER_ASC', + SignerDesc = 'SIGNER_DESC', + UidAsc = 'UID_ASC', + UidDesc = 'UID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** Information about pagination in a connection. */ +export type PageInfo = { + __typename?: 'PageInfo'; + /** When paginating forwards, the cursor to continue. */ + endCursor?: Maybe; + /** When paginating forwards, are there more items? */ + hasNextPage: Scalars['Boolean']['output']; + /** When paginating backwards, are there more items? */ + hasPreviousPage: Scalars['Boolean']['output']; + /** When paginating backwards, the cursor to continue. */ + startCursor?: Maybe; +}; + +export type Permission = Node & { + __typename?: 'Permission'; + /** Reads and enables pagination through a set of `Account`. */ + accountsByPermissionsId: AccountsConnection; + assets?: Maybe; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAccountPermissionsIdAndCreatedBlockId: PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAccountPermissionsIdAndUpdatedBlockId: PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Permission`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByAccountPermissionsIdAndIdentityId: PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyConnection; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + portfolios?: Maybe; + transactionGroups: Scalars['JSON']['output']; + transactions?: Maybe; + /** Reads a single `Block` that is related to this `Permission`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type PermissionAccountsByPermissionsIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PermissionAssetsArgs = { + distinct?: InputMaybe>>; +}; + +export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PermissionPortfoliosArgs = { + distinct?: InputMaybe>>; +}; + +export type PermissionAggregates = { + __typename?: 'PermissionAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `Permission` object types. */ +export type PermissionAggregatesFilter = { + /** Distinct count aggregate over matching `Permission` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Permission` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Account`. */ + accountsByCreatedBlockId: AccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type PermissionBlocksByAccountPermissionsIdAndCreatedBlockIdManyToManyEdgeAccountsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Account`. */ +export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `Account`. */ + accountsByUpdatedBlockId: AccountsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Account`. */ +export type PermissionBlocksByAccountPermissionsIdAndUpdatedBlockIdManyToManyEdgeAccountsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type PermissionDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assets?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + id?: InputMaybe; + portfolios?: InputMaybe; + transactionGroups?: InputMaybe; + transactions?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type PermissionDistinctCountAggregates = { + __typename?: 'PermissionDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assets across the matching connection */ + assets?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of portfolios across the matching connection */ + portfolios?: Maybe; + /** Distinct count of transactionGroups across the matching connection */ + transactionGroups?: Maybe; + /** Distinct count of transactions across the matching connection */ + transactions?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `Permission` object types. All fields are combined with a logical ‘and.’ */ +export type PermissionFilter = { + /** Filter by the object’s `accountsByPermissionsId` relation. */ + accountsByPermissionsId?: InputMaybe; + /** Some related `accountsByPermissionsId` exist. */ + accountsByPermissionsIdExist?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `assets` field. */ + assets?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `portfolios` field. */ + portfolios?: InputMaybe; + /** Filter by the object’s `transactionGroups` field. */ + transactionGroups?: InputMaybe; + /** Filter by the object’s `transactions` field. */ + transactions?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `Account`. */ +export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyConnection = { + __typename?: 'PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Account`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Account`. */ +export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Account`. */ +export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyEdge = { + __typename?: 'PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Account`. */ + secondaryAccounts: AccountsConnection; +}; + +/** A `Identity` edge in the connection, with data from `Account`. */ +export type PermissionIdentitiesByAccountPermissionsIdAndIdentityIdManyToManyEdgeSecondaryAccountsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A filter to be used against many `Account` object types. All fields are combined with a logical ‘and.’ */ +export type PermissionToManyAccountFilter = { + /** Aggregates across related `Account` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Account` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Account` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Account` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A connection to a list of `Permission` values. */ +export type PermissionsConnection = { + __typename?: 'PermissionsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Permission` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Permission` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Permission` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Permission` values. */ +export type PermissionsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Permission` edge in the connection. */ +export type PermissionsEdge = { + __typename?: 'PermissionsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Permission` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Permission` for usage during aggregation. */ +export enum PermissionsGroupBy { + Assets = 'ASSETS', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + Id = 'ID', + Portfolios = 'PORTFOLIOS', + Transactions = 'TRANSACTIONS', + TransactionGroups = 'TRANSACTION_GROUPS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type PermissionsHavingAverageInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type PermissionsHavingDistinctCountInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +/** Conditions for `Permission` aggregates. */ +export type PermissionsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type PermissionsHavingMaxInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type PermissionsHavingMinInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type PermissionsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type PermissionsHavingStddevSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type PermissionsHavingSumInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type PermissionsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type PermissionsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +/** Methods to use when ordering `Permission`. */ +export enum PermissionsOrderBy { + AccountsByPermissionsIdAverageAddressAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_ADDRESS_ASC', + AccountsByPermissionsIdAverageAddressDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_ADDRESS_DESC', + AccountsByPermissionsIdAverageBlockRangeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_BLOCK_RANGE_ASC', + AccountsByPermissionsIdAverageBlockRangeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_BLOCK_RANGE_DESC', + AccountsByPermissionsIdAverageCreatedAtAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_CREATED_AT_ASC', + AccountsByPermissionsIdAverageCreatedAtDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_CREATED_AT_DESC', + AccountsByPermissionsIdAverageCreatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AccountsByPermissionsIdAverageCreatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AccountsByPermissionsIdAverageDatetimeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_DATETIME_ASC', + AccountsByPermissionsIdAverageDatetimeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_DATETIME_DESC', + AccountsByPermissionsIdAverageEventIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_EVENT_ID_ASC', + AccountsByPermissionsIdAverageEventIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_EVENT_ID_DESC', + AccountsByPermissionsIdAverageIdentityIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_IDENTITY_ID_ASC', + AccountsByPermissionsIdAverageIdentityIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_IDENTITY_ID_DESC', + AccountsByPermissionsIdAverageIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_ID_ASC', + AccountsByPermissionsIdAverageIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_ID_DESC', + AccountsByPermissionsIdAveragePermissionsIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_PERMISSIONS_ID_ASC', + AccountsByPermissionsIdAveragePermissionsIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_PERMISSIONS_ID_DESC', + AccountsByPermissionsIdAverageUpdatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AccountsByPermissionsIdAverageUpdatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AccountsByPermissionsIdCountAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_COUNT_ASC', + AccountsByPermissionsIdCountDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_COUNT_DESC', + AccountsByPermissionsIdDistinctCountAddressAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_ADDRESS_ASC', + AccountsByPermissionsIdDistinctCountAddressDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_ADDRESS_DESC', + AccountsByPermissionsIdDistinctCountBlockRangeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AccountsByPermissionsIdDistinctCountBlockRangeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AccountsByPermissionsIdDistinctCountCreatedAtAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AccountsByPermissionsIdDistinctCountCreatedAtDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AccountsByPermissionsIdDistinctCountCreatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AccountsByPermissionsIdDistinctCountCreatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AccountsByPermissionsIdDistinctCountDatetimeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_DATETIME_ASC', + AccountsByPermissionsIdDistinctCountDatetimeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_DATETIME_DESC', + AccountsByPermissionsIdDistinctCountEventIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_EVENT_ID_ASC', + AccountsByPermissionsIdDistinctCountEventIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_EVENT_ID_DESC', + AccountsByPermissionsIdDistinctCountIdentityIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_IDENTITY_ID_ASC', + AccountsByPermissionsIdDistinctCountIdentityIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_IDENTITY_ID_DESC', + AccountsByPermissionsIdDistinctCountIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_ID_ASC', + AccountsByPermissionsIdDistinctCountIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_ID_DESC', + AccountsByPermissionsIdDistinctCountPermissionsIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_PERMISSIONS_ID_ASC', + AccountsByPermissionsIdDistinctCountPermissionsIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_PERMISSIONS_ID_DESC', + AccountsByPermissionsIdDistinctCountUpdatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AccountsByPermissionsIdDistinctCountUpdatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AccountsByPermissionsIdMaxAddressAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_ADDRESS_ASC', + AccountsByPermissionsIdMaxAddressDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_ADDRESS_DESC', + AccountsByPermissionsIdMaxBlockRangeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_BLOCK_RANGE_ASC', + AccountsByPermissionsIdMaxBlockRangeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_BLOCK_RANGE_DESC', + AccountsByPermissionsIdMaxCreatedAtAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_CREATED_AT_ASC', + AccountsByPermissionsIdMaxCreatedAtDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_CREATED_AT_DESC', + AccountsByPermissionsIdMaxCreatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_CREATED_BLOCK_ID_ASC', + AccountsByPermissionsIdMaxCreatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_CREATED_BLOCK_ID_DESC', + AccountsByPermissionsIdMaxDatetimeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_DATETIME_ASC', + AccountsByPermissionsIdMaxDatetimeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_DATETIME_DESC', + AccountsByPermissionsIdMaxEventIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_EVENT_ID_ASC', + AccountsByPermissionsIdMaxEventIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_EVENT_ID_DESC', + AccountsByPermissionsIdMaxIdentityIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_IDENTITY_ID_ASC', + AccountsByPermissionsIdMaxIdentityIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_IDENTITY_ID_DESC', + AccountsByPermissionsIdMaxIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_ID_ASC', + AccountsByPermissionsIdMaxIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_ID_DESC', + AccountsByPermissionsIdMaxPermissionsIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_PERMISSIONS_ID_ASC', + AccountsByPermissionsIdMaxPermissionsIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_PERMISSIONS_ID_DESC', + AccountsByPermissionsIdMaxUpdatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_UPDATED_BLOCK_ID_ASC', + AccountsByPermissionsIdMaxUpdatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MAX_UPDATED_BLOCK_ID_DESC', + AccountsByPermissionsIdMinAddressAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_ADDRESS_ASC', + AccountsByPermissionsIdMinAddressDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_ADDRESS_DESC', + AccountsByPermissionsIdMinBlockRangeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_BLOCK_RANGE_ASC', + AccountsByPermissionsIdMinBlockRangeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_BLOCK_RANGE_DESC', + AccountsByPermissionsIdMinCreatedAtAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_CREATED_AT_ASC', + AccountsByPermissionsIdMinCreatedAtDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_CREATED_AT_DESC', + AccountsByPermissionsIdMinCreatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_CREATED_BLOCK_ID_ASC', + AccountsByPermissionsIdMinCreatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_CREATED_BLOCK_ID_DESC', + AccountsByPermissionsIdMinDatetimeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_DATETIME_ASC', + AccountsByPermissionsIdMinDatetimeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_DATETIME_DESC', + AccountsByPermissionsIdMinEventIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_EVENT_ID_ASC', + AccountsByPermissionsIdMinEventIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_EVENT_ID_DESC', + AccountsByPermissionsIdMinIdentityIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_IDENTITY_ID_ASC', + AccountsByPermissionsIdMinIdentityIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_IDENTITY_ID_DESC', + AccountsByPermissionsIdMinIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_ID_ASC', + AccountsByPermissionsIdMinIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_ID_DESC', + AccountsByPermissionsIdMinPermissionsIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_PERMISSIONS_ID_ASC', + AccountsByPermissionsIdMinPermissionsIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_PERMISSIONS_ID_DESC', + AccountsByPermissionsIdMinUpdatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_UPDATED_BLOCK_ID_ASC', + AccountsByPermissionsIdMinUpdatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_MIN_UPDATED_BLOCK_ID_DESC', + AccountsByPermissionsIdStddevPopulationAddressAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_ADDRESS_ASC', + AccountsByPermissionsIdStddevPopulationAddressDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_ADDRESS_DESC', + AccountsByPermissionsIdStddevPopulationBlockRangeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AccountsByPermissionsIdStddevPopulationBlockRangeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AccountsByPermissionsIdStddevPopulationCreatedAtAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AccountsByPermissionsIdStddevPopulationCreatedAtDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AccountsByPermissionsIdStddevPopulationCreatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AccountsByPermissionsIdStddevPopulationCreatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AccountsByPermissionsIdStddevPopulationDatetimeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_DATETIME_ASC', + AccountsByPermissionsIdStddevPopulationDatetimeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_DATETIME_DESC', + AccountsByPermissionsIdStddevPopulationEventIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_EVENT_ID_ASC', + AccountsByPermissionsIdStddevPopulationEventIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_EVENT_ID_DESC', + AccountsByPermissionsIdStddevPopulationIdentityIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_IDENTITY_ID_ASC', + AccountsByPermissionsIdStddevPopulationIdentityIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_IDENTITY_ID_DESC', + AccountsByPermissionsIdStddevPopulationIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_ID_ASC', + AccountsByPermissionsIdStddevPopulationIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_ID_DESC', + AccountsByPermissionsIdStddevPopulationPermissionsIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_PERMISSIONS_ID_ASC', + AccountsByPermissionsIdStddevPopulationPermissionsIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_PERMISSIONS_ID_DESC', + AccountsByPermissionsIdStddevPopulationUpdatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AccountsByPermissionsIdStddevPopulationUpdatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AccountsByPermissionsIdStddevSampleAddressAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_ADDRESS_ASC', + AccountsByPermissionsIdStddevSampleAddressDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_ADDRESS_DESC', + AccountsByPermissionsIdStddevSampleBlockRangeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AccountsByPermissionsIdStddevSampleBlockRangeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AccountsByPermissionsIdStddevSampleCreatedAtAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AccountsByPermissionsIdStddevSampleCreatedAtDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AccountsByPermissionsIdStddevSampleCreatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AccountsByPermissionsIdStddevSampleCreatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AccountsByPermissionsIdStddevSampleDatetimeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_DATETIME_ASC', + AccountsByPermissionsIdStddevSampleDatetimeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_DATETIME_DESC', + AccountsByPermissionsIdStddevSampleEventIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + AccountsByPermissionsIdStddevSampleEventIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + AccountsByPermissionsIdStddevSampleIdentityIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_IDENTITY_ID_ASC', + AccountsByPermissionsIdStddevSampleIdentityIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_IDENTITY_ID_DESC', + AccountsByPermissionsIdStddevSampleIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_ID_ASC', + AccountsByPermissionsIdStddevSampleIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_ID_DESC', + AccountsByPermissionsIdStddevSamplePermissionsIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_PERMISSIONS_ID_ASC', + AccountsByPermissionsIdStddevSamplePermissionsIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_PERMISSIONS_ID_DESC', + AccountsByPermissionsIdStddevSampleUpdatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AccountsByPermissionsIdStddevSampleUpdatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AccountsByPermissionsIdSumAddressAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_ADDRESS_ASC', + AccountsByPermissionsIdSumAddressDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_ADDRESS_DESC', + AccountsByPermissionsIdSumBlockRangeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_BLOCK_RANGE_ASC', + AccountsByPermissionsIdSumBlockRangeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_BLOCK_RANGE_DESC', + AccountsByPermissionsIdSumCreatedAtAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_CREATED_AT_ASC', + AccountsByPermissionsIdSumCreatedAtDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_CREATED_AT_DESC', + AccountsByPermissionsIdSumCreatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_CREATED_BLOCK_ID_ASC', + AccountsByPermissionsIdSumCreatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_CREATED_BLOCK_ID_DESC', + AccountsByPermissionsIdSumDatetimeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_DATETIME_ASC', + AccountsByPermissionsIdSumDatetimeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_DATETIME_DESC', + AccountsByPermissionsIdSumEventIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_EVENT_ID_ASC', + AccountsByPermissionsIdSumEventIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_EVENT_ID_DESC', + AccountsByPermissionsIdSumIdentityIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_IDENTITY_ID_ASC', + AccountsByPermissionsIdSumIdentityIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_IDENTITY_ID_DESC', + AccountsByPermissionsIdSumIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_ID_ASC', + AccountsByPermissionsIdSumIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_ID_DESC', + AccountsByPermissionsIdSumPermissionsIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_PERMISSIONS_ID_ASC', + AccountsByPermissionsIdSumPermissionsIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_PERMISSIONS_ID_DESC', + AccountsByPermissionsIdSumUpdatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_UPDATED_BLOCK_ID_ASC', + AccountsByPermissionsIdSumUpdatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_SUM_UPDATED_BLOCK_ID_DESC', + AccountsByPermissionsIdVariancePopulationAddressAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_ADDRESS_ASC', + AccountsByPermissionsIdVariancePopulationAddressDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_ADDRESS_DESC', + AccountsByPermissionsIdVariancePopulationBlockRangeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AccountsByPermissionsIdVariancePopulationBlockRangeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AccountsByPermissionsIdVariancePopulationCreatedAtAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AccountsByPermissionsIdVariancePopulationCreatedAtDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AccountsByPermissionsIdVariancePopulationCreatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AccountsByPermissionsIdVariancePopulationCreatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AccountsByPermissionsIdVariancePopulationDatetimeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_DATETIME_ASC', + AccountsByPermissionsIdVariancePopulationDatetimeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_DATETIME_DESC', + AccountsByPermissionsIdVariancePopulationEventIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + AccountsByPermissionsIdVariancePopulationEventIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + AccountsByPermissionsIdVariancePopulationIdentityIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_IDENTITY_ID_ASC', + AccountsByPermissionsIdVariancePopulationIdentityIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_IDENTITY_ID_DESC', + AccountsByPermissionsIdVariancePopulationIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_ID_ASC', + AccountsByPermissionsIdVariancePopulationIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_ID_DESC', + AccountsByPermissionsIdVariancePopulationPermissionsIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_PERMISSIONS_ID_ASC', + AccountsByPermissionsIdVariancePopulationPermissionsIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_PERMISSIONS_ID_DESC', + AccountsByPermissionsIdVariancePopulationUpdatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AccountsByPermissionsIdVariancePopulationUpdatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AccountsByPermissionsIdVarianceSampleAddressAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + AccountsByPermissionsIdVarianceSampleAddressDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + AccountsByPermissionsIdVarianceSampleBlockRangeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AccountsByPermissionsIdVarianceSampleBlockRangeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AccountsByPermissionsIdVarianceSampleCreatedAtAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AccountsByPermissionsIdVarianceSampleCreatedAtDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AccountsByPermissionsIdVarianceSampleCreatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AccountsByPermissionsIdVarianceSampleCreatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AccountsByPermissionsIdVarianceSampleDatetimeAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_DATETIME_ASC', + AccountsByPermissionsIdVarianceSampleDatetimeDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_DATETIME_DESC', + AccountsByPermissionsIdVarianceSampleEventIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + AccountsByPermissionsIdVarianceSampleEventIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + AccountsByPermissionsIdVarianceSampleIdentityIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + AccountsByPermissionsIdVarianceSampleIdentityIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + AccountsByPermissionsIdVarianceSampleIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_ID_ASC', + AccountsByPermissionsIdVarianceSampleIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_ID_DESC', + AccountsByPermissionsIdVarianceSamplePermissionsIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_PERMISSIONS_ID_ASC', + AccountsByPermissionsIdVarianceSamplePermissionsIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_PERMISSIONS_ID_DESC', + AccountsByPermissionsIdVarianceSampleUpdatedBlockIdAsc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AccountsByPermissionsIdVarianceSampleUpdatedBlockIdDesc = 'ACCOUNTS_BY_PERMISSIONS_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetsAsc = 'ASSETS_ASC', + AssetsDesc = 'ASSETS_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PortfoliosAsc = 'PORTFOLIOS_ASC', + PortfoliosDesc = 'PORTFOLIOS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + TransactionsAsc = 'TRANSACTIONS_ASC', + TransactionsDesc = 'TRANSACTIONS_DESC', + TransactionGroupsAsc = 'TRANSACTION_GROUPS_ASC', + TransactionGroupsDesc = 'TRANSACTION_GROUPS_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type PolyxTransaction = Node & { + __typename?: 'PolyxTransaction'; + address?: Maybe; + amount: Scalars['BigFloat']['output']; + callId?: Maybe; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `PolyxTransaction`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + eventId?: Maybe; + eventIdx: Scalars['Int']['output']; + /** Reads a single `Extrinsic` that is related to this `PolyxTransaction`. */ + extrinsic?: Maybe; + extrinsicId?: Maybe; + id: Scalars['String']['output']; + identityId?: Maybe; + memo?: Maybe; + moduleId?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + toAddress?: Maybe; + toId?: Maybe; + type: BalanceTypeEnum; + /** Reads a single `Block` that is related to this `PolyxTransaction`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type PolyxTransactionAggregates = { + __typename?: 'PolyxTransactionAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `PolyxTransaction` object types. */ +export type PolyxTransactionAggregatesFilter = { + /** Mean average aggregate over matching `PolyxTransaction` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `PolyxTransaction` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `PolyxTransaction` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `PolyxTransaction` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `PolyxTransaction` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `PolyxTransaction` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `PolyxTransaction` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `PolyxTransaction` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `PolyxTransaction` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `PolyxTransaction` objects. */ + varianceSample?: InputMaybe; +}; + +export type PolyxTransactionAverageAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionAverageAggregates = { + __typename?: 'PolyxTransactionAverageAggregates'; + /** Mean average of amount across the matching connection */ + amount?: Maybe; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type PolyxTransactionDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + address?: InputMaybe; + amount?: InputMaybe; + callId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + eventId?: InputMaybe; + eventIdx?: InputMaybe; + extrinsicId?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + memo?: InputMaybe; + moduleId?: InputMaybe; + toAddress?: InputMaybe; + toId?: InputMaybe; + type?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type PolyxTransactionDistinctCountAggregates = { + __typename?: 'PolyxTransactionDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of address across the matching connection */ + address?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of callId across the matching connection */ + callId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of eventId across the matching connection */ + eventId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of extrinsicId across the matching connection */ + extrinsicId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of memo across the matching connection */ + memo?: Maybe; + /** Distinct count of moduleId across the matching connection */ + moduleId?: Maybe; + /** Distinct count of toAddress across the matching connection */ + toAddress?: Maybe; + /** Distinct count of toId across the matching connection */ + toId?: Maybe; + /** Distinct count of type across the matching connection */ + type?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `PolyxTransaction` object types. All fields are combined with a logical ‘and.’ */ +export type PolyxTransactionFilter = { + /** Filter by the object’s `address` field. */ + address?: InputMaybe; + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `callId` field. */ + callId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `eventId` field. */ + eventId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `extrinsic` relation. */ + extrinsic?: InputMaybe; + /** A related `extrinsic` exists. */ + extrinsicExists?: InputMaybe; + /** Filter by the object’s `extrinsicId` field. */ + extrinsicId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Filter by the object’s `memo` field. */ + memo?: InputMaybe; + /** Filter by the object’s `moduleId` field. */ + moduleId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `toAddress` field. */ + toAddress?: InputMaybe; + /** Filter by the object’s `toId` field. */ + toId?: InputMaybe; + /** Filter by the object’s `type` field. */ + type?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type PolyxTransactionMaxAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionMaxAggregates = { + __typename?: 'PolyxTransactionMaxAggregates'; + /** Maximum of amount across the matching connection */ + amount?: Maybe; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type PolyxTransactionMinAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionMinAggregates = { + __typename?: 'PolyxTransactionMinAggregates'; + /** Minimum of amount across the matching connection */ + amount?: Maybe; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type PolyxTransactionStddevPopulationAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionStddevPopulationAggregates = { + __typename?: 'PolyxTransactionStddevPopulationAggregates'; + /** Population standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type PolyxTransactionStddevSampleAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionStddevSampleAggregates = { + __typename?: 'PolyxTransactionStddevSampleAggregates'; + /** Sample standard deviation of amount across the matching connection */ + amount?: Maybe; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type PolyxTransactionSumAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionSumAggregates = { + __typename?: 'PolyxTransactionSumAggregates'; + /** Sum of amount across the matching connection */ + amount: Scalars['BigFloat']['output']; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; +}; + +export type PolyxTransactionVariancePopulationAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionVariancePopulationAggregates = { + __typename?: 'PolyxTransactionVariancePopulationAggregates'; + /** Population variance of amount across the matching connection */ + amount?: Maybe; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type PolyxTransactionVarianceSampleAggregateFilter = { + amount?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionVarianceSampleAggregates = { + __typename?: 'PolyxTransactionVarianceSampleAggregates'; + /** Sample variance of amount across the matching connection */ + amount?: Maybe; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +/** A connection to a list of `PolyxTransaction` values. */ +export type PolyxTransactionsConnection = { + __typename?: 'PolyxTransactionsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `PolyxTransaction` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `PolyxTransaction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `PolyxTransaction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `PolyxTransaction` values. */ +export type PolyxTransactionsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `PolyxTransaction` edge in the connection. */ +export type PolyxTransactionsEdge = { + __typename?: 'PolyxTransactionsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `PolyxTransaction` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `PolyxTransaction` for usage during aggregation. */ +export enum PolyxTransactionsGroupBy { + Address = 'ADDRESS', + Amount = 'AMOUNT', + CallId = 'CALL_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + ExtrinsicId = 'EXTRINSIC_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + Memo = 'MEMO', + ModuleId = 'MODULE_ID', + ToAddress = 'TO_ADDRESS', + ToId = 'TO_ID', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type PolyxTransactionsHavingAverageInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionsHavingDistinctCountInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Conditions for `PolyxTransaction` aggregates. */ +export type PolyxTransactionsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type PolyxTransactionsHavingMaxInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionsHavingMinInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionsHavingStddevPopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionsHavingStddevSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionsHavingSumInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionsHavingVariancePopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type PolyxTransactionsHavingVarianceSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Methods to use when ordering `PolyxTransaction`. */ +export enum PolyxTransactionsOrderBy { + AddressAsc = 'ADDRESS_ASC', + AddressDesc = 'ADDRESS_DESC', + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + CallIdAsc = 'CALL_ID_ASC', + CallIdDesc = 'CALL_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + EventIdAsc = 'EVENT_ID_ASC', + EventIdDesc = 'EVENT_ID_DESC', + ExtrinsicIdAsc = 'EXTRINSIC_ID_ASC', + ExtrinsicIdDesc = 'EXTRINSIC_ID_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + MemoAsc = 'MEMO_ASC', + MemoDesc = 'MEMO_DESC', + ModuleIdAsc = 'MODULE_ID_ASC', + ModuleIdDesc = 'MODULE_ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ToAddressAsc = 'TO_ADDRESS_ASC', + ToAddressDesc = 'TO_ADDRESS_DESC', + ToIdAsc = 'TO_ID_ASC', + ToIdDesc = 'TO_ID_DESC', + TypeAsc = 'TYPE_ASC', + TypeDesc = 'TYPE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type Portfolio = Node & { + __typename?: 'Portfolio'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByFromPortfolioId: AssetTransactionsConnection; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByToPortfolioId: AssetTransactionsConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetTransactionFromPortfolioIdAndAssetId: PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByAssetTransactionToPortfolioIdAndAssetId: PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByDistributionPortfolioIdAndAssetId: PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByPortfolioMovementFromIdAndAssetId: PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByPortfolioMovementToIdAndAssetId: PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByStoOfferingPortfolioIdAndOfferingAssetId: PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByStoRaisingPortfolioIdAndOfferingAssetId: PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetTransactionFromPortfolioIdAndCreatedBlockId: PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetTransactionFromPortfolioIdAndUpdatedBlockId: PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetTransactionToPortfolioIdAndCreatedBlockId: PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByAssetTransactionToPortfolioIdAndUpdatedBlockId: PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionPortfolioIdAndCreatedBlockId: PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByDistributionPortfolioIdAndUpdatedBlockId: PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioMovementFromIdAndCreatedBlockId: PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioMovementFromIdAndUpdatedBlockId: PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioMovementToIdAndCreatedBlockId: PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByPortfolioMovementToIdAndUpdatedBlockId: PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoOfferingPortfolioIdAndCreatedBlockId: PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoOfferingPortfolioIdAndUpdatedBlockId: PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoRaisingPortfolioIdAndCreatedBlockId: PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoRaisingPortfolioIdAndUpdatedBlockId: PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Portfolio`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `Portfolio`. */ + custodian?: Maybe; + custodianId?: Maybe; + deletedAt?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + eventIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByDistributionPortfolioIdAndIdentityId: PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStoOfferingPortfolioIdAndCreatorId: PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStoRaisingPortfolioIdAndCreatorId: PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyConnection; + /** Reads a single `Identity` that is related to this `Portfolio`. */ + identity?: Maybe; + identityId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByAssetTransactionFromPortfolioIdAndInstructionId: PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByAssetTransactionToPortfolioIdAndInstructionId: PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnection; + name?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + number: Scalars['Int']['output']; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByFromId: PortfolioMovementsConnection; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByToId: PortfolioMovementsConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByAssetTransactionFromPortfolioIdAndToPortfolioId: PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByAssetTransactionToPortfolioIdAndFromPortfolioId: PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByPortfolioMovementFromIdAndToId: PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByPortfolioMovementToIdAndFromId: PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoOfferingPortfolioIdAndRaisingPortfolioId: PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoRaisingPortfolioIdAndOfferingPortfolioId: PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingPortfolioId: StosConnection; + /** Reads and enables pagination through a set of `Sto`. */ + stosByRaisingPortfolioId: StosConnection; + /** Reads a single `Block` that is related to this `Portfolio`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByStoOfferingPortfolioIdAndVenueId: PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyConnection; + /** Reads and enables pagination through a set of `Venue`. */ + venuesByStoRaisingPortfolioIdAndVenueId: PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyConnection; +}; + +export type PortfolioAssetTransactionsByFromPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioAssetTransactionsByToPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioDistributionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioPortfolioMovementsByFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioPortfolioMovementsByToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioStosByOfferingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioStosByRaisingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type PortfolioAggregates = { + __typename?: 'PortfolioAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Portfolio` object types. */ +export type PortfolioAggregatesFilter = { + /** Mean average aggregate over matching `Portfolio` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Portfolio` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Portfolio` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Portfolio` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Portfolio` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Portfolio` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Portfolio` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Portfolio` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Portfolio` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Portfolio` objects. */ + varianceSample?: InputMaybe; +}; + +/** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ +export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyConnection = { + __typename?: 'PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ +export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyEdge = { + __typename?: 'PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioAssetsByAssetTransactionFromPortfolioIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ +export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyConnection = { + __typename?: 'PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `AssetTransaction`. */ +export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyEdge = { + __typename?: 'PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioAssetsByAssetTransactionToPortfolioIdAndAssetIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `Distribution`. */ +export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyConnection = { + __typename?: 'PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Distribution`. */ +export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Distribution`. */ +export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyEdge = { + __typename?: 'PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Asset` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Asset` edge in the connection, with data from `Distribution`. */ +export type PortfolioAssetsByDistributionPortfolioIdAndAssetIdManyToManyEdgeDistributionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ +export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyConnection = { + __typename?: 'PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ +export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyEdge = { + __typename?: 'PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovements: PortfolioMovementsConnection; +}; + +/** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioAssetsByPortfolioMovementFromIdAndAssetIdManyToManyEdgePortfolioMovementsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ +export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyConnection = { + __typename?: 'PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `PortfolioMovement`. */ +export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyEdge = { + __typename?: 'PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovements: PortfolioMovementsConnection; +}; + +/** A `Asset` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioAssetsByPortfolioMovementToIdAndAssetIdManyToManyEdgePortfolioMovementsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyConnection = { + __typename?: 'PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyEdge = { + __typename?: 'PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingAssetId: StosConnection; +}; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type PortfolioAssetsByStoOfferingPortfolioIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyConnection = { + __typename?: 'PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyEdge = { + __typename?: 'PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingAssetId: StosConnection; +}; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type PortfolioAssetsByStoRaisingPortfolioIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type PortfolioAverageAggregateFilter = { + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfolioAverageAggregates = { + __typename?: 'PortfolioAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Mean average of number across the matching connection */ + number?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyConnection = + { + __typename?: 'PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByCreatedBlockId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyConnection = + { + __typename?: 'PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByUpdatedBlockId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionFromPortfolioIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByCreatedBlockId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndCreatedBlockIdManyToManyEdgeAssetTransactionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByUpdatedBlockId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioBlocksByAssetTransactionToPortfolioIdAndUpdatedBlockIdManyToManyEdgeAssetTransactionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByCreatedBlockId: DistributionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type PortfolioBlocksByDistributionPortfolioIdAndCreatedBlockIdManyToManyEdgeDistributionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Distribution`. */ +export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributionsByUpdatedBlockId: DistributionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Distribution`. */ +export type PortfolioBlocksByDistributionPortfolioIdAndUpdatedBlockIdManyToManyEdgeDistributionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByCreatedBlockId: PortfolioMovementsConnection; +}; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementFromIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByUpdatedBlockId: PortfolioMovementsConnection; +}; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementFromIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByCreatedBlockId: PortfolioMovementsConnection; +}; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementToIdAndCreatedBlockIdManyToManyEdgePortfolioMovementsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByUpdatedBlockId: PortfolioMovementsConnection; +}; + +/** A `Block` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioBlocksByPortfolioMovementToIdAndUpdatedBlockIdManyToManyEdgePortfolioMovementsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type PortfolioBlocksByStoOfferingPortfolioIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByUpdatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type PortfolioBlocksByStoOfferingPortfolioIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type PortfolioBlocksByStoRaisingPortfolioIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByUpdatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type PortfolioBlocksByStoRaisingPortfolioIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type PortfolioDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + custodianId?: InputMaybe; + deletedAt?: InputMaybe; + eventIdx?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + name?: InputMaybe; + number?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type PortfolioDistinctCountAggregates = { + __typename?: 'PortfolioDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of custodianId across the matching connection */ + custodianId?: Maybe; + /** Distinct count of deletedAt across the matching connection */ + deletedAt?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of name across the matching connection */ + name?: Maybe; + /** Distinct count of number across the matching connection */ + number?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `Portfolio` object types. All fields are combined with a logical ‘and.’ */ +export type PortfolioFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `assetTransactionsByFromPortfolioId` relation. */ + assetTransactionsByFromPortfolioId?: InputMaybe; + /** Some related `assetTransactionsByFromPortfolioId` exist. */ + assetTransactionsByFromPortfolioIdExist?: InputMaybe; + /** Filter by the object’s `assetTransactionsByToPortfolioId` relation. */ + assetTransactionsByToPortfolioId?: InputMaybe; + /** Some related `assetTransactionsByToPortfolioId` exist. */ + assetTransactionsByToPortfolioIdExist?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `custodian` relation. */ + custodian?: InputMaybe; + /** A related `custodian` exists. */ + custodianExists?: InputMaybe; + /** Filter by the object’s `custodianId` field. */ + custodianId?: InputMaybe; + /** Filter by the object’s `deletedAt` field. */ + deletedAt?: InputMaybe; + /** Filter by the object’s `distributions` relation. */ + distributions?: InputMaybe; + /** Some related `distributions` exist. */ + distributionsExist?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` relation. */ + identity?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Filter by the object’s `name` field. */ + name?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Filter by the object’s `number` field. */ + number?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `portfolioMovementsByFromId` relation. */ + portfolioMovementsByFromId?: InputMaybe; + /** Some related `portfolioMovementsByFromId` exist. */ + portfolioMovementsByFromIdExist?: InputMaybe; + /** Filter by the object’s `portfolioMovementsByToId` relation. */ + portfolioMovementsByToId?: InputMaybe; + /** Some related `portfolioMovementsByToId` exist. */ + portfolioMovementsByToIdExist?: InputMaybe; + /** Filter by the object’s `stosByOfferingPortfolioId` relation. */ + stosByOfferingPortfolioId?: InputMaybe; + /** Some related `stosByOfferingPortfolioId` exist. */ + stosByOfferingPortfolioIdExist?: InputMaybe; + /** Filter by the object’s `stosByRaisingPortfolioId` relation. */ + stosByRaisingPortfolioId?: InputMaybe; + /** Some related `stosByRaisingPortfolioId` exist. */ + stosByRaisingPortfolioIdExist?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `Distribution`. */ +export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyConnection = { + __typename?: 'PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Distribution`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Distribution`. */ +export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Distribution`. */ +export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyEdge = { + __typename?: 'PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions: DistributionsConnection; + /** The `Identity` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Identity` edge in the connection, with data from `Distribution`. */ +export type PortfolioIdentitiesByDistributionPortfolioIdAndIdentityIdManyToManyEdgeDistributionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyConnection = { + __typename?: 'PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyEdge = { + __typename?: 'PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatorId: StosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type PortfolioIdentitiesByStoOfferingPortfolioIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyConnection = { + __typename?: 'PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyEdge = { + __typename?: 'PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatorId: StosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type PortfolioIdentitiesByStoRaisingPortfolioIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ +export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnection = + { + __typename?: 'PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ +export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyEdge = { + __typename?: 'PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioInstructionsByAssetTransactionFromPortfolioIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ +export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnection = + { + __typename?: 'PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Instruction`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Instruction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Instruction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Instruction` values, with data from `AssetTransaction`. */ +export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyEdge = { + __typename?: 'PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Instruction` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Instruction` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioInstructionsByAssetTransactionToPortfolioIdAndInstructionIdManyToManyEdgeAssetTransactionsArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type PortfolioMaxAggregateFilter = { + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfolioMaxAggregates = { + __typename?: 'PortfolioMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Maximum of number across the matching connection */ + number?: Maybe; +}; + +export type PortfolioMinAggregateFilter = { + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfolioMinAggregates = { + __typename?: 'PortfolioMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Minimum of number across the matching connection */ + number?: Maybe; +}; + +export type PortfolioMovement = Node & { + __typename?: 'PortfolioMovement'; + address: Scalars['String']['output']; + /** the number of fungible tokens transferred. Defined if type == Fungible */ + amount?: Maybe; + /** Reads a single `Asset` that is related to this `PortfolioMovement`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `PortfolioMovement`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `Portfolio` that is related to this `PortfolioMovement`. */ + from?: Maybe; + fromId: Scalars['String']['output']; + id: Scalars['String']['output']; + memo?: Maybe; + /** the IDs of non-fungible tokens transferred. Defined if type == NonFungible */ + nftIds?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Portfolio` that is related to this `PortfolioMovement`. */ + to?: Maybe; + toId: Scalars['String']['output']; + type: PortfolioMovementTypeEnum; + /** Reads a single `Block` that is related to this `PortfolioMovement`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type PortfolioMovementAggregates = { + __typename?: 'PortfolioMovementAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `PortfolioMovement` object types. */ +export type PortfolioMovementAggregatesFilter = { + /** Mean average aggregate over matching `PortfolioMovement` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `PortfolioMovement` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `PortfolioMovement` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `PortfolioMovement` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `PortfolioMovement` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `PortfolioMovement` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `PortfolioMovement` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `PortfolioMovement` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `PortfolioMovement` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `PortfolioMovement` objects. */ + varianceSample?: InputMaybe; +}; + +export type PortfolioMovementAverageAggregateFilter = { + amount?: InputMaybe; +}; + +export type PortfolioMovementAverageAggregates = { + __typename?: 'PortfolioMovementAverageAggregates'; + /** Mean average of amount across the matching connection */ + amount?: Maybe; +}; + +export type PortfolioMovementDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + address?: InputMaybe; + amount?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + fromId?: InputMaybe; + id?: InputMaybe; + memo?: InputMaybe; + nftIds?: InputMaybe; + toId?: InputMaybe; + type?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type PortfolioMovementDistinctCountAggregates = { + __typename?: 'PortfolioMovementDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of address across the matching connection */ + address?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of fromId across the matching connection */ + fromId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of memo across the matching connection */ + memo?: Maybe; + /** Distinct count of nftIds across the matching connection */ + nftIds?: Maybe; + /** Distinct count of toId across the matching connection */ + toId?: Maybe; + /** Distinct count of type across the matching connection */ + type?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `PortfolioMovement` object types. All fields are combined with a logical ‘and.’ */ +export type PortfolioMovementFilter = { + /** Filter by the object’s `address` field. */ + address?: InputMaybe; + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `from` relation. */ + from?: InputMaybe; + /** Filter by the object’s `fromId` field. */ + fromId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `memo` field. */ + memo?: InputMaybe; + /** Filter by the object’s `nftIds` field. */ + nftIds?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `to` relation. */ + to?: InputMaybe; + /** Filter by the object’s `toId` field. */ + toId?: InputMaybe; + /** Filter by the object’s `type` field. */ + type?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type PortfolioMovementMaxAggregateFilter = { + amount?: InputMaybe; +}; + +export type PortfolioMovementMaxAggregates = { + __typename?: 'PortfolioMovementMaxAggregates'; + /** Maximum of amount across the matching connection */ + amount?: Maybe; +}; + +export type PortfolioMovementMinAggregateFilter = { + amount?: InputMaybe; +}; + +export type PortfolioMovementMinAggregates = { + __typename?: 'PortfolioMovementMinAggregates'; + /** Minimum of amount across the matching connection */ + amount?: Maybe; +}; + +export type PortfolioMovementStddevPopulationAggregateFilter = { + amount?: InputMaybe; +}; + +export type PortfolioMovementStddevPopulationAggregates = { + __typename?: 'PortfolioMovementStddevPopulationAggregates'; + /** Population standard deviation of amount across the matching connection */ + amount?: Maybe; +}; + +export type PortfolioMovementStddevSampleAggregateFilter = { + amount?: InputMaybe; +}; + +export type PortfolioMovementStddevSampleAggregates = { + __typename?: 'PortfolioMovementStddevSampleAggregates'; + /** Sample standard deviation of amount across the matching connection */ + amount?: Maybe; +}; + +export type PortfolioMovementSumAggregateFilter = { + amount?: InputMaybe; +}; + +export type PortfolioMovementSumAggregates = { + __typename?: 'PortfolioMovementSumAggregates'; + /** Sum of amount across the matching connection */ + amount: Scalars['BigFloat']['output']; +}; + +export enum PortfolioMovementTypeEnum { + Fungible = 'Fungible', + NonFungible = 'NonFungible', +} + +/** A filter to be used against PortfolioMovementTypeEnum fields. All fields are combined with a logical ‘and.’ */ +export type PortfolioMovementTypeEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type PortfolioMovementVariancePopulationAggregateFilter = { + amount?: InputMaybe; +}; + +export type PortfolioMovementVariancePopulationAggregates = { + __typename?: 'PortfolioMovementVariancePopulationAggregates'; + /** Population variance of amount across the matching connection */ + amount?: Maybe; +}; + +export type PortfolioMovementVarianceSampleAggregateFilter = { + amount?: InputMaybe; +}; + +export type PortfolioMovementVarianceSampleAggregates = { + __typename?: 'PortfolioMovementVarianceSampleAggregates'; + /** Sample variance of amount across the matching connection */ + amount?: Maybe; +}; + +/** A connection to a list of `PortfolioMovement` values. */ +export type PortfolioMovementsConnection = { + __typename?: 'PortfolioMovementsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `PortfolioMovement` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `PortfolioMovement` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `PortfolioMovement` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `PortfolioMovement` values. */ +export type PortfolioMovementsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `PortfolioMovement` edge in the connection. */ +export type PortfolioMovementsEdge = { + __typename?: 'PortfolioMovementsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `PortfolioMovement` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `PortfolioMovement` for usage during aggregation. */ +export enum PortfolioMovementsGroupBy { + Address = 'ADDRESS', + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + FromId = 'FROM_ID', + Id = 'ID', + Memo = 'MEMO', + NftIds = 'NFT_IDS', + ToId = 'TO_ID', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type PortfolioMovementsHavingAverageInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type PortfolioMovementsHavingDistinctCountInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +/** Conditions for `PortfolioMovement` aggregates. */ +export type PortfolioMovementsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type PortfolioMovementsHavingMaxInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type PortfolioMovementsHavingMinInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type PortfolioMovementsHavingStddevPopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type PortfolioMovementsHavingStddevSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type PortfolioMovementsHavingSumInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type PortfolioMovementsHavingVariancePopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +export type PortfolioMovementsHavingVarianceSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `PortfolioMovement`. */ +export enum PortfolioMovementsOrderBy { + AddressAsc = 'ADDRESS_ASC', + AddressDesc = 'ADDRESS_DESC', + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + FromIdAsc = 'FROM_ID_ASC', + FromIdDesc = 'FROM_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + MemoAsc = 'MEMO_ASC', + MemoDesc = 'MEMO_DESC', + Natural = 'NATURAL', + NftIdsAsc = 'NFT_IDS_ASC', + NftIdsDesc = 'NFT_IDS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ToIdAsc = 'TO_ID_ASC', + ToIdDesc = 'TO_ID_DESC', + TypeAsc = 'TYPE_ASC', + TypeDesc = 'TYPE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyConnection = + { + __typename?: 'PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyEdge = { + __typename?: 'PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByToPortfolioId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioPortfoliosByAssetTransactionFromPortfolioIdAndToPortfolioIdManyToManyEdgeAssetTransactionsByToPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyConnection = + { + __typename?: 'PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `AssetTransaction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; + }; + +/** A connection to a list of `Portfolio` values, with data from `AssetTransaction`. */ +export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyEdge = { + __typename?: 'PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyEdge'; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactionsByFromPortfolioId: AssetTransactionsConnection; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Portfolio` edge in the connection, with data from `AssetTransaction`. */ +export type PortfolioPortfoliosByAssetTransactionToPortfolioIdAndFromPortfolioIdManyToManyEdgeAssetTransactionsByFromPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyConnection = { + __typename?: 'PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyEdge = { + __typename?: 'PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByToId: PortfolioMovementsConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioPortfoliosByPortfolioMovementFromIdAndToIdManyToManyEdgePortfolioMovementsByToIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyConnection = { + __typename?: 'PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `PortfolioMovement`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `PortfolioMovement`. */ +export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyEdge = { + __typename?: 'PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovementsByFromId: PortfolioMovementsConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `PortfolioMovement`. */ +export type PortfolioPortfoliosByPortfolioMovementToIdAndFromIdManyToManyEdgePortfolioMovementsByFromIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyConnection = { + __typename?: 'PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyEdge = { + __typename?: 'PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByRaisingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type PortfolioPortfoliosByStoOfferingPortfolioIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyConnection = { + __typename?: 'PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyEdge = { + __typename?: 'PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type PortfolioPortfoliosByStoRaisingPortfolioIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type PortfolioStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfolioStddevPopulationAggregates = { + __typename?: 'PortfolioStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population standard deviation of number across the matching connection */ + number?: Maybe; +}; + +export type PortfolioStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfolioStddevSampleAggregates = { + __typename?: 'PortfolioStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample standard deviation of number across the matching connection */ + number?: Maybe; +}; + +export type PortfolioSumAggregateFilter = { + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfolioSumAggregates = { + __typename?: 'PortfolioSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; + /** Sum of number across the matching connection */ + number: Scalars['BigInt']['output']; +}; + +/** A filter to be used against many `AssetTransaction` object types. All fields are combined with a logical ‘and.’ */ +export type PortfolioToManyAssetTransactionFilter = { + /** Aggregates across related `AssetTransaction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `AssetTransaction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Distribution` object types. All fields are combined with a logical ‘and.’ */ +export type PortfolioToManyDistributionFilter = { + /** Aggregates across related `Distribution` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Distribution` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `PortfolioMovement` object types. All fields are combined with a logical ‘and.’ */ +export type PortfolioToManyPortfolioMovementFilter = { + /** Aggregates across related `PortfolioMovement` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `PortfolioMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `PortfolioMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `PortfolioMovement` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Sto` object types. All fields are combined with a logical ‘and.’ */ +export type PortfolioToManyStoFilter = { + /** Aggregates across related `Sto` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type PortfolioVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfolioVariancePopulationAggregates = { + __typename?: 'PortfolioVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Population variance of number across the matching connection */ + number?: Maybe; +}; + +export type PortfolioVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfolioVarianceSampleAggregates = { + __typename?: 'PortfolioVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Sample variance of number across the matching connection */ + number?: Maybe; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyConnection = { + __typename?: 'PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Venue`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Venue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Venue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyEdge = { + __typename?: 'PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Venue` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stos: StosConnection; +}; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type PortfolioVenuesByStoOfferingPortfolioIdAndVenueIdManyToManyEdgeStosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyConnection = { + __typename?: 'PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Venue`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Venue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Venue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Venue` values, with data from `Sto`. */ +export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyEdge = { + __typename?: 'PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Venue` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stos: StosConnection; +}; + +/** A `Venue` edge in the connection, with data from `Sto`. */ +export type PortfolioVenuesByStoRaisingPortfolioIdAndVenueIdManyToManyEdgeStosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Portfolio` values. */ +export type PortfoliosConnection = { + __typename?: 'PortfoliosConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values. */ +export type PortfoliosConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Portfolio` edge in the connection. */ +export type PortfoliosEdge = { + __typename?: 'PortfoliosEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Portfolio` for usage during aggregation. */ +export enum PortfoliosGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + CustodianId = 'CUSTODIAN_ID', + DeletedAt = 'DELETED_AT', + DeletedAtTruncatedToDay = 'DELETED_AT_TRUNCATED_TO_DAY', + DeletedAtTruncatedToHour = 'DELETED_AT_TRUNCATED_TO_HOUR', + EventIdx = 'EVENT_IDX', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + Name = 'NAME', + Number = 'NUMBER', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type PortfoliosHavingAverageInput = { + createdAt?: InputMaybe; + deletedAt?: InputMaybe; + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfoliosHavingDistinctCountInput = { + createdAt?: InputMaybe; + deletedAt?: InputMaybe; + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +/** Conditions for `Portfolio` aggregates. */ +export type PortfoliosHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type PortfoliosHavingMaxInput = { + createdAt?: InputMaybe; + deletedAt?: InputMaybe; + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfoliosHavingMinInput = { + createdAt?: InputMaybe; + deletedAt?: InputMaybe; + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfoliosHavingStddevPopulationInput = { + createdAt?: InputMaybe; + deletedAt?: InputMaybe; + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfoliosHavingStddevSampleInput = { + createdAt?: InputMaybe; + deletedAt?: InputMaybe; + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfoliosHavingSumInput = { + createdAt?: InputMaybe; + deletedAt?: InputMaybe; + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfoliosHavingVariancePopulationInput = { + createdAt?: InputMaybe; + deletedAt?: InputMaybe; + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +export type PortfoliosHavingVarianceSampleInput = { + createdAt?: InputMaybe; + deletedAt?: InputMaybe; + eventIdx?: InputMaybe; + number?: InputMaybe; +}; + +/** Methods to use when ordering `Portfolio`. */ +export enum PortfoliosOrderBy { + AssetTransactionsByFromPortfolioIdAverageAmountAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_AMOUNT_ASC', + AssetTransactionsByFromPortfolioIdAverageAmountDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_AMOUNT_DESC', + AssetTransactionsByFromPortfolioIdAverageAssetIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_ASSET_ID_ASC', + AssetTransactionsByFromPortfolioIdAverageAssetIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_ASSET_ID_DESC', + AssetTransactionsByFromPortfolioIdAverageBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetTransactionsByFromPortfolioIdAverageBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetTransactionsByFromPortfolioIdAverageCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_CREATED_AT_ASC', + AssetTransactionsByFromPortfolioIdAverageCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_CREATED_AT_DESC', + AssetTransactionsByFromPortfolioIdAverageCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdAverageCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdAverageDatetimeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_DATETIME_ASC', + AssetTransactionsByFromPortfolioIdAverageDatetimeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_DATETIME_DESC', + AssetTransactionsByFromPortfolioIdAverageEventIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_EVENT_IDX_ASC', + AssetTransactionsByFromPortfolioIdAverageEventIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_EVENT_IDX_DESC', + AssetTransactionsByFromPortfolioIdAverageEventIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_EVENT_ID_ASC', + AssetTransactionsByFromPortfolioIdAverageEventIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_EVENT_ID_DESC', + AssetTransactionsByFromPortfolioIdAverageExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_EXTRINSIC_IDX_ASC', + AssetTransactionsByFromPortfolioIdAverageExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_EXTRINSIC_IDX_DESC', + AssetTransactionsByFromPortfolioIdAverageFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdAverageFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdAverageFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_FUNDING_ROUND_ASC', + AssetTransactionsByFromPortfolioIdAverageFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_FUNDING_ROUND_DESC', + AssetTransactionsByFromPortfolioIdAverageIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_ID_ASC', + AssetTransactionsByFromPortfolioIdAverageIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_ID_DESC', + AssetTransactionsByFromPortfolioIdAverageInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_INSTRUCTION_ID_ASC', + AssetTransactionsByFromPortfolioIdAverageInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_INSTRUCTION_ID_DESC', + AssetTransactionsByFromPortfolioIdAverageInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByFromPortfolioIdAverageInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByFromPortfolioIdAverageNftIdsAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_NFT_IDS_ASC', + AssetTransactionsByFromPortfolioIdAverageNftIdsDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_NFT_IDS_DESC', + AssetTransactionsByFromPortfolioIdAverageToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdAverageToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdAverageUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdAverageUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdCountAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_COUNT_ASC', + AssetTransactionsByFromPortfolioIdCountDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_COUNT_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountAmountAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_AMOUNT_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountAmountDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_AMOUNT_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountAssetIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountAssetIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountDatetimeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_DATETIME_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountDatetimeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_DATETIME_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountEventIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountEventIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountEventIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_EVENT_ID_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountEventIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_EVENT_ID_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_FUNDING_ROUND_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_ID_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_ID_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountNftIdsAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_NFT_IDS_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountNftIdsDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_NFT_IDS_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdDistinctCountUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdDistinctCountUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdMaxAmountAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_AMOUNT_ASC', + AssetTransactionsByFromPortfolioIdMaxAmountDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_AMOUNT_DESC', + AssetTransactionsByFromPortfolioIdMaxAssetIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_ASSET_ID_ASC', + AssetTransactionsByFromPortfolioIdMaxAssetIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_ASSET_ID_DESC', + AssetTransactionsByFromPortfolioIdMaxBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_BLOCK_RANGE_ASC', + AssetTransactionsByFromPortfolioIdMaxBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_BLOCK_RANGE_DESC', + AssetTransactionsByFromPortfolioIdMaxCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_CREATED_AT_ASC', + AssetTransactionsByFromPortfolioIdMaxCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_CREATED_AT_DESC', + AssetTransactionsByFromPortfolioIdMaxCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdMaxCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdMaxDatetimeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_DATETIME_ASC', + AssetTransactionsByFromPortfolioIdMaxDatetimeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_DATETIME_DESC', + AssetTransactionsByFromPortfolioIdMaxEventIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_EVENT_IDX_ASC', + AssetTransactionsByFromPortfolioIdMaxEventIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_EVENT_IDX_DESC', + AssetTransactionsByFromPortfolioIdMaxEventIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_EVENT_ID_ASC', + AssetTransactionsByFromPortfolioIdMaxEventIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_EVENT_ID_DESC', + AssetTransactionsByFromPortfolioIdMaxExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_EXTRINSIC_IDX_ASC', + AssetTransactionsByFromPortfolioIdMaxExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_EXTRINSIC_IDX_DESC', + AssetTransactionsByFromPortfolioIdMaxFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdMaxFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdMaxFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_FUNDING_ROUND_ASC', + AssetTransactionsByFromPortfolioIdMaxFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_FUNDING_ROUND_DESC', + AssetTransactionsByFromPortfolioIdMaxIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_ID_ASC', + AssetTransactionsByFromPortfolioIdMaxIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_ID_DESC', + AssetTransactionsByFromPortfolioIdMaxInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_INSTRUCTION_ID_ASC', + AssetTransactionsByFromPortfolioIdMaxInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_INSTRUCTION_ID_DESC', + AssetTransactionsByFromPortfolioIdMaxInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_INSTRUCTION_MEMO_ASC', + AssetTransactionsByFromPortfolioIdMaxInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_INSTRUCTION_MEMO_DESC', + AssetTransactionsByFromPortfolioIdMaxNftIdsAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_NFT_IDS_ASC', + AssetTransactionsByFromPortfolioIdMaxNftIdsDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_NFT_IDS_DESC', + AssetTransactionsByFromPortfolioIdMaxToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdMaxToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdMaxUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdMaxUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdMinAmountAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_AMOUNT_ASC', + AssetTransactionsByFromPortfolioIdMinAmountDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_AMOUNT_DESC', + AssetTransactionsByFromPortfolioIdMinAssetIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_ASSET_ID_ASC', + AssetTransactionsByFromPortfolioIdMinAssetIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_ASSET_ID_DESC', + AssetTransactionsByFromPortfolioIdMinBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_BLOCK_RANGE_ASC', + AssetTransactionsByFromPortfolioIdMinBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_BLOCK_RANGE_DESC', + AssetTransactionsByFromPortfolioIdMinCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_CREATED_AT_ASC', + AssetTransactionsByFromPortfolioIdMinCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_CREATED_AT_DESC', + AssetTransactionsByFromPortfolioIdMinCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdMinCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdMinDatetimeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_DATETIME_ASC', + AssetTransactionsByFromPortfolioIdMinDatetimeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_DATETIME_DESC', + AssetTransactionsByFromPortfolioIdMinEventIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_EVENT_IDX_ASC', + AssetTransactionsByFromPortfolioIdMinEventIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_EVENT_IDX_DESC', + AssetTransactionsByFromPortfolioIdMinEventIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_EVENT_ID_ASC', + AssetTransactionsByFromPortfolioIdMinEventIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_EVENT_ID_DESC', + AssetTransactionsByFromPortfolioIdMinExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_EXTRINSIC_IDX_ASC', + AssetTransactionsByFromPortfolioIdMinExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_EXTRINSIC_IDX_DESC', + AssetTransactionsByFromPortfolioIdMinFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdMinFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdMinFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_FUNDING_ROUND_ASC', + AssetTransactionsByFromPortfolioIdMinFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_FUNDING_ROUND_DESC', + AssetTransactionsByFromPortfolioIdMinIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_ID_ASC', + AssetTransactionsByFromPortfolioIdMinIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_ID_DESC', + AssetTransactionsByFromPortfolioIdMinInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_INSTRUCTION_ID_ASC', + AssetTransactionsByFromPortfolioIdMinInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_INSTRUCTION_ID_DESC', + AssetTransactionsByFromPortfolioIdMinInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_INSTRUCTION_MEMO_ASC', + AssetTransactionsByFromPortfolioIdMinInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_INSTRUCTION_MEMO_DESC', + AssetTransactionsByFromPortfolioIdMinNftIdsAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_NFT_IDS_ASC', + AssetTransactionsByFromPortfolioIdMinNftIdsDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_NFT_IDS_DESC', + AssetTransactionsByFromPortfolioIdMinToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdMinToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdMinUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdMinUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationAmountAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_AMOUNT_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationAmountDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_AMOUNT_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationAssetIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationAssetIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationDatetimeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_DATETIME_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationDatetimeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_DATETIME_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationEventIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationEventIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationEventIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_EVENT_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationEventIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_EVENT_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationNftIdsAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_NFT_IDS_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationNftIdsDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_NFT_IDS_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleAmountAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_AMOUNT_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleAmountDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_AMOUNT_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleAssetIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleAssetIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleDatetimeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_DATETIME_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleDatetimeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_DATETIME_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleEventIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleEventIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleEventIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleEventIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleNftIdsAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleNftIdsDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdStddevSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdStddevSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdSumAmountAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_AMOUNT_ASC', + AssetTransactionsByFromPortfolioIdSumAmountDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_AMOUNT_DESC', + AssetTransactionsByFromPortfolioIdSumAssetIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_ASSET_ID_ASC', + AssetTransactionsByFromPortfolioIdSumAssetIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_ASSET_ID_DESC', + AssetTransactionsByFromPortfolioIdSumBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_BLOCK_RANGE_ASC', + AssetTransactionsByFromPortfolioIdSumBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_BLOCK_RANGE_DESC', + AssetTransactionsByFromPortfolioIdSumCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_CREATED_AT_ASC', + AssetTransactionsByFromPortfolioIdSumCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_CREATED_AT_DESC', + AssetTransactionsByFromPortfolioIdSumCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdSumCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdSumDatetimeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_DATETIME_ASC', + AssetTransactionsByFromPortfolioIdSumDatetimeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_DATETIME_DESC', + AssetTransactionsByFromPortfolioIdSumEventIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_EVENT_IDX_ASC', + AssetTransactionsByFromPortfolioIdSumEventIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_EVENT_IDX_DESC', + AssetTransactionsByFromPortfolioIdSumEventIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_EVENT_ID_ASC', + AssetTransactionsByFromPortfolioIdSumEventIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_EVENT_ID_DESC', + AssetTransactionsByFromPortfolioIdSumExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_EXTRINSIC_IDX_ASC', + AssetTransactionsByFromPortfolioIdSumExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_EXTRINSIC_IDX_DESC', + AssetTransactionsByFromPortfolioIdSumFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdSumFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdSumFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_FUNDING_ROUND_ASC', + AssetTransactionsByFromPortfolioIdSumFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_FUNDING_ROUND_DESC', + AssetTransactionsByFromPortfolioIdSumIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_ID_ASC', + AssetTransactionsByFromPortfolioIdSumIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_ID_DESC', + AssetTransactionsByFromPortfolioIdSumInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_INSTRUCTION_ID_ASC', + AssetTransactionsByFromPortfolioIdSumInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_INSTRUCTION_ID_DESC', + AssetTransactionsByFromPortfolioIdSumInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_INSTRUCTION_MEMO_ASC', + AssetTransactionsByFromPortfolioIdSumInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_INSTRUCTION_MEMO_DESC', + AssetTransactionsByFromPortfolioIdSumNftIdsAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_NFT_IDS_ASC', + AssetTransactionsByFromPortfolioIdSumNftIdsDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_NFT_IDS_DESC', + AssetTransactionsByFromPortfolioIdSumToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdSumToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdSumUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdSumUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationAmountAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_AMOUNT_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationAmountDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_AMOUNT_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationAssetIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationAssetIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationDatetimeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_DATETIME_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationDatetimeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_DATETIME_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationEventIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationEventIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationEventIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationEventIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_ID_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_ID_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationNftIdsAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationNftIdsDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleAmountAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleAmountDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleAssetIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleAssetIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleDatetimeAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_DATETIME_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleDatetimeDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_DATETIME_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleEventIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleEventIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleEventIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleEventIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleNftIdsAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleNftIdsDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByFromPortfolioIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByFromPortfolioIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_FROM_PORTFOLIO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdAverageAmountAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_AMOUNT_ASC', + AssetTransactionsByToPortfolioIdAverageAmountDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_AMOUNT_DESC', + AssetTransactionsByToPortfolioIdAverageAssetIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_ASSET_ID_ASC', + AssetTransactionsByToPortfolioIdAverageAssetIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_ASSET_ID_DESC', + AssetTransactionsByToPortfolioIdAverageBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_BLOCK_RANGE_ASC', + AssetTransactionsByToPortfolioIdAverageBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_BLOCK_RANGE_DESC', + AssetTransactionsByToPortfolioIdAverageCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_CREATED_AT_ASC', + AssetTransactionsByToPortfolioIdAverageCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_CREATED_AT_DESC', + AssetTransactionsByToPortfolioIdAverageCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdAverageCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdAverageDatetimeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_DATETIME_ASC', + AssetTransactionsByToPortfolioIdAverageDatetimeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_DATETIME_DESC', + AssetTransactionsByToPortfolioIdAverageEventIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_EVENT_IDX_ASC', + AssetTransactionsByToPortfolioIdAverageEventIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_EVENT_IDX_DESC', + AssetTransactionsByToPortfolioIdAverageEventIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_EVENT_ID_ASC', + AssetTransactionsByToPortfolioIdAverageEventIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_EVENT_ID_DESC', + AssetTransactionsByToPortfolioIdAverageExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_EXTRINSIC_IDX_ASC', + AssetTransactionsByToPortfolioIdAverageExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_EXTRINSIC_IDX_DESC', + AssetTransactionsByToPortfolioIdAverageFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdAverageFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdAverageFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_FUNDING_ROUND_ASC', + AssetTransactionsByToPortfolioIdAverageFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_FUNDING_ROUND_DESC', + AssetTransactionsByToPortfolioIdAverageIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_ID_ASC', + AssetTransactionsByToPortfolioIdAverageIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_ID_DESC', + AssetTransactionsByToPortfolioIdAverageInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_INSTRUCTION_ID_ASC', + AssetTransactionsByToPortfolioIdAverageInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_INSTRUCTION_ID_DESC', + AssetTransactionsByToPortfolioIdAverageInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByToPortfolioIdAverageInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByToPortfolioIdAverageNftIdsAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_NFT_IDS_ASC', + AssetTransactionsByToPortfolioIdAverageNftIdsDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_NFT_IDS_DESC', + AssetTransactionsByToPortfolioIdAverageToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdAverageToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdAverageUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdAverageUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdCountAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_COUNT_ASC', + AssetTransactionsByToPortfolioIdCountDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_COUNT_DESC', + AssetTransactionsByToPortfolioIdDistinctCountAmountAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_AMOUNT_ASC', + AssetTransactionsByToPortfolioIdDistinctCountAmountDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_AMOUNT_DESC', + AssetTransactionsByToPortfolioIdDistinctCountAssetIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_ASSET_ID_ASC', + AssetTransactionsByToPortfolioIdDistinctCountAssetIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_ASSET_ID_DESC', + AssetTransactionsByToPortfolioIdDistinctCountBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + AssetTransactionsByToPortfolioIdDistinctCountBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + AssetTransactionsByToPortfolioIdDistinctCountCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_AT_ASC', + AssetTransactionsByToPortfolioIdDistinctCountCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_AT_DESC', + AssetTransactionsByToPortfolioIdDistinctCountCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdDistinctCountCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdDistinctCountDatetimeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_DATETIME_ASC', + AssetTransactionsByToPortfolioIdDistinctCountDatetimeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_DATETIME_DESC', + AssetTransactionsByToPortfolioIdDistinctCountEventIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_EVENT_IDX_ASC', + AssetTransactionsByToPortfolioIdDistinctCountEventIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_EVENT_IDX_DESC', + AssetTransactionsByToPortfolioIdDistinctCountEventIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_EVENT_ID_ASC', + AssetTransactionsByToPortfolioIdDistinctCountEventIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_EVENT_ID_DESC', + AssetTransactionsByToPortfolioIdDistinctCountExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_EXTRINSIC_IDX_ASC', + AssetTransactionsByToPortfolioIdDistinctCountExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_EXTRINSIC_IDX_DESC', + AssetTransactionsByToPortfolioIdDistinctCountFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdDistinctCountFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdDistinctCountFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_FUNDING_ROUND_ASC', + AssetTransactionsByToPortfolioIdDistinctCountFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_FUNDING_ROUND_DESC', + AssetTransactionsByToPortfolioIdDistinctCountIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_ID_ASC', + AssetTransactionsByToPortfolioIdDistinctCountIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_ID_DESC', + AssetTransactionsByToPortfolioIdDistinctCountInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_ID_ASC', + AssetTransactionsByToPortfolioIdDistinctCountInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_ID_DESC', + AssetTransactionsByToPortfolioIdDistinctCountInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_ASC', + AssetTransactionsByToPortfolioIdDistinctCountInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_INSTRUCTION_MEMO_DESC', + AssetTransactionsByToPortfolioIdDistinctCountNftIdsAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_NFT_IDS_ASC', + AssetTransactionsByToPortfolioIdDistinctCountNftIdsDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_NFT_IDS_DESC', + AssetTransactionsByToPortfolioIdDistinctCountToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdDistinctCountToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdDistinctCountUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdDistinctCountUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdMaxAmountAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_AMOUNT_ASC', + AssetTransactionsByToPortfolioIdMaxAmountDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_AMOUNT_DESC', + AssetTransactionsByToPortfolioIdMaxAssetIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_ASSET_ID_ASC', + AssetTransactionsByToPortfolioIdMaxAssetIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_ASSET_ID_DESC', + AssetTransactionsByToPortfolioIdMaxBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_BLOCK_RANGE_ASC', + AssetTransactionsByToPortfolioIdMaxBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_BLOCK_RANGE_DESC', + AssetTransactionsByToPortfolioIdMaxCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_CREATED_AT_ASC', + AssetTransactionsByToPortfolioIdMaxCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_CREATED_AT_DESC', + AssetTransactionsByToPortfolioIdMaxCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_CREATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdMaxCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_CREATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdMaxDatetimeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_DATETIME_ASC', + AssetTransactionsByToPortfolioIdMaxDatetimeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_DATETIME_DESC', + AssetTransactionsByToPortfolioIdMaxEventIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_EVENT_IDX_ASC', + AssetTransactionsByToPortfolioIdMaxEventIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_EVENT_IDX_DESC', + AssetTransactionsByToPortfolioIdMaxEventIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_EVENT_ID_ASC', + AssetTransactionsByToPortfolioIdMaxEventIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_EVENT_ID_DESC', + AssetTransactionsByToPortfolioIdMaxExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_EXTRINSIC_IDX_ASC', + AssetTransactionsByToPortfolioIdMaxExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_EXTRINSIC_IDX_DESC', + AssetTransactionsByToPortfolioIdMaxFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdMaxFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdMaxFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_FUNDING_ROUND_ASC', + AssetTransactionsByToPortfolioIdMaxFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_FUNDING_ROUND_DESC', + AssetTransactionsByToPortfolioIdMaxIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_ID_ASC', + AssetTransactionsByToPortfolioIdMaxIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_ID_DESC', + AssetTransactionsByToPortfolioIdMaxInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_INSTRUCTION_ID_ASC', + AssetTransactionsByToPortfolioIdMaxInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_INSTRUCTION_ID_DESC', + AssetTransactionsByToPortfolioIdMaxInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_INSTRUCTION_MEMO_ASC', + AssetTransactionsByToPortfolioIdMaxInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_INSTRUCTION_MEMO_DESC', + AssetTransactionsByToPortfolioIdMaxNftIdsAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_NFT_IDS_ASC', + AssetTransactionsByToPortfolioIdMaxNftIdsDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_NFT_IDS_DESC', + AssetTransactionsByToPortfolioIdMaxToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdMaxToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdMaxUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdMaxUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MAX_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdMinAmountAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_AMOUNT_ASC', + AssetTransactionsByToPortfolioIdMinAmountDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_AMOUNT_DESC', + AssetTransactionsByToPortfolioIdMinAssetIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_ASSET_ID_ASC', + AssetTransactionsByToPortfolioIdMinAssetIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_ASSET_ID_DESC', + AssetTransactionsByToPortfolioIdMinBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_BLOCK_RANGE_ASC', + AssetTransactionsByToPortfolioIdMinBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_BLOCK_RANGE_DESC', + AssetTransactionsByToPortfolioIdMinCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_CREATED_AT_ASC', + AssetTransactionsByToPortfolioIdMinCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_CREATED_AT_DESC', + AssetTransactionsByToPortfolioIdMinCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_CREATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdMinCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_CREATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdMinDatetimeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_DATETIME_ASC', + AssetTransactionsByToPortfolioIdMinDatetimeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_DATETIME_DESC', + AssetTransactionsByToPortfolioIdMinEventIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_EVENT_IDX_ASC', + AssetTransactionsByToPortfolioIdMinEventIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_EVENT_IDX_DESC', + AssetTransactionsByToPortfolioIdMinEventIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_EVENT_ID_ASC', + AssetTransactionsByToPortfolioIdMinEventIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_EVENT_ID_DESC', + AssetTransactionsByToPortfolioIdMinExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_EXTRINSIC_IDX_ASC', + AssetTransactionsByToPortfolioIdMinExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_EXTRINSIC_IDX_DESC', + AssetTransactionsByToPortfolioIdMinFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdMinFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdMinFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_FUNDING_ROUND_ASC', + AssetTransactionsByToPortfolioIdMinFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_FUNDING_ROUND_DESC', + AssetTransactionsByToPortfolioIdMinIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_ID_ASC', + AssetTransactionsByToPortfolioIdMinIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_ID_DESC', + AssetTransactionsByToPortfolioIdMinInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_INSTRUCTION_ID_ASC', + AssetTransactionsByToPortfolioIdMinInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_INSTRUCTION_ID_DESC', + AssetTransactionsByToPortfolioIdMinInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_INSTRUCTION_MEMO_ASC', + AssetTransactionsByToPortfolioIdMinInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_INSTRUCTION_MEMO_DESC', + AssetTransactionsByToPortfolioIdMinNftIdsAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_NFT_IDS_ASC', + AssetTransactionsByToPortfolioIdMinNftIdsDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_NFT_IDS_DESC', + AssetTransactionsByToPortfolioIdMinToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdMinToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdMinUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdMinUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_MIN_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationAmountAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_AMOUNT_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationAmountDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_AMOUNT_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationAssetIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_ASSET_ID_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationAssetIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_ASSET_ID_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_AT_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_AT_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationDatetimeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_DATETIME_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationDatetimeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_DATETIME_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationEventIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_EVENT_IDX_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationEventIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_EVENT_IDX_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationEventIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_EVENT_ID_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationEventIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_EVENT_ID_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_ID_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_ID_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationNftIdsAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_NFT_IDS_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationNftIdsDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_NFT_IDS_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdStddevPopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdStddevPopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdStddevSampleAmountAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_AMOUNT_ASC', + AssetTransactionsByToPortfolioIdStddevSampleAmountDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_AMOUNT_DESC', + AssetTransactionsByToPortfolioIdStddevSampleAssetIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + AssetTransactionsByToPortfolioIdStddevSampleAssetIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + AssetTransactionsByToPortfolioIdStddevSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsByToPortfolioIdStddevSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsByToPortfolioIdStddevSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + AssetTransactionsByToPortfolioIdStddevSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + AssetTransactionsByToPortfolioIdStddevSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdStddevSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdStddevSampleDatetimeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_DATETIME_ASC', + AssetTransactionsByToPortfolioIdStddevSampleDatetimeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_DATETIME_DESC', + AssetTransactionsByToPortfolioIdStddevSampleEventIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsByToPortfolioIdStddevSampleEventIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsByToPortfolioIdStddevSampleEventIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_EVENT_ID_ASC', + AssetTransactionsByToPortfolioIdStddevSampleEventIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_EVENT_ID_DESC', + AssetTransactionsByToPortfolioIdStddevSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsByToPortfolioIdStddevSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsByToPortfolioIdStddevSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdStddevSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdStddevSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsByToPortfolioIdStddevSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsByToPortfolioIdStddevSampleIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_ID_ASC', + AssetTransactionsByToPortfolioIdStddevSampleIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_ID_DESC', + AssetTransactionsByToPortfolioIdStddevSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsByToPortfolioIdStddevSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsByToPortfolioIdStddevSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByToPortfolioIdStddevSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByToPortfolioIdStddevSampleNftIdsAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + AssetTransactionsByToPortfolioIdStddevSampleNftIdsDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + AssetTransactionsByToPortfolioIdStddevSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdStddevSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdStddevSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdStddevSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdSumAmountAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_AMOUNT_ASC', + AssetTransactionsByToPortfolioIdSumAmountDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_AMOUNT_DESC', + AssetTransactionsByToPortfolioIdSumAssetIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_ASSET_ID_ASC', + AssetTransactionsByToPortfolioIdSumAssetIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_ASSET_ID_DESC', + AssetTransactionsByToPortfolioIdSumBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_BLOCK_RANGE_ASC', + AssetTransactionsByToPortfolioIdSumBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_BLOCK_RANGE_DESC', + AssetTransactionsByToPortfolioIdSumCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_CREATED_AT_ASC', + AssetTransactionsByToPortfolioIdSumCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_CREATED_AT_DESC', + AssetTransactionsByToPortfolioIdSumCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_CREATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdSumCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_CREATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdSumDatetimeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_DATETIME_ASC', + AssetTransactionsByToPortfolioIdSumDatetimeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_DATETIME_DESC', + AssetTransactionsByToPortfolioIdSumEventIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_EVENT_IDX_ASC', + AssetTransactionsByToPortfolioIdSumEventIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_EVENT_IDX_DESC', + AssetTransactionsByToPortfolioIdSumEventIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_EVENT_ID_ASC', + AssetTransactionsByToPortfolioIdSumEventIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_EVENT_ID_DESC', + AssetTransactionsByToPortfolioIdSumExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_EXTRINSIC_IDX_ASC', + AssetTransactionsByToPortfolioIdSumExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_EXTRINSIC_IDX_DESC', + AssetTransactionsByToPortfolioIdSumFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdSumFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdSumFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_FUNDING_ROUND_ASC', + AssetTransactionsByToPortfolioIdSumFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_FUNDING_ROUND_DESC', + AssetTransactionsByToPortfolioIdSumIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_ID_ASC', + AssetTransactionsByToPortfolioIdSumIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_ID_DESC', + AssetTransactionsByToPortfolioIdSumInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_INSTRUCTION_ID_ASC', + AssetTransactionsByToPortfolioIdSumInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_INSTRUCTION_ID_DESC', + AssetTransactionsByToPortfolioIdSumInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_INSTRUCTION_MEMO_ASC', + AssetTransactionsByToPortfolioIdSumInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_INSTRUCTION_MEMO_DESC', + AssetTransactionsByToPortfolioIdSumNftIdsAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_NFT_IDS_ASC', + AssetTransactionsByToPortfolioIdSumNftIdsDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_NFT_IDS_DESC', + AssetTransactionsByToPortfolioIdSumToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdSumToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdSumUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdSumUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_SUM_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationAmountAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_AMOUNT_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationAmountDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_AMOUNT_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationAssetIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationAssetIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationDatetimeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_DATETIME_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationDatetimeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_DATETIME_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationEventIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_EVENT_IDX_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationEventIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_EVENT_IDX_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationEventIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_EVENT_ID_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationEventIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_EVENT_ID_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_EXTRINSIC_IDX_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_FUNDING_ROUND_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_FUNDING_ROUND_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_ID_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_ID_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_ID_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_ID_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_INSTRUCTION_MEMO_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationNftIdsAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationNftIdsDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdVariancePopulationUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdVariancePopulationUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleAmountAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleAmountDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleAssetIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleAssetIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleBlockRangeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleBlockRangeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleCreatedAtAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleCreatedAtDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleCreatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleCreatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleDatetimeAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_DATETIME_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleDatetimeDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_DATETIME_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleEventIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_EVENT_IDX_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleEventIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_EVENT_IDX_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleEventIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_EVENT_ID_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleEventIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_EVENT_ID_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleExtrinsicIdxAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleExtrinsicIdxDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_EXTRINSIC_IDX_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleFromPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleFromPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_FROM_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleFundingRoundAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_FUNDING_ROUND_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleFundingRoundDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_FUNDING_ROUND_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleInstructionIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleInstructionIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_ID_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleInstructionMemoAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleInstructionMemoDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_INSTRUCTION_MEMO_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleNftIdsAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleNftIdsDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleToPortfolioIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleToPortfolioIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_TO_PORTFOLIO_ID_DESC', + AssetTransactionsByToPortfolioIdVarianceSampleUpdatedBlockIdAsc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + AssetTransactionsByToPortfolioIdVarianceSampleUpdatedBlockIdDesc = 'ASSET_TRANSACTIONS_BY_TO_PORTFOLIO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + CustodianIdAsc = 'CUSTODIAN_ID_ASC', + CustodianIdDesc = 'CUSTODIAN_ID_DESC', + DeletedAtAsc = 'DELETED_AT_ASC', + DeletedAtDesc = 'DELETED_AT_DESC', + DistributionsAverageAmountAsc = 'DISTRIBUTIONS_AVERAGE_AMOUNT_ASC', + DistributionsAverageAmountDesc = 'DISTRIBUTIONS_AVERAGE_AMOUNT_DESC', + DistributionsAverageAssetIdAsc = 'DISTRIBUTIONS_AVERAGE_ASSET_ID_ASC', + DistributionsAverageAssetIdDesc = 'DISTRIBUTIONS_AVERAGE_ASSET_ID_DESC', + DistributionsAverageBlockRangeAsc = 'DISTRIBUTIONS_AVERAGE_BLOCK_RANGE_ASC', + DistributionsAverageBlockRangeDesc = 'DISTRIBUTIONS_AVERAGE_BLOCK_RANGE_DESC', + DistributionsAverageCreatedAtAsc = 'DISTRIBUTIONS_AVERAGE_CREATED_AT_ASC', + DistributionsAverageCreatedAtDesc = 'DISTRIBUTIONS_AVERAGE_CREATED_AT_DESC', + DistributionsAverageCreatedBlockIdAsc = 'DISTRIBUTIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + DistributionsAverageCreatedBlockIdDesc = 'DISTRIBUTIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + DistributionsAverageCurrencyAsc = 'DISTRIBUTIONS_AVERAGE_CURRENCY_ASC', + DistributionsAverageCurrencyDesc = 'DISTRIBUTIONS_AVERAGE_CURRENCY_DESC', + DistributionsAverageExpiresAtAsc = 'DISTRIBUTIONS_AVERAGE_EXPIRES_AT_ASC', + DistributionsAverageExpiresAtDesc = 'DISTRIBUTIONS_AVERAGE_EXPIRES_AT_DESC', + DistributionsAverageIdentityIdAsc = 'DISTRIBUTIONS_AVERAGE_IDENTITY_ID_ASC', + DistributionsAverageIdentityIdDesc = 'DISTRIBUTIONS_AVERAGE_IDENTITY_ID_DESC', + DistributionsAverageIdAsc = 'DISTRIBUTIONS_AVERAGE_ID_ASC', + DistributionsAverageIdDesc = 'DISTRIBUTIONS_AVERAGE_ID_DESC', + DistributionsAverageLocalIdAsc = 'DISTRIBUTIONS_AVERAGE_LOCAL_ID_ASC', + DistributionsAverageLocalIdDesc = 'DISTRIBUTIONS_AVERAGE_LOCAL_ID_DESC', + DistributionsAveragePaymentAtAsc = 'DISTRIBUTIONS_AVERAGE_PAYMENT_AT_ASC', + DistributionsAveragePaymentAtDesc = 'DISTRIBUTIONS_AVERAGE_PAYMENT_AT_DESC', + DistributionsAveragePerShareAsc = 'DISTRIBUTIONS_AVERAGE_PER_SHARE_ASC', + DistributionsAveragePerShareDesc = 'DISTRIBUTIONS_AVERAGE_PER_SHARE_DESC', + DistributionsAveragePortfolioIdAsc = 'DISTRIBUTIONS_AVERAGE_PORTFOLIO_ID_ASC', + DistributionsAveragePortfolioIdDesc = 'DISTRIBUTIONS_AVERAGE_PORTFOLIO_ID_DESC', + DistributionsAverageRemainingAsc = 'DISTRIBUTIONS_AVERAGE_REMAINING_ASC', + DistributionsAverageRemainingDesc = 'DISTRIBUTIONS_AVERAGE_REMAINING_DESC', + DistributionsAverageTaxesAsc = 'DISTRIBUTIONS_AVERAGE_TAXES_ASC', + DistributionsAverageTaxesDesc = 'DISTRIBUTIONS_AVERAGE_TAXES_DESC', + DistributionsAverageUpdatedBlockIdAsc = 'DISTRIBUTIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + DistributionsAverageUpdatedBlockIdDesc = 'DISTRIBUTIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + DistributionsCountAsc = 'DISTRIBUTIONS_COUNT_ASC', + DistributionsCountDesc = 'DISTRIBUTIONS_COUNT_DESC', + DistributionsDistinctCountAmountAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_AMOUNT_ASC', + DistributionsDistinctCountAmountDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_AMOUNT_DESC', + DistributionsDistinctCountAssetIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_ASSET_ID_ASC', + DistributionsDistinctCountAssetIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_ASSET_ID_DESC', + DistributionsDistinctCountBlockRangeAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + DistributionsDistinctCountBlockRangeDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + DistributionsDistinctCountCreatedAtAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_AT_ASC', + DistributionsDistinctCountCreatedAtDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_AT_DESC', + DistributionsDistinctCountCreatedBlockIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + DistributionsDistinctCountCreatedBlockIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + DistributionsDistinctCountCurrencyAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_CURRENCY_ASC', + DistributionsDistinctCountCurrencyDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_CURRENCY_DESC', + DistributionsDistinctCountExpiresAtAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_EXPIRES_AT_ASC', + DistributionsDistinctCountExpiresAtDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_EXPIRES_AT_DESC', + DistributionsDistinctCountIdentityIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_IDENTITY_ID_ASC', + DistributionsDistinctCountIdentityIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_IDENTITY_ID_DESC', + DistributionsDistinctCountIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_ID_ASC', + DistributionsDistinctCountIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_ID_DESC', + DistributionsDistinctCountLocalIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_LOCAL_ID_ASC', + DistributionsDistinctCountLocalIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_LOCAL_ID_DESC', + DistributionsDistinctCountPaymentAtAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_PAYMENT_AT_ASC', + DistributionsDistinctCountPaymentAtDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_PAYMENT_AT_DESC', + DistributionsDistinctCountPerShareAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_PER_SHARE_ASC', + DistributionsDistinctCountPerShareDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_PER_SHARE_DESC', + DistributionsDistinctCountPortfolioIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_PORTFOLIO_ID_ASC', + DistributionsDistinctCountPortfolioIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_PORTFOLIO_ID_DESC', + DistributionsDistinctCountRemainingAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_REMAINING_ASC', + DistributionsDistinctCountRemainingDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_REMAINING_DESC', + DistributionsDistinctCountTaxesAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_TAXES_ASC', + DistributionsDistinctCountTaxesDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_TAXES_DESC', + DistributionsDistinctCountUpdatedBlockIdAsc = 'DISTRIBUTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + DistributionsDistinctCountUpdatedBlockIdDesc = 'DISTRIBUTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + DistributionsMaxAmountAsc = 'DISTRIBUTIONS_MAX_AMOUNT_ASC', + DistributionsMaxAmountDesc = 'DISTRIBUTIONS_MAX_AMOUNT_DESC', + DistributionsMaxAssetIdAsc = 'DISTRIBUTIONS_MAX_ASSET_ID_ASC', + DistributionsMaxAssetIdDesc = 'DISTRIBUTIONS_MAX_ASSET_ID_DESC', + DistributionsMaxBlockRangeAsc = 'DISTRIBUTIONS_MAX_BLOCK_RANGE_ASC', + DistributionsMaxBlockRangeDesc = 'DISTRIBUTIONS_MAX_BLOCK_RANGE_DESC', + DistributionsMaxCreatedAtAsc = 'DISTRIBUTIONS_MAX_CREATED_AT_ASC', + DistributionsMaxCreatedAtDesc = 'DISTRIBUTIONS_MAX_CREATED_AT_DESC', + DistributionsMaxCreatedBlockIdAsc = 'DISTRIBUTIONS_MAX_CREATED_BLOCK_ID_ASC', + DistributionsMaxCreatedBlockIdDesc = 'DISTRIBUTIONS_MAX_CREATED_BLOCK_ID_DESC', + DistributionsMaxCurrencyAsc = 'DISTRIBUTIONS_MAX_CURRENCY_ASC', + DistributionsMaxCurrencyDesc = 'DISTRIBUTIONS_MAX_CURRENCY_DESC', + DistributionsMaxExpiresAtAsc = 'DISTRIBUTIONS_MAX_EXPIRES_AT_ASC', + DistributionsMaxExpiresAtDesc = 'DISTRIBUTIONS_MAX_EXPIRES_AT_DESC', + DistributionsMaxIdentityIdAsc = 'DISTRIBUTIONS_MAX_IDENTITY_ID_ASC', + DistributionsMaxIdentityIdDesc = 'DISTRIBUTIONS_MAX_IDENTITY_ID_DESC', + DistributionsMaxIdAsc = 'DISTRIBUTIONS_MAX_ID_ASC', + DistributionsMaxIdDesc = 'DISTRIBUTIONS_MAX_ID_DESC', + DistributionsMaxLocalIdAsc = 'DISTRIBUTIONS_MAX_LOCAL_ID_ASC', + DistributionsMaxLocalIdDesc = 'DISTRIBUTIONS_MAX_LOCAL_ID_DESC', + DistributionsMaxPaymentAtAsc = 'DISTRIBUTIONS_MAX_PAYMENT_AT_ASC', + DistributionsMaxPaymentAtDesc = 'DISTRIBUTIONS_MAX_PAYMENT_AT_DESC', + DistributionsMaxPerShareAsc = 'DISTRIBUTIONS_MAX_PER_SHARE_ASC', + DistributionsMaxPerShareDesc = 'DISTRIBUTIONS_MAX_PER_SHARE_DESC', + DistributionsMaxPortfolioIdAsc = 'DISTRIBUTIONS_MAX_PORTFOLIO_ID_ASC', + DistributionsMaxPortfolioIdDesc = 'DISTRIBUTIONS_MAX_PORTFOLIO_ID_DESC', + DistributionsMaxRemainingAsc = 'DISTRIBUTIONS_MAX_REMAINING_ASC', + DistributionsMaxRemainingDesc = 'DISTRIBUTIONS_MAX_REMAINING_DESC', + DistributionsMaxTaxesAsc = 'DISTRIBUTIONS_MAX_TAXES_ASC', + DistributionsMaxTaxesDesc = 'DISTRIBUTIONS_MAX_TAXES_DESC', + DistributionsMaxUpdatedBlockIdAsc = 'DISTRIBUTIONS_MAX_UPDATED_BLOCK_ID_ASC', + DistributionsMaxUpdatedBlockIdDesc = 'DISTRIBUTIONS_MAX_UPDATED_BLOCK_ID_DESC', + DistributionsMinAmountAsc = 'DISTRIBUTIONS_MIN_AMOUNT_ASC', + DistributionsMinAmountDesc = 'DISTRIBUTIONS_MIN_AMOUNT_DESC', + DistributionsMinAssetIdAsc = 'DISTRIBUTIONS_MIN_ASSET_ID_ASC', + DistributionsMinAssetIdDesc = 'DISTRIBUTIONS_MIN_ASSET_ID_DESC', + DistributionsMinBlockRangeAsc = 'DISTRIBUTIONS_MIN_BLOCK_RANGE_ASC', + DistributionsMinBlockRangeDesc = 'DISTRIBUTIONS_MIN_BLOCK_RANGE_DESC', + DistributionsMinCreatedAtAsc = 'DISTRIBUTIONS_MIN_CREATED_AT_ASC', + DistributionsMinCreatedAtDesc = 'DISTRIBUTIONS_MIN_CREATED_AT_DESC', + DistributionsMinCreatedBlockIdAsc = 'DISTRIBUTIONS_MIN_CREATED_BLOCK_ID_ASC', + DistributionsMinCreatedBlockIdDesc = 'DISTRIBUTIONS_MIN_CREATED_BLOCK_ID_DESC', + DistributionsMinCurrencyAsc = 'DISTRIBUTIONS_MIN_CURRENCY_ASC', + DistributionsMinCurrencyDesc = 'DISTRIBUTIONS_MIN_CURRENCY_DESC', + DistributionsMinExpiresAtAsc = 'DISTRIBUTIONS_MIN_EXPIRES_AT_ASC', + DistributionsMinExpiresAtDesc = 'DISTRIBUTIONS_MIN_EXPIRES_AT_DESC', + DistributionsMinIdentityIdAsc = 'DISTRIBUTIONS_MIN_IDENTITY_ID_ASC', + DistributionsMinIdentityIdDesc = 'DISTRIBUTIONS_MIN_IDENTITY_ID_DESC', + DistributionsMinIdAsc = 'DISTRIBUTIONS_MIN_ID_ASC', + DistributionsMinIdDesc = 'DISTRIBUTIONS_MIN_ID_DESC', + DistributionsMinLocalIdAsc = 'DISTRIBUTIONS_MIN_LOCAL_ID_ASC', + DistributionsMinLocalIdDesc = 'DISTRIBUTIONS_MIN_LOCAL_ID_DESC', + DistributionsMinPaymentAtAsc = 'DISTRIBUTIONS_MIN_PAYMENT_AT_ASC', + DistributionsMinPaymentAtDesc = 'DISTRIBUTIONS_MIN_PAYMENT_AT_DESC', + DistributionsMinPerShareAsc = 'DISTRIBUTIONS_MIN_PER_SHARE_ASC', + DistributionsMinPerShareDesc = 'DISTRIBUTIONS_MIN_PER_SHARE_DESC', + DistributionsMinPortfolioIdAsc = 'DISTRIBUTIONS_MIN_PORTFOLIO_ID_ASC', + DistributionsMinPortfolioIdDesc = 'DISTRIBUTIONS_MIN_PORTFOLIO_ID_DESC', + DistributionsMinRemainingAsc = 'DISTRIBUTIONS_MIN_REMAINING_ASC', + DistributionsMinRemainingDesc = 'DISTRIBUTIONS_MIN_REMAINING_DESC', + DistributionsMinTaxesAsc = 'DISTRIBUTIONS_MIN_TAXES_ASC', + DistributionsMinTaxesDesc = 'DISTRIBUTIONS_MIN_TAXES_DESC', + DistributionsMinUpdatedBlockIdAsc = 'DISTRIBUTIONS_MIN_UPDATED_BLOCK_ID_ASC', + DistributionsMinUpdatedBlockIdDesc = 'DISTRIBUTIONS_MIN_UPDATED_BLOCK_ID_DESC', + DistributionsStddevPopulationAmountAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_AMOUNT_ASC', + DistributionsStddevPopulationAmountDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_AMOUNT_DESC', + DistributionsStddevPopulationAssetIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_ASSET_ID_ASC', + DistributionsStddevPopulationAssetIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_ASSET_ID_DESC', + DistributionsStddevPopulationBlockRangeAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + DistributionsStddevPopulationBlockRangeDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + DistributionsStddevPopulationCreatedAtAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_AT_ASC', + DistributionsStddevPopulationCreatedAtDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_AT_DESC', + DistributionsStddevPopulationCreatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionsStddevPopulationCreatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionsStddevPopulationCurrencyAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_CURRENCY_ASC', + DistributionsStddevPopulationCurrencyDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_CURRENCY_DESC', + DistributionsStddevPopulationExpiresAtAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_EXPIRES_AT_ASC', + DistributionsStddevPopulationExpiresAtDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_EXPIRES_AT_DESC', + DistributionsStddevPopulationIdentityIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_IDENTITY_ID_ASC', + DistributionsStddevPopulationIdentityIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_IDENTITY_ID_DESC', + DistributionsStddevPopulationIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_ID_ASC', + DistributionsStddevPopulationIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_ID_DESC', + DistributionsStddevPopulationLocalIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_LOCAL_ID_ASC', + DistributionsStddevPopulationLocalIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_LOCAL_ID_DESC', + DistributionsStddevPopulationPaymentAtAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_PAYMENT_AT_ASC', + DistributionsStddevPopulationPaymentAtDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_PAYMENT_AT_DESC', + DistributionsStddevPopulationPerShareAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_PER_SHARE_ASC', + DistributionsStddevPopulationPerShareDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_PER_SHARE_DESC', + DistributionsStddevPopulationPortfolioIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_PORTFOLIO_ID_ASC', + DistributionsStddevPopulationPortfolioIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_PORTFOLIO_ID_DESC', + DistributionsStddevPopulationRemainingAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_REMAINING_ASC', + DistributionsStddevPopulationRemainingDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_REMAINING_DESC', + DistributionsStddevPopulationTaxesAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_TAXES_ASC', + DistributionsStddevPopulationTaxesDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_TAXES_DESC', + DistributionsStddevPopulationUpdatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionsStddevPopulationUpdatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionsStddevSampleAmountAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_AMOUNT_ASC', + DistributionsStddevSampleAmountDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_AMOUNT_DESC', + DistributionsStddevSampleAssetIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ASSET_ID_ASC', + DistributionsStddevSampleAssetIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ASSET_ID_DESC', + DistributionsStddevSampleBlockRangeAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + DistributionsStddevSampleBlockRangeDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + DistributionsStddevSampleCreatedAtAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + DistributionsStddevSampleCreatedAtDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + DistributionsStddevSampleCreatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionsStddevSampleCreatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionsStddevSampleCurrencyAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CURRENCY_ASC', + DistributionsStddevSampleCurrencyDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_CURRENCY_DESC', + DistributionsStddevSampleExpiresAtAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_EXPIRES_AT_ASC', + DistributionsStddevSampleExpiresAtDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_EXPIRES_AT_DESC', + DistributionsStddevSampleIdentityIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_IDENTITY_ID_ASC', + DistributionsStddevSampleIdentityIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_IDENTITY_ID_DESC', + DistributionsStddevSampleIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ID_ASC', + DistributionsStddevSampleIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_ID_DESC', + DistributionsStddevSampleLocalIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_LOCAL_ID_ASC', + DistributionsStddevSampleLocalIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_LOCAL_ID_DESC', + DistributionsStddevSamplePaymentAtAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PAYMENT_AT_ASC', + DistributionsStddevSamplePaymentAtDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PAYMENT_AT_DESC', + DistributionsStddevSamplePerShareAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PER_SHARE_ASC', + DistributionsStddevSamplePerShareDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PER_SHARE_DESC', + DistributionsStddevSamplePortfolioIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PORTFOLIO_ID_ASC', + DistributionsStddevSamplePortfolioIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_PORTFOLIO_ID_DESC', + DistributionsStddevSampleRemainingAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_REMAINING_ASC', + DistributionsStddevSampleRemainingDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_REMAINING_DESC', + DistributionsStddevSampleTaxesAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_TAXES_ASC', + DistributionsStddevSampleTaxesDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_TAXES_DESC', + DistributionsStddevSampleUpdatedBlockIdAsc = 'DISTRIBUTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionsStddevSampleUpdatedBlockIdDesc = 'DISTRIBUTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + DistributionsSumAmountAsc = 'DISTRIBUTIONS_SUM_AMOUNT_ASC', + DistributionsSumAmountDesc = 'DISTRIBUTIONS_SUM_AMOUNT_DESC', + DistributionsSumAssetIdAsc = 'DISTRIBUTIONS_SUM_ASSET_ID_ASC', + DistributionsSumAssetIdDesc = 'DISTRIBUTIONS_SUM_ASSET_ID_DESC', + DistributionsSumBlockRangeAsc = 'DISTRIBUTIONS_SUM_BLOCK_RANGE_ASC', + DistributionsSumBlockRangeDesc = 'DISTRIBUTIONS_SUM_BLOCK_RANGE_DESC', + DistributionsSumCreatedAtAsc = 'DISTRIBUTIONS_SUM_CREATED_AT_ASC', + DistributionsSumCreatedAtDesc = 'DISTRIBUTIONS_SUM_CREATED_AT_DESC', + DistributionsSumCreatedBlockIdAsc = 'DISTRIBUTIONS_SUM_CREATED_BLOCK_ID_ASC', + DistributionsSumCreatedBlockIdDesc = 'DISTRIBUTIONS_SUM_CREATED_BLOCK_ID_DESC', + DistributionsSumCurrencyAsc = 'DISTRIBUTIONS_SUM_CURRENCY_ASC', + DistributionsSumCurrencyDesc = 'DISTRIBUTIONS_SUM_CURRENCY_DESC', + DistributionsSumExpiresAtAsc = 'DISTRIBUTIONS_SUM_EXPIRES_AT_ASC', + DistributionsSumExpiresAtDesc = 'DISTRIBUTIONS_SUM_EXPIRES_AT_DESC', + DistributionsSumIdentityIdAsc = 'DISTRIBUTIONS_SUM_IDENTITY_ID_ASC', + DistributionsSumIdentityIdDesc = 'DISTRIBUTIONS_SUM_IDENTITY_ID_DESC', + DistributionsSumIdAsc = 'DISTRIBUTIONS_SUM_ID_ASC', + DistributionsSumIdDesc = 'DISTRIBUTIONS_SUM_ID_DESC', + DistributionsSumLocalIdAsc = 'DISTRIBUTIONS_SUM_LOCAL_ID_ASC', + DistributionsSumLocalIdDesc = 'DISTRIBUTIONS_SUM_LOCAL_ID_DESC', + DistributionsSumPaymentAtAsc = 'DISTRIBUTIONS_SUM_PAYMENT_AT_ASC', + DistributionsSumPaymentAtDesc = 'DISTRIBUTIONS_SUM_PAYMENT_AT_DESC', + DistributionsSumPerShareAsc = 'DISTRIBUTIONS_SUM_PER_SHARE_ASC', + DistributionsSumPerShareDesc = 'DISTRIBUTIONS_SUM_PER_SHARE_DESC', + DistributionsSumPortfolioIdAsc = 'DISTRIBUTIONS_SUM_PORTFOLIO_ID_ASC', + DistributionsSumPortfolioIdDesc = 'DISTRIBUTIONS_SUM_PORTFOLIO_ID_DESC', + DistributionsSumRemainingAsc = 'DISTRIBUTIONS_SUM_REMAINING_ASC', + DistributionsSumRemainingDesc = 'DISTRIBUTIONS_SUM_REMAINING_DESC', + DistributionsSumTaxesAsc = 'DISTRIBUTIONS_SUM_TAXES_ASC', + DistributionsSumTaxesDesc = 'DISTRIBUTIONS_SUM_TAXES_DESC', + DistributionsSumUpdatedBlockIdAsc = 'DISTRIBUTIONS_SUM_UPDATED_BLOCK_ID_ASC', + DistributionsSumUpdatedBlockIdDesc = 'DISTRIBUTIONS_SUM_UPDATED_BLOCK_ID_DESC', + DistributionsVariancePopulationAmountAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_AMOUNT_ASC', + DistributionsVariancePopulationAmountDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_AMOUNT_DESC', + DistributionsVariancePopulationAssetIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ASSET_ID_ASC', + DistributionsVariancePopulationAssetIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ASSET_ID_DESC', + DistributionsVariancePopulationBlockRangeAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + DistributionsVariancePopulationBlockRangeDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + DistributionsVariancePopulationCreatedAtAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + DistributionsVariancePopulationCreatedAtDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + DistributionsVariancePopulationCreatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + DistributionsVariancePopulationCreatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + DistributionsVariancePopulationCurrencyAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CURRENCY_ASC', + DistributionsVariancePopulationCurrencyDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_CURRENCY_DESC', + DistributionsVariancePopulationExpiresAtAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_EXPIRES_AT_ASC', + DistributionsVariancePopulationExpiresAtDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_EXPIRES_AT_DESC', + DistributionsVariancePopulationIdentityIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_IDENTITY_ID_ASC', + DistributionsVariancePopulationIdentityIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_IDENTITY_ID_DESC', + DistributionsVariancePopulationIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ID_ASC', + DistributionsVariancePopulationIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_ID_DESC', + DistributionsVariancePopulationLocalIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_LOCAL_ID_ASC', + DistributionsVariancePopulationLocalIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_LOCAL_ID_DESC', + DistributionsVariancePopulationPaymentAtAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PAYMENT_AT_ASC', + DistributionsVariancePopulationPaymentAtDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PAYMENT_AT_DESC', + DistributionsVariancePopulationPerShareAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PER_SHARE_ASC', + DistributionsVariancePopulationPerShareDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PER_SHARE_DESC', + DistributionsVariancePopulationPortfolioIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PORTFOLIO_ID_ASC', + DistributionsVariancePopulationPortfolioIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_PORTFOLIO_ID_DESC', + DistributionsVariancePopulationRemainingAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_REMAINING_ASC', + DistributionsVariancePopulationRemainingDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_REMAINING_DESC', + DistributionsVariancePopulationTaxesAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_TAXES_ASC', + DistributionsVariancePopulationTaxesDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_TAXES_DESC', + DistributionsVariancePopulationUpdatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + DistributionsVariancePopulationUpdatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + DistributionsVarianceSampleAmountAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_AMOUNT_ASC', + DistributionsVarianceSampleAmountDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_AMOUNT_DESC', + DistributionsVarianceSampleAssetIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ASSET_ID_ASC', + DistributionsVarianceSampleAssetIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ASSET_ID_DESC', + DistributionsVarianceSampleBlockRangeAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + DistributionsVarianceSampleBlockRangeDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + DistributionsVarianceSampleCreatedAtAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + DistributionsVarianceSampleCreatedAtDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + DistributionsVarianceSampleCreatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + DistributionsVarianceSampleCreatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + DistributionsVarianceSampleCurrencyAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CURRENCY_ASC', + DistributionsVarianceSampleCurrencyDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_CURRENCY_DESC', + DistributionsVarianceSampleExpiresAtAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_EXPIRES_AT_ASC', + DistributionsVarianceSampleExpiresAtDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_EXPIRES_AT_DESC', + DistributionsVarianceSampleIdentityIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_IDENTITY_ID_ASC', + DistributionsVarianceSampleIdentityIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_IDENTITY_ID_DESC', + DistributionsVarianceSampleIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ID_ASC', + DistributionsVarianceSampleIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_ID_DESC', + DistributionsVarianceSampleLocalIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_LOCAL_ID_ASC', + DistributionsVarianceSampleLocalIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_LOCAL_ID_DESC', + DistributionsVarianceSamplePaymentAtAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PAYMENT_AT_ASC', + DistributionsVarianceSamplePaymentAtDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PAYMENT_AT_DESC', + DistributionsVarianceSamplePerShareAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PER_SHARE_ASC', + DistributionsVarianceSamplePerShareDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PER_SHARE_DESC', + DistributionsVarianceSamplePortfolioIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PORTFOLIO_ID_ASC', + DistributionsVarianceSamplePortfolioIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_PORTFOLIO_ID_DESC', + DistributionsVarianceSampleRemainingAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_REMAINING_ASC', + DistributionsVarianceSampleRemainingDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_REMAINING_DESC', + DistributionsVarianceSampleTaxesAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_TAXES_ASC', + DistributionsVarianceSampleTaxesDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_TAXES_DESC', + DistributionsVarianceSampleUpdatedBlockIdAsc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + DistributionsVarianceSampleUpdatedBlockIdDesc = 'DISTRIBUTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + NameAsc = 'NAME_ASC', + NameDesc = 'NAME_DESC', + Natural = 'NATURAL', + NumberAsc = 'NUMBER_ASC', + NumberDesc = 'NUMBER_DESC', + PortfolioMovementsByFromIdAverageAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_ADDRESS_ASC', + PortfolioMovementsByFromIdAverageAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_ADDRESS_DESC', + PortfolioMovementsByFromIdAverageAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_AMOUNT_ASC', + PortfolioMovementsByFromIdAverageAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_AMOUNT_DESC', + PortfolioMovementsByFromIdAverageAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_ASSET_ID_ASC', + PortfolioMovementsByFromIdAverageAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_ASSET_ID_DESC', + PortfolioMovementsByFromIdAverageBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_BLOCK_RANGE_ASC', + PortfolioMovementsByFromIdAverageBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_BLOCK_RANGE_DESC', + PortfolioMovementsByFromIdAverageCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_CREATED_AT_ASC', + PortfolioMovementsByFromIdAverageCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_CREATED_AT_DESC', + PortfolioMovementsByFromIdAverageCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdAverageCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdAverageFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_FROM_ID_ASC', + PortfolioMovementsByFromIdAverageFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_FROM_ID_DESC', + PortfolioMovementsByFromIdAverageIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_ID_ASC', + PortfolioMovementsByFromIdAverageIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_ID_DESC', + PortfolioMovementsByFromIdAverageMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_MEMO_ASC', + PortfolioMovementsByFromIdAverageMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_MEMO_DESC', + PortfolioMovementsByFromIdAverageNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_NFT_IDS_ASC', + PortfolioMovementsByFromIdAverageNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_NFT_IDS_DESC', + PortfolioMovementsByFromIdAverageToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_TO_ID_ASC', + PortfolioMovementsByFromIdAverageToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_TO_ID_DESC', + PortfolioMovementsByFromIdAverageTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_TYPE_ASC', + PortfolioMovementsByFromIdAverageTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_TYPE_DESC', + PortfolioMovementsByFromIdAverageUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdAverageUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdCountAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_COUNT_ASC', + PortfolioMovementsByFromIdCountDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_COUNT_DESC', + PortfolioMovementsByFromIdDistinctCountAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_ADDRESS_ASC', + PortfolioMovementsByFromIdDistinctCountAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_ADDRESS_DESC', + PortfolioMovementsByFromIdDistinctCountAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_AMOUNT_ASC', + PortfolioMovementsByFromIdDistinctCountAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_AMOUNT_DESC', + PortfolioMovementsByFromIdDistinctCountAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_ASSET_ID_ASC', + PortfolioMovementsByFromIdDistinctCountAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_ASSET_ID_DESC', + PortfolioMovementsByFromIdDistinctCountBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PortfolioMovementsByFromIdDistinctCountBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PortfolioMovementsByFromIdDistinctCountCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_CREATED_AT_ASC', + PortfolioMovementsByFromIdDistinctCountCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_CREATED_AT_DESC', + PortfolioMovementsByFromIdDistinctCountCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdDistinctCountCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdDistinctCountFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_ASC', + PortfolioMovementsByFromIdDistinctCountFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_FROM_ID_DESC', + PortfolioMovementsByFromIdDistinctCountIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_ID_ASC', + PortfolioMovementsByFromIdDistinctCountIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_ID_DESC', + PortfolioMovementsByFromIdDistinctCountMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_MEMO_ASC', + PortfolioMovementsByFromIdDistinctCountMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_MEMO_DESC', + PortfolioMovementsByFromIdDistinctCountNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_NFT_IDS_ASC', + PortfolioMovementsByFromIdDistinctCountNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_NFT_IDS_DESC', + PortfolioMovementsByFromIdDistinctCountToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_TO_ID_ASC', + PortfolioMovementsByFromIdDistinctCountToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_TO_ID_DESC', + PortfolioMovementsByFromIdDistinctCountTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_TYPE_ASC', + PortfolioMovementsByFromIdDistinctCountTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_TYPE_DESC', + PortfolioMovementsByFromIdDistinctCountUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdDistinctCountUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdMaxAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_ADDRESS_ASC', + PortfolioMovementsByFromIdMaxAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_ADDRESS_DESC', + PortfolioMovementsByFromIdMaxAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_AMOUNT_ASC', + PortfolioMovementsByFromIdMaxAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_AMOUNT_DESC', + PortfolioMovementsByFromIdMaxAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_ASSET_ID_ASC', + PortfolioMovementsByFromIdMaxAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_ASSET_ID_DESC', + PortfolioMovementsByFromIdMaxBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_BLOCK_RANGE_ASC', + PortfolioMovementsByFromIdMaxBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_BLOCK_RANGE_DESC', + PortfolioMovementsByFromIdMaxCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_CREATED_AT_ASC', + PortfolioMovementsByFromIdMaxCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_CREATED_AT_DESC', + PortfolioMovementsByFromIdMaxCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdMaxCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdMaxFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_FROM_ID_ASC', + PortfolioMovementsByFromIdMaxFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_FROM_ID_DESC', + PortfolioMovementsByFromIdMaxIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_ID_ASC', + PortfolioMovementsByFromIdMaxIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_ID_DESC', + PortfolioMovementsByFromIdMaxMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_MEMO_ASC', + PortfolioMovementsByFromIdMaxMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_MEMO_DESC', + PortfolioMovementsByFromIdMaxNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_NFT_IDS_ASC', + PortfolioMovementsByFromIdMaxNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_NFT_IDS_DESC', + PortfolioMovementsByFromIdMaxToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_TO_ID_ASC', + PortfolioMovementsByFromIdMaxToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_TO_ID_DESC', + PortfolioMovementsByFromIdMaxTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_TYPE_ASC', + PortfolioMovementsByFromIdMaxTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_TYPE_DESC', + PortfolioMovementsByFromIdMaxUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdMaxUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MAX_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdMinAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_ADDRESS_ASC', + PortfolioMovementsByFromIdMinAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_ADDRESS_DESC', + PortfolioMovementsByFromIdMinAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_AMOUNT_ASC', + PortfolioMovementsByFromIdMinAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_AMOUNT_DESC', + PortfolioMovementsByFromIdMinAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_ASSET_ID_ASC', + PortfolioMovementsByFromIdMinAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_ASSET_ID_DESC', + PortfolioMovementsByFromIdMinBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_BLOCK_RANGE_ASC', + PortfolioMovementsByFromIdMinBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_BLOCK_RANGE_DESC', + PortfolioMovementsByFromIdMinCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_CREATED_AT_ASC', + PortfolioMovementsByFromIdMinCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_CREATED_AT_DESC', + PortfolioMovementsByFromIdMinCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdMinCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdMinFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_FROM_ID_ASC', + PortfolioMovementsByFromIdMinFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_FROM_ID_DESC', + PortfolioMovementsByFromIdMinIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_ID_ASC', + PortfolioMovementsByFromIdMinIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_ID_DESC', + PortfolioMovementsByFromIdMinMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_MEMO_ASC', + PortfolioMovementsByFromIdMinMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_MEMO_DESC', + PortfolioMovementsByFromIdMinNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_NFT_IDS_ASC', + PortfolioMovementsByFromIdMinNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_NFT_IDS_DESC', + PortfolioMovementsByFromIdMinToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_TO_ID_ASC', + PortfolioMovementsByFromIdMinToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_TO_ID_DESC', + PortfolioMovementsByFromIdMinTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_TYPE_ASC', + PortfolioMovementsByFromIdMinTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_TYPE_DESC', + PortfolioMovementsByFromIdMinUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdMinUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_MIN_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdStddevPopulationAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_ADDRESS_ASC', + PortfolioMovementsByFromIdStddevPopulationAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_ADDRESS_DESC', + PortfolioMovementsByFromIdStddevPopulationAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_AMOUNT_ASC', + PortfolioMovementsByFromIdStddevPopulationAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_AMOUNT_DESC', + PortfolioMovementsByFromIdStddevPopulationAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_ASSET_ID_ASC', + PortfolioMovementsByFromIdStddevPopulationAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_ASSET_ID_DESC', + PortfolioMovementsByFromIdStddevPopulationBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PortfolioMovementsByFromIdStddevPopulationBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PortfolioMovementsByFromIdStddevPopulationCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_CREATED_AT_ASC', + PortfolioMovementsByFromIdStddevPopulationCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_CREATED_AT_DESC', + PortfolioMovementsByFromIdStddevPopulationCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdStddevPopulationCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdStddevPopulationFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_ASC', + PortfolioMovementsByFromIdStddevPopulationFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_FROM_ID_DESC', + PortfolioMovementsByFromIdStddevPopulationIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_ID_ASC', + PortfolioMovementsByFromIdStddevPopulationIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_ID_DESC', + PortfolioMovementsByFromIdStddevPopulationMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_MEMO_ASC', + PortfolioMovementsByFromIdStddevPopulationMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_MEMO_DESC', + PortfolioMovementsByFromIdStddevPopulationNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_NFT_IDS_ASC', + PortfolioMovementsByFromIdStddevPopulationNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_NFT_IDS_DESC', + PortfolioMovementsByFromIdStddevPopulationToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_TO_ID_ASC', + PortfolioMovementsByFromIdStddevPopulationToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_TO_ID_DESC', + PortfolioMovementsByFromIdStddevPopulationTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_TYPE_ASC', + PortfolioMovementsByFromIdStddevPopulationTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_TYPE_DESC', + PortfolioMovementsByFromIdStddevPopulationUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdStddevPopulationUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdStddevSampleAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_ADDRESS_ASC', + PortfolioMovementsByFromIdStddevSampleAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_ADDRESS_DESC', + PortfolioMovementsByFromIdStddevSampleAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_AMOUNT_ASC', + PortfolioMovementsByFromIdStddevSampleAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_AMOUNT_DESC', + PortfolioMovementsByFromIdStddevSampleAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + PortfolioMovementsByFromIdStddevSampleAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + PortfolioMovementsByFromIdStddevSampleBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PortfolioMovementsByFromIdStddevSampleBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PortfolioMovementsByFromIdStddevSampleCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + PortfolioMovementsByFromIdStddevSampleCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + PortfolioMovementsByFromIdStddevSampleCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdStddevSampleCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdStddevSampleFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_ASC', + PortfolioMovementsByFromIdStddevSampleFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_FROM_ID_DESC', + PortfolioMovementsByFromIdStddevSampleIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_ID_ASC', + PortfolioMovementsByFromIdStddevSampleIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_ID_DESC', + PortfolioMovementsByFromIdStddevSampleMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_MEMO_ASC', + PortfolioMovementsByFromIdStddevSampleMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_MEMO_DESC', + PortfolioMovementsByFromIdStddevSampleNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + PortfolioMovementsByFromIdStddevSampleNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + PortfolioMovementsByFromIdStddevSampleToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_ASC', + PortfolioMovementsByFromIdStddevSampleToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_TO_ID_DESC', + PortfolioMovementsByFromIdStddevSampleTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_TYPE_ASC', + PortfolioMovementsByFromIdStddevSampleTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_TYPE_DESC', + PortfolioMovementsByFromIdStddevSampleUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdStddevSampleUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdSumAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_ADDRESS_ASC', + PortfolioMovementsByFromIdSumAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_ADDRESS_DESC', + PortfolioMovementsByFromIdSumAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_AMOUNT_ASC', + PortfolioMovementsByFromIdSumAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_AMOUNT_DESC', + PortfolioMovementsByFromIdSumAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_ASSET_ID_ASC', + PortfolioMovementsByFromIdSumAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_ASSET_ID_DESC', + PortfolioMovementsByFromIdSumBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_BLOCK_RANGE_ASC', + PortfolioMovementsByFromIdSumBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_BLOCK_RANGE_DESC', + PortfolioMovementsByFromIdSumCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_CREATED_AT_ASC', + PortfolioMovementsByFromIdSumCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_CREATED_AT_DESC', + PortfolioMovementsByFromIdSumCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdSumCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdSumFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_FROM_ID_ASC', + PortfolioMovementsByFromIdSumFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_FROM_ID_DESC', + PortfolioMovementsByFromIdSumIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_ID_ASC', + PortfolioMovementsByFromIdSumIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_ID_DESC', + PortfolioMovementsByFromIdSumMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_MEMO_ASC', + PortfolioMovementsByFromIdSumMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_MEMO_DESC', + PortfolioMovementsByFromIdSumNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_NFT_IDS_ASC', + PortfolioMovementsByFromIdSumNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_NFT_IDS_DESC', + PortfolioMovementsByFromIdSumToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_TO_ID_ASC', + PortfolioMovementsByFromIdSumToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_TO_ID_DESC', + PortfolioMovementsByFromIdSumTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_TYPE_ASC', + PortfolioMovementsByFromIdSumTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_TYPE_DESC', + PortfolioMovementsByFromIdSumUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdSumUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_SUM_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdVariancePopulationAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_ADDRESS_ASC', + PortfolioMovementsByFromIdVariancePopulationAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_ADDRESS_DESC', + PortfolioMovementsByFromIdVariancePopulationAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_AMOUNT_ASC', + PortfolioMovementsByFromIdVariancePopulationAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_AMOUNT_DESC', + PortfolioMovementsByFromIdVariancePopulationAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + PortfolioMovementsByFromIdVariancePopulationAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + PortfolioMovementsByFromIdVariancePopulationBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PortfolioMovementsByFromIdVariancePopulationBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PortfolioMovementsByFromIdVariancePopulationCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + PortfolioMovementsByFromIdVariancePopulationCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + PortfolioMovementsByFromIdVariancePopulationCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdVariancePopulationCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdVariancePopulationFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_ASC', + PortfolioMovementsByFromIdVariancePopulationFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_FROM_ID_DESC', + PortfolioMovementsByFromIdVariancePopulationIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_ID_ASC', + PortfolioMovementsByFromIdVariancePopulationIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_ID_DESC', + PortfolioMovementsByFromIdVariancePopulationMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_MEMO_ASC', + PortfolioMovementsByFromIdVariancePopulationMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_MEMO_DESC', + PortfolioMovementsByFromIdVariancePopulationNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + PortfolioMovementsByFromIdVariancePopulationNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + PortfolioMovementsByFromIdVariancePopulationToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_ASC', + PortfolioMovementsByFromIdVariancePopulationToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_TO_ID_DESC', + PortfolioMovementsByFromIdVariancePopulationTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_TYPE_ASC', + PortfolioMovementsByFromIdVariancePopulationTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_TYPE_DESC', + PortfolioMovementsByFromIdVariancePopulationUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdVariancePopulationUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdVarianceSampleAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + PortfolioMovementsByFromIdVarianceSampleAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + PortfolioMovementsByFromIdVarianceSampleAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + PortfolioMovementsByFromIdVarianceSampleAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + PortfolioMovementsByFromIdVarianceSampleAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + PortfolioMovementsByFromIdVarianceSampleAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + PortfolioMovementsByFromIdVarianceSampleBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PortfolioMovementsByFromIdVarianceSampleBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PortfolioMovementsByFromIdVarianceSampleCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + PortfolioMovementsByFromIdVarianceSampleCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + PortfolioMovementsByFromIdVarianceSampleCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdVarianceSampleCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByFromIdVarianceSampleFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + PortfolioMovementsByFromIdVarianceSampleFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + PortfolioMovementsByFromIdVarianceSampleIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_ID_ASC', + PortfolioMovementsByFromIdVarianceSampleIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_ID_DESC', + PortfolioMovementsByFromIdVarianceSampleMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_MEMO_ASC', + PortfolioMovementsByFromIdVarianceSampleMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_MEMO_DESC', + PortfolioMovementsByFromIdVarianceSampleNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + PortfolioMovementsByFromIdVarianceSampleNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + PortfolioMovementsByFromIdVarianceSampleToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_ASC', + PortfolioMovementsByFromIdVarianceSampleToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_TO_ID_DESC', + PortfolioMovementsByFromIdVarianceSampleTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_TYPE_ASC', + PortfolioMovementsByFromIdVarianceSampleTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_TYPE_DESC', + PortfolioMovementsByFromIdVarianceSampleUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByFromIdVarianceSampleUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_FROM_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdAverageAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_ADDRESS_ASC', + PortfolioMovementsByToIdAverageAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_ADDRESS_DESC', + PortfolioMovementsByToIdAverageAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_AMOUNT_ASC', + PortfolioMovementsByToIdAverageAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_AMOUNT_DESC', + PortfolioMovementsByToIdAverageAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_ASSET_ID_ASC', + PortfolioMovementsByToIdAverageAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_ASSET_ID_DESC', + PortfolioMovementsByToIdAverageBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_BLOCK_RANGE_ASC', + PortfolioMovementsByToIdAverageBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_BLOCK_RANGE_DESC', + PortfolioMovementsByToIdAverageCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_CREATED_AT_ASC', + PortfolioMovementsByToIdAverageCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_CREATED_AT_DESC', + PortfolioMovementsByToIdAverageCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdAverageCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdAverageFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_FROM_ID_ASC', + PortfolioMovementsByToIdAverageFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_FROM_ID_DESC', + PortfolioMovementsByToIdAverageIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_ID_ASC', + PortfolioMovementsByToIdAverageIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_ID_DESC', + PortfolioMovementsByToIdAverageMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_MEMO_ASC', + PortfolioMovementsByToIdAverageMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_MEMO_DESC', + PortfolioMovementsByToIdAverageNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_NFT_IDS_ASC', + PortfolioMovementsByToIdAverageNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_NFT_IDS_DESC', + PortfolioMovementsByToIdAverageToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_TO_ID_ASC', + PortfolioMovementsByToIdAverageToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_TO_ID_DESC', + PortfolioMovementsByToIdAverageTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_TYPE_ASC', + PortfolioMovementsByToIdAverageTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_TYPE_DESC', + PortfolioMovementsByToIdAverageUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdAverageUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdCountAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_COUNT_ASC', + PortfolioMovementsByToIdCountDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_COUNT_DESC', + PortfolioMovementsByToIdDistinctCountAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_ADDRESS_ASC', + PortfolioMovementsByToIdDistinctCountAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_ADDRESS_DESC', + PortfolioMovementsByToIdDistinctCountAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_AMOUNT_ASC', + PortfolioMovementsByToIdDistinctCountAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_AMOUNT_DESC', + PortfolioMovementsByToIdDistinctCountAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_ASSET_ID_ASC', + PortfolioMovementsByToIdDistinctCountAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_ASSET_ID_DESC', + PortfolioMovementsByToIdDistinctCountBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + PortfolioMovementsByToIdDistinctCountBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + PortfolioMovementsByToIdDistinctCountCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_CREATED_AT_ASC', + PortfolioMovementsByToIdDistinctCountCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_CREATED_AT_DESC', + PortfolioMovementsByToIdDistinctCountCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdDistinctCountCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdDistinctCountFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_FROM_ID_ASC', + PortfolioMovementsByToIdDistinctCountFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_FROM_ID_DESC', + PortfolioMovementsByToIdDistinctCountIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_ID_ASC', + PortfolioMovementsByToIdDistinctCountIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_ID_DESC', + PortfolioMovementsByToIdDistinctCountMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_MEMO_ASC', + PortfolioMovementsByToIdDistinctCountMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_MEMO_DESC', + PortfolioMovementsByToIdDistinctCountNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_NFT_IDS_ASC', + PortfolioMovementsByToIdDistinctCountNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_NFT_IDS_DESC', + PortfolioMovementsByToIdDistinctCountToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_TO_ID_ASC', + PortfolioMovementsByToIdDistinctCountToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_TO_ID_DESC', + PortfolioMovementsByToIdDistinctCountTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_TYPE_ASC', + PortfolioMovementsByToIdDistinctCountTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_TYPE_DESC', + PortfolioMovementsByToIdDistinctCountUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdDistinctCountUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdMaxAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_ADDRESS_ASC', + PortfolioMovementsByToIdMaxAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_ADDRESS_DESC', + PortfolioMovementsByToIdMaxAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_AMOUNT_ASC', + PortfolioMovementsByToIdMaxAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_AMOUNT_DESC', + PortfolioMovementsByToIdMaxAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_ASSET_ID_ASC', + PortfolioMovementsByToIdMaxAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_ASSET_ID_DESC', + PortfolioMovementsByToIdMaxBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_BLOCK_RANGE_ASC', + PortfolioMovementsByToIdMaxBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_BLOCK_RANGE_DESC', + PortfolioMovementsByToIdMaxCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_CREATED_AT_ASC', + PortfolioMovementsByToIdMaxCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_CREATED_AT_DESC', + PortfolioMovementsByToIdMaxCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdMaxCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdMaxFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_FROM_ID_ASC', + PortfolioMovementsByToIdMaxFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_FROM_ID_DESC', + PortfolioMovementsByToIdMaxIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_ID_ASC', + PortfolioMovementsByToIdMaxIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_ID_DESC', + PortfolioMovementsByToIdMaxMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_MEMO_ASC', + PortfolioMovementsByToIdMaxMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_MEMO_DESC', + PortfolioMovementsByToIdMaxNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_NFT_IDS_ASC', + PortfolioMovementsByToIdMaxNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_NFT_IDS_DESC', + PortfolioMovementsByToIdMaxToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_TO_ID_ASC', + PortfolioMovementsByToIdMaxToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_TO_ID_DESC', + PortfolioMovementsByToIdMaxTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_TYPE_ASC', + PortfolioMovementsByToIdMaxTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_TYPE_DESC', + PortfolioMovementsByToIdMaxUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdMaxUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MAX_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdMinAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_ADDRESS_ASC', + PortfolioMovementsByToIdMinAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_ADDRESS_DESC', + PortfolioMovementsByToIdMinAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_AMOUNT_ASC', + PortfolioMovementsByToIdMinAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_AMOUNT_DESC', + PortfolioMovementsByToIdMinAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_ASSET_ID_ASC', + PortfolioMovementsByToIdMinAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_ASSET_ID_DESC', + PortfolioMovementsByToIdMinBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_BLOCK_RANGE_ASC', + PortfolioMovementsByToIdMinBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_BLOCK_RANGE_DESC', + PortfolioMovementsByToIdMinCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_CREATED_AT_ASC', + PortfolioMovementsByToIdMinCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_CREATED_AT_DESC', + PortfolioMovementsByToIdMinCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdMinCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdMinFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_FROM_ID_ASC', + PortfolioMovementsByToIdMinFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_FROM_ID_DESC', + PortfolioMovementsByToIdMinIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_ID_ASC', + PortfolioMovementsByToIdMinIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_ID_DESC', + PortfolioMovementsByToIdMinMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_MEMO_ASC', + PortfolioMovementsByToIdMinMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_MEMO_DESC', + PortfolioMovementsByToIdMinNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_NFT_IDS_ASC', + PortfolioMovementsByToIdMinNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_NFT_IDS_DESC', + PortfolioMovementsByToIdMinToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_TO_ID_ASC', + PortfolioMovementsByToIdMinToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_TO_ID_DESC', + PortfolioMovementsByToIdMinTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_TYPE_ASC', + PortfolioMovementsByToIdMinTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_TYPE_DESC', + PortfolioMovementsByToIdMinUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdMinUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_MIN_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdStddevPopulationAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_ADDRESS_ASC', + PortfolioMovementsByToIdStddevPopulationAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_ADDRESS_DESC', + PortfolioMovementsByToIdStddevPopulationAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_AMOUNT_ASC', + PortfolioMovementsByToIdStddevPopulationAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_AMOUNT_DESC', + PortfolioMovementsByToIdStddevPopulationAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_ASSET_ID_ASC', + PortfolioMovementsByToIdStddevPopulationAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_ASSET_ID_DESC', + PortfolioMovementsByToIdStddevPopulationBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + PortfolioMovementsByToIdStddevPopulationBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + PortfolioMovementsByToIdStddevPopulationCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_CREATED_AT_ASC', + PortfolioMovementsByToIdStddevPopulationCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_CREATED_AT_DESC', + PortfolioMovementsByToIdStddevPopulationCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdStddevPopulationCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdStddevPopulationFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_FROM_ID_ASC', + PortfolioMovementsByToIdStddevPopulationFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_FROM_ID_DESC', + PortfolioMovementsByToIdStddevPopulationIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_ID_ASC', + PortfolioMovementsByToIdStddevPopulationIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_ID_DESC', + PortfolioMovementsByToIdStddevPopulationMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_MEMO_ASC', + PortfolioMovementsByToIdStddevPopulationMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_MEMO_DESC', + PortfolioMovementsByToIdStddevPopulationNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_NFT_IDS_ASC', + PortfolioMovementsByToIdStddevPopulationNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_NFT_IDS_DESC', + PortfolioMovementsByToIdStddevPopulationToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_TO_ID_ASC', + PortfolioMovementsByToIdStddevPopulationToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_TO_ID_DESC', + PortfolioMovementsByToIdStddevPopulationTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_TYPE_ASC', + PortfolioMovementsByToIdStddevPopulationTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_TYPE_DESC', + PortfolioMovementsByToIdStddevPopulationUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdStddevPopulationUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdStddevSampleAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_ADDRESS_ASC', + PortfolioMovementsByToIdStddevSampleAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_ADDRESS_DESC', + PortfolioMovementsByToIdStddevSampleAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_AMOUNT_ASC', + PortfolioMovementsByToIdStddevSampleAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_AMOUNT_DESC', + PortfolioMovementsByToIdStddevSampleAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_ASSET_ID_ASC', + PortfolioMovementsByToIdStddevSampleAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_ASSET_ID_DESC', + PortfolioMovementsByToIdStddevSampleBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + PortfolioMovementsByToIdStddevSampleBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + PortfolioMovementsByToIdStddevSampleCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + PortfolioMovementsByToIdStddevSampleCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + PortfolioMovementsByToIdStddevSampleCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdStddevSampleCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdStddevSampleFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_FROM_ID_ASC', + PortfolioMovementsByToIdStddevSampleFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_FROM_ID_DESC', + PortfolioMovementsByToIdStddevSampleIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_ID_ASC', + PortfolioMovementsByToIdStddevSampleIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_ID_DESC', + PortfolioMovementsByToIdStddevSampleMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_MEMO_ASC', + PortfolioMovementsByToIdStddevSampleMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_MEMO_DESC', + PortfolioMovementsByToIdStddevSampleNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_NFT_IDS_ASC', + PortfolioMovementsByToIdStddevSampleNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_NFT_IDS_DESC', + PortfolioMovementsByToIdStddevSampleToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_TO_ID_ASC', + PortfolioMovementsByToIdStddevSampleToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_TO_ID_DESC', + PortfolioMovementsByToIdStddevSampleTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_TYPE_ASC', + PortfolioMovementsByToIdStddevSampleTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_TYPE_DESC', + PortfolioMovementsByToIdStddevSampleUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdStddevSampleUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdSumAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_ADDRESS_ASC', + PortfolioMovementsByToIdSumAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_ADDRESS_DESC', + PortfolioMovementsByToIdSumAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_AMOUNT_ASC', + PortfolioMovementsByToIdSumAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_AMOUNT_DESC', + PortfolioMovementsByToIdSumAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_ASSET_ID_ASC', + PortfolioMovementsByToIdSumAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_ASSET_ID_DESC', + PortfolioMovementsByToIdSumBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_BLOCK_RANGE_ASC', + PortfolioMovementsByToIdSumBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_BLOCK_RANGE_DESC', + PortfolioMovementsByToIdSumCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_CREATED_AT_ASC', + PortfolioMovementsByToIdSumCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_CREATED_AT_DESC', + PortfolioMovementsByToIdSumCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdSumCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdSumFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_FROM_ID_ASC', + PortfolioMovementsByToIdSumFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_FROM_ID_DESC', + PortfolioMovementsByToIdSumIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_ID_ASC', + PortfolioMovementsByToIdSumIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_ID_DESC', + PortfolioMovementsByToIdSumMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_MEMO_ASC', + PortfolioMovementsByToIdSumMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_MEMO_DESC', + PortfolioMovementsByToIdSumNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_NFT_IDS_ASC', + PortfolioMovementsByToIdSumNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_NFT_IDS_DESC', + PortfolioMovementsByToIdSumToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_TO_ID_ASC', + PortfolioMovementsByToIdSumToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_TO_ID_DESC', + PortfolioMovementsByToIdSumTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_TYPE_ASC', + PortfolioMovementsByToIdSumTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_TYPE_DESC', + PortfolioMovementsByToIdSumUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdSumUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_SUM_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdVariancePopulationAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_ADDRESS_ASC', + PortfolioMovementsByToIdVariancePopulationAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_ADDRESS_DESC', + PortfolioMovementsByToIdVariancePopulationAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_AMOUNT_ASC', + PortfolioMovementsByToIdVariancePopulationAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_AMOUNT_DESC', + PortfolioMovementsByToIdVariancePopulationAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_ASSET_ID_ASC', + PortfolioMovementsByToIdVariancePopulationAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_ASSET_ID_DESC', + PortfolioMovementsByToIdVariancePopulationBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + PortfolioMovementsByToIdVariancePopulationBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + PortfolioMovementsByToIdVariancePopulationCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + PortfolioMovementsByToIdVariancePopulationCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + PortfolioMovementsByToIdVariancePopulationCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdVariancePopulationCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdVariancePopulationFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_FROM_ID_ASC', + PortfolioMovementsByToIdVariancePopulationFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_FROM_ID_DESC', + PortfolioMovementsByToIdVariancePopulationIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_ID_ASC', + PortfolioMovementsByToIdVariancePopulationIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_ID_DESC', + PortfolioMovementsByToIdVariancePopulationMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_MEMO_ASC', + PortfolioMovementsByToIdVariancePopulationMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_MEMO_DESC', + PortfolioMovementsByToIdVariancePopulationNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_NFT_IDS_ASC', + PortfolioMovementsByToIdVariancePopulationNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_NFT_IDS_DESC', + PortfolioMovementsByToIdVariancePopulationToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_TO_ID_ASC', + PortfolioMovementsByToIdVariancePopulationToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_TO_ID_DESC', + PortfolioMovementsByToIdVariancePopulationTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_TYPE_ASC', + PortfolioMovementsByToIdVariancePopulationTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_TYPE_DESC', + PortfolioMovementsByToIdVariancePopulationUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdVariancePopulationUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdVarianceSampleAddressAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_ADDRESS_ASC', + PortfolioMovementsByToIdVarianceSampleAddressDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_ADDRESS_DESC', + PortfolioMovementsByToIdVarianceSampleAmountAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_AMOUNT_ASC', + PortfolioMovementsByToIdVarianceSampleAmountDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_AMOUNT_DESC', + PortfolioMovementsByToIdVarianceSampleAssetIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_ASSET_ID_ASC', + PortfolioMovementsByToIdVarianceSampleAssetIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_ASSET_ID_DESC', + PortfolioMovementsByToIdVarianceSampleBlockRangeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + PortfolioMovementsByToIdVarianceSampleBlockRangeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + PortfolioMovementsByToIdVarianceSampleCreatedAtAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + PortfolioMovementsByToIdVarianceSampleCreatedAtDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + PortfolioMovementsByToIdVarianceSampleCreatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdVarianceSampleCreatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + PortfolioMovementsByToIdVarianceSampleFromIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_FROM_ID_ASC', + PortfolioMovementsByToIdVarianceSampleFromIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_FROM_ID_DESC', + PortfolioMovementsByToIdVarianceSampleIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_ID_ASC', + PortfolioMovementsByToIdVarianceSampleIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_ID_DESC', + PortfolioMovementsByToIdVarianceSampleMemoAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_MEMO_ASC', + PortfolioMovementsByToIdVarianceSampleMemoDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_MEMO_DESC', + PortfolioMovementsByToIdVarianceSampleNftIdsAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_NFT_IDS_ASC', + PortfolioMovementsByToIdVarianceSampleNftIdsDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_NFT_IDS_DESC', + PortfolioMovementsByToIdVarianceSampleToIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_TO_ID_ASC', + PortfolioMovementsByToIdVarianceSampleToIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_TO_ID_DESC', + PortfolioMovementsByToIdVarianceSampleTypeAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_TYPE_ASC', + PortfolioMovementsByToIdVarianceSampleTypeDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_TYPE_DESC', + PortfolioMovementsByToIdVarianceSampleUpdatedBlockIdAsc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + PortfolioMovementsByToIdVarianceSampleUpdatedBlockIdDesc = 'PORTFOLIO_MOVEMENTS_BY_TO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + StosByOfferingPortfolioIdAverageBlockRangeAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_BLOCK_RANGE_ASC', + StosByOfferingPortfolioIdAverageBlockRangeDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_BLOCK_RANGE_DESC', + StosByOfferingPortfolioIdAverageCreatedAtAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_CREATED_AT_ASC', + StosByOfferingPortfolioIdAverageCreatedAtDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_CREATED_AT_DESC', + StosByOfferingPortfolioIdAverageCreatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdAverageCreatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdAverageCreatorIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_CREATOR_ID_ASC', + StosByOfferingPortfolioIdAverageCreatorIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_CREATOR_ID_DESC', + StosByOfferingPortfolioIdAverageEndAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_END_ASC', + StosByOfferingPortfolioIdAverageEndDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_END_DESC', + StosByOfferingPortfolioIdAverageIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_ID_ASC', + StosByOfferingPortfolioIdAverageIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_ID_DESC', + StosByOfferingPortfolioIdAverageMinimumInvestmentAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_MINIMUM_INVESTMENT_ASC', + StosByOfferingPortfolioIdAverageMinimumInvestmentDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_MINIMUM_INVESTMENT_DESC', + StosByOfferingPortfolioIdAverageNameAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_NAME_ASC', + StosByOfferingPortfolioIdAverageNameDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_NAME_DESC', + StosByOfferingPortfolioIdAverageOfferingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_OFFERING_ASSET_ID_ASC', + StosByOfferingPortfolioIdAverageOfferingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_OFFERING_ASSET_ID_DESC', + StosByOfferingPortfolioIdAverageOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdAverageOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdAverageRaisingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_RAISING_ASSET_ID_ASC', + StosByOfferingPortfolioIdAverageRaisingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_RAISING_ASSET_ID_DESC', + StosByOfferingPortfolioIdAverageRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdAverageRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdAverageRaisingTickerAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_RAISING_TICKER_ASC', + StosByOfferingPortfolioIdAverageRaisingTickerDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_RAISING_TICKER_DESC', + StosByOfferingPortfolioIdAverageStartAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_START_ASC', + StosByOfferingPortfolioIdAverageStartDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_START_DESC', + StosByOfferingPortfolioIdAverageStatusAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_STATUS_ASC', + StosByOfferingPortfolioIdAverageStatusDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_STATUS_DESC', + StosByOfferingPortfolioIdAverageStoIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_STO_ID_ASC', + StosByOfferingPortfolioIdAverageStoIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_STO_ID_DESC', + StosByOfferingPortfolioIdAverageTiersAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_TIERS_ASC', + StosByOfferingPortfolioIdAverageTiersDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_TIERS_DESC', + StosByOfferingPortfolioIdAverageUpdatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdAverageUpdatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdAverageVenueIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_VENUE_ID_ASC', + StosByOfferingPortfolioIdAverageVenueIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_AVERAGE_VENUE_ID_DESC', + StosByOfferingPortfolioIdCountAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_COUNT_ASC', + StosByOfferingPortfolioIdCountDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_COUNT_DESC', + StosByOfferingPortfolioIdDistinctCountBlockRangeAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StosByOfferingPortfolioIdDistinctCountBlockRangeDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StosByOfferingPortfolioIdDistinctCountCreatedAtAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_AT_ASC', + StosByOfferingPortfolioIdDistinctCountCreatedAtDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_AT_DESC', + StosByOfferingPortfolioIdDistinctCountCreatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdDistinctCountCreatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdDistinctCountCreatorIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + StosByOfferingPortfolioIdDistinctCountCreatorIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + StosByOfferingPortfolioIdDistinctCountEndAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_END_ASC', + StosByOfferingPortfolioIdDistinctCountEndDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_END_DESC', + StosByOfferingPortfolioIdDistinctCountIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_ID_ASC', + StosByOfferingPortfolioIdDistinctCountIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_ID_DESC', + StosByOfferingPortfolioIdDistinctCountMinimumInvestmentAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_ASC', + StosByOfferingPortfolioIdDistinctCountMinimumInvestmentDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_DESC', + StosByOfferingPortfolioIdDistinctCountNameAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_NAME_ASC', + StosByOfferingPortfolioIdDistinctCountNameDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_NAME_DESC', + StosByOfferingPortfolioIdDistinctCountOfferingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_ASC', + StosByOfferingPortfolioIdDistinctCountOfferingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_DESC', + StosByOfferingPortfolioIdDistinctCountOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdDistinctCountOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdDistinctCountRaisingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_ASSET_ID_ASC', + StosByOfferingPortfolioIdDistinctCountRaisingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_ASSET_ID_DESC', + StosByOfferingPortfolioIdDistinctCountRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdDistinctCountRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdDistinctCountRaisingTickerAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_TICKER_ASC', + StosByOfferingPortfolioIdDistinctCountRaisingTickerDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_TICKER_DESC', + StosByOfferingPortfolioIdDistinctCountStartAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_START_ASC', + StosByOfferingPortfolioIdDistinctCountStartDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_START_DESC', + StosByOfferingPortfolioIdDistinctCountStatusAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_STATUS_ASC', + StosByOfferingPortfolioIdDistinctCountStatusDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_STATUS_DESC', + StosByOfferingPortfolioIdDistinctCountStoIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_STO_ID_ASC', + StosByOfferingPortfolioIdDistinctCountStoIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_STO_ID_DESC', + StosByOfferingPortfolioIdDistinctCountTiersAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_TIERS_ASC', + StosByOfferingPortfolioIdDistinctCountTiersDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_TIERS_DESC', + StosByOfferingPortfolioIdDistinctCountUpdatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdDistinctCountUpdatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdDistinctCountVenueIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_VENUE_ID_ASC', + StosByOfferingPortfolioIdDistinctCountVenueIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_DISTINCT_COUNT_VENUE_ID_DESC', + StosByOfferingPortfolioIdMaxBlockRangeAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_BLOCK_RANGE_ASC', + StosByOfferingPortfolioIdMaxBlockRangeDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_BLOCK_RANGE_DESC', + StosByOfferingPortfolioIdMaxCreatedAtAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_CREATED_AT_ASC', + StosByOfferingPortfolioIdMaxCreatedAtDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_CREATED_AT_DESC', + StosByOfferingPortfolioIdMaxCreatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_CREATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdMaxCreatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_CREATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdMaxCreatorIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_CREATOR_ID_ASC', + StosByOfferingPortfolioIdMaxCreatorIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_CREATOR_ID_DESC', + StosByOfferingPortfolioIdMaxEndAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_END_ASC', + StosByOfferingPortfolioIdMaxEndDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_END_DESC', + StosByOfferingPortfolioIdMaxIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_ID_ASC', + StosByOfferingPortfolioIdMaxIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_ID_DESC', + StosByOfferingPortfolioIdMaxMinimumInvestmentAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_MINIMUM_INVESTMENT_ASC', + StosByOfferingPortfolioIdMaxMinimumInvestmentDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_MINIMUM_INVESTMENT_DESC', + StosByOfferingPortfolioIdMaxNameAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_NAME_ASC', + StosByOfferingPortfolioIdMaxNameDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_NAME_DESC', + StosByOfferingPortfolioIdMaxOfferingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_OFFERING_ASSET_ID_ASC', + StosByOfferingPortfolioIdMaxOfferingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_OFFERING_ASSET_ID_DESC', + StosByOfferingPortfolioIdMaxOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdMaxOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdMaxRaisingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_RAISING_ASSET_ID_ASC', + StosByOfferingPortfolioIdMaxRaisingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_RAISING_ASSET_ID_DESC', + StosByOfferingPortfolioIdMaxRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdMaxRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdMaxRaisingTickerAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_RAISING_TICKER_ASC', + StosByOfferingPortfolioIdMaxRaisingTickerDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_RAISING_TICKER_DESC', + StosByOfferingPortfolioIdMaxStartAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_START_ASC', + StosByOfferingPortfolioIdMaxStartDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_START_DESC', + StosByOfferingPortfolioIdMaxStatusAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_STATUS_ASC', + StosByOfferingPortfolioIdMaxStatusDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_STATUS_DESC', + StosByOfferingPortfolioIdMaxStoIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_STO_ID_ASC', + StosByOfferingPortfolioIdMaxStoIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_STO_ID_DESC', + StosByOfferingPortfolioIdMaxTiersAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_TIERS_ASC', + StosByOfferingPortfolioIdMaxTiersDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_TIERS_DESC', + StosByOfferingPortfolioIdMaxUpdatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_UPDATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdMaxUpdatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_UPDATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdMaxVenueIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_VENUE_ID_ASC', + StosByOfferingPortfolioIdMaxVenueIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MAX_VENUE_ID_DESC', + StosByOfferingPortfolioIdMinBlockRangeAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_BLOCK_RANGE_ASC', + StosByOfferingPortfolioIdMinBlockRangeDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_BLOCK_RANGE_DESC', + StosByOfferingPortfolioIdMinCreatedAtAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_CREATED_AT_ASC', + StosByOfferingPortfolioIdMinCreatedAtDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_CREATED_AT_DESC', + StosByOfferingPortfolioIdMinCreatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_CREATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdMinCreatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_CREATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdMinCreatorIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_CREATOR_ID_ASC', + StosByOfferingPortfolioIdMinCreatorIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_CREATOR_ID_DESC', + StosByOfferingPortfolioIdMinEndAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_END_ASC', + StosByOfferingPortfolioIdMinEndDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_END_DESC', + StosByOfferingPortfolioIdMinIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_ID_ASC', + StosByOfferingPortfolioIdMinIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_ID_DESC', + StosByOfferingPortfolioIdMinMinimumInvestmentAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_MINIMUM_INVESTMENT_ASC', + StosByOfferingPortfolioIdMinMinimumInvestmentDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_MINIMUM_INVESTMENT_DESC', + StosByOfferingPortfolioIdMinNameAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_NAME_ASC', + StosByOfferingPortfolioIdMinNameDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_NAME_DESC', + StosByOfferingPortfolioIdMinOfferingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_OFFERING_ASSET_ID_ASC', + StosByOfferingPortfolioIdMinOfferingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_OFFERING_ASSET_ID_DESC', + StosByOfferingPortfolioIdMinOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdMinOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdMinRaisingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_RAISING_ASSET_ID_ASC', + StosByOfferingPortfolioIdMinRaisingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_RAISING_ASSET_ID_DESC', + StosByOfferingPortfolioIdMinRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdMinRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdMinRaisingTickerAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_RAISING_TICKER_ASC', + StosByOfferingPortfolioIdMinRaisingTickerDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_RAISING_TICKER_DESC', + StosByOfferingPortfolioIdMinStartAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_START_ASC', + StosByOfferingPortfolioIdMinStartDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_START_DESC', + StosByOfferingPortfolioIdMinStatusAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_STATUS_ASC', + StosByOfferingPortfolioIdMinStatusDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_STATUS_DESC', + StosByOfferingPortfolioIdMinStoIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_STO_ID_ASC', + StosByOfferingPortfolioIdMinStoIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_STO_ID_DESC', + StosByOfferingPortfolioIdMinTiersAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_TIERS_ASC', + StosByOfferingPortfolioIdMinTiersDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_TIERS_DESC', + StosByOfferingPortfolioIdMinUpdatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_UPDATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdMinUpdatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_UPDATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdMinVenueIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_VENUE_ID_ASC', + StosByOfferingPortfolioIdMinVenueIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_MIN_VENUE_ID_DESC', + StosByOfferingPortfolioIdStddevPopulationBlockRangeAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StosByOfferingPortfolioIdStddevPopulationBlockRangeDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StosByOfferingPortfolioIdStddevPopulationCreatedAtAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_AT_ASC', + StosByOfferingPortfolioIdStddevPopulationCreatedAtDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_AT_DESC', + StosByOfferingPortfolioIdStddevPopulationCreatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdStddevPopulationCreatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdStddevPopulationCreatorIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + StosByOfferingPortfolioIdStddevPopulationCreatorIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + StosByOfferingPortfolioIdStddevPopulationEndAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_END_ASC', + StosByOfferingPortfolioIdStddevPopulationEndDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_END_DESC', + StosByOfferingPortfolioIdStddevPopulationIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_ID_ASC', + StosByOfferingPortfolioIdStddevPopulationIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_ID_DESC', + StosByOfferingPortfolioIdStddevPopulationMinimumInvestmentAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByOfferingPortfolioIdStddevPopulationMinimumInvestmentDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByOfferingPortfolioIdStddevPopulationNameAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_NAME_ASC', + StosByOfferingPortfolioIdStddevPopulationNameDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_NAME_DESC', + StosByOfferingPortfolioIdStddevPopulationOfferingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_ASC', + StosByOfferingPortfolioIdStddevPopulationOfferingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_DESC', + StosByOfferingPortfolioIdStddevPopulationOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdStddevPopulationOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdStddevPopulationRaisingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_ASSET_ID_ASC', + StosByOfferingPortfolioIdStddevPopulationRaisingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_ASSET_ID_DESC', + StosByOfferingPortfolioIdStddevPopulationRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdStddevPopulationRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdStddevPopulationRaisingTickerAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_TICKER_ASC', + StosByOfferingPortfolioIdStddevPopulationRaisingTickerDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_TICKER_DESC', + StosByOfferingPortfolioIdStddevPopulationStartAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_START_ASC', + StosByOfferingPortfolioIdStddevPopulationStartDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_START_DESC', + StosByOfferingPortfolioIdStddevPopulationStatusAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_STATUS_ASC', + StosByOfferingPortfolioIdStddevPopulationStatusDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_STATUS_DESC', + StosByOfferingPortfolioIdStddevPopulationStoIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_STO_ID_ASC', + StosByOfferingPortfolioIdStddevPopulationStoIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_STO_ID_DESC', + StosByOfferingPortfolioIdStddevPopulationTiersAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_TIERS_ASC', + StosByOfferingPortfolioIdStddevPopulationTiersDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_TIERS_DESC', + StosByOfferingPortfolioIdStddevPopulationUpdatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdStddevPopulationUpdatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdStddevPopulationVenueIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_VENUE_ID_ASC', + StosByOfferingPortfolioIdStddevPopulationVenueIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_POPULATION_VENUE_ID_DESC', + StosByOfferingPortfolioIdStddevSampleBlockRangeAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StosByOfferingPortfolioIdStddevSampleBlockRangeDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StosByOfferingPortfolioIdStddevSampleCreatedAtAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + StosByOfferingPortfolioIdStddevSampleCreatedAtDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + StosByOfferingPortfolioIdStddevSampleCreatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdStddevSampleCreatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdStddevSampleCreatorIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + StosByOfferingPortfolioIdStddevSampleCreatorIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + StosByOfferingPortfolioIdStddevSampleEndAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_END_ASC', + StosByOfferingPortfolioIdStddevSampleEndDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_END_DESC', + StosByOfferingPortfolioIdStddevSampleIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_ID_ASC', + StosByOfferingPortfolioIdStddevSampleIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_ID_DESC', + StosByOfferingPortfolioIdStddevSampleMinimumInvestmentAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByOfferingPortfolioIdStddevSampleMinimumInvestmentDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByOfferingPortfolioIdStddevSampleNameAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_NAME_ASC', + StosByOfferingPortfolioIdStddevSampleNameDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_NAME_DESC', + StosByOfferingPortfolioIdStddevSampleOfferingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByOfferingPortfolioIdStddevSampleOfferingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByOfferingPortfolioIdStddevSampleOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdStddevSampleOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdStddevSampleRaisingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_ASC', + StosByOfferingPortfolioIdStddevSampleRaisingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_DESC', + StosByOfferingPortfolioIdStddevSampleRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdStddevSampleRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdStddevSampleRaisingTickerAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_TICKER_ASC', + StosByOfferingPortfolioIdStddevSampleRaisingTickerDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_TICKER_DESC', + StosByOfferingPortfolioIdStddevSampleStartAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_START_ASC', + StosByOfferingPortfolioIdStddevSampleStartDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_START_DESC', + StosByOfferingPortfolioIdStddevSampleStatusAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_STATUS_ASC', + StosByOfferingPortfolioIdStddevSampleStatusDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_STATUS_DESC', + StosByOfferingPortfolioIdStddevSampleStoIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_STO_ID_ASC', + StosByOfferingPortfolioIdStddevSampleStoIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_STO_ID_DESC', + StosByOfferingPortfolioIdStddevSampleTiersAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_TIERS_ASC', + StosByOfferingPortfolioIdStddevSampleTiersDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_TIERS_DESC', + StosByOfferingPortfolioIdStddevSampleUpdatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdStddevSampleUpdatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdStddevSampleVenueIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + StosByOfferingPortfolioIdStddevSampleVenueIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + StosByOfferingPortfolioIdSumBlockRangeAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_BLOCK_RANGE_ASC', + StosByOfferingPortfolioIdSumBlockRangeDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_BLOCK_RANGE_DESC', + StosByOfferingPortfolioIdSumCreatedAtAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_CREATED_AT_ASC', + StosByOfferingPortfolioIdSumCreatedAtDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_CREATED_AT_DESC', + StosByOfferingPortfolioIdSumCreatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_CREATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdSumCreatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_CREATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdSumCreatorIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_CREATOR_ID_ASC', + StosByOfferingPortfolioIdSumCreatorIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_CREATOR_ID_DESC', + StosByOfferingPortfolioIdSumEndAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_END_ASC', + StosByOfferingPortfolioIdSumEndDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_END_DESC', + StosByOfferingPortfolioIdSumIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_ID_ASC', + StosByOfferingPortfolioIdSumIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_ID_DESC', + StosByOfferingPortfolioIdSumMinimumInvestmentAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_MINIMUM_INVESTMENT_ASC', + StosByOfferingPortfolioIdSumMinimumInvestmentDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_MINIMUM_INVESTMENT_DESC', + StosByOfferingPortfolioIdSumNameAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_NAME_ASC', + StosByOfferingPortfolioIdSumNameDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_NAME_DESC', + StosByOfferingPortfolioIdSumOfferingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_OFFERING_ASSET_ID_ASC', + StosByOfferingPortfolioIdSumOfferingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_OFFERING_ASSET_ID_DESC', + StosByOfferingPortfolioIdSumOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdSumOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdSumRaisingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_RAISING_ASSET_ID_ASC', + StosByOfferingPortfolioIdSumRaisingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_RAISING_ASSET_ID_DESC', + StosByOfferingPortfolioIdSumRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdSumRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdSumRaisingTickerAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_RAISING_TICKER_ASC', + StosByOfferingPortfolioIdSumRaisingTickerDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_RAISING_TICKER_DESC', + StosByOfferingPortfolioIdSumStartAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_START_ASC', + StosByOfferingPortfolioIdSumStartDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_START_DESC', + StosByOfferingPortfolioIdSumStatusAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_STATUS_ASC', + StosByOfferingPortfolioIdSumStatusDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_STATUS_DESC', + StosByOfferingPortfolioIdSumStoIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_STO_ID_ASC', + StosByOfferingPortfolioIdSumStoIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_STO_ID_DESC', + StosByOfferingPortfolioIdSumTiersAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_TIERS_ASC', + StosByOfferingPortfolioIdSumTiersDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_TIERS_DESC', + StosByOfferingPortfolioIdSumUpdatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_UPDATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdSumUpdatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_UPDATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdSumVenueIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_VENUE_ID_ASC', + StosByOfferingPortfolioIdSumVenueIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_SUM_VENUE_ID_DESC', + StosByOfferingPortfolioIdVariancePopulationBlockRangeAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StosByOfferingPortfolioIdVariancePopulationBlockRangeDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StosByOfferingPortfolioIdVariancePopulationCreatedAtAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + StosByOfferingPortfolioIdVariancePopulationCreatedAtDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + StosByOfferingPortfolioIdVariancePopulationCreatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdVariancePopulationCreatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdVariancePopulationCreatorIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + StosByOfferingPortfolioIdVariancePopulationCreatorIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + StosByOfferingPortfolioIdVariancePopulationEndAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_END_ASC', + StosByOfferingPortfolioIdVariancePopulationEndDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_END_DESC', + StosByOfferingPortfolioIdVariancePopulationIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_ID_ASC', + StosByOfferingPortfolioIdVariancePopulationIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_ID_DESC', + StosByOfferingPortfolioIdVariancePopulationMinimumInvestmentAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByOfferingPortfolioIdVariancePopulationMinimumInvestmentDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByOfferingPortfolioIdVariancePopulationNameAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_NAME_ASC', + StosByOfferingPortfolioIdVariancePopulationNameDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_NAME_DESC', + StosByOfferingPortfolioIdVariancePopulationOfferingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_ASC', + StosByOfferingPortfolioIdVariancePopulationOfferingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_DESC', + StosByOfferingPortfolioIdVariancePopulationOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdVariancePopulationOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdVariancePopulationRaisingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_ASC', + StosByOfferingPortfolioIdVariancePopulationRaisingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_DESC', + StosByOfferingPortfolioIdVariancePopulationRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdVariancePopulationRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdVariancePopulationRaisingTickerAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_TICKER_ASC', + StosByOfferingPortfolioIdVariancePopulationRaisingTickerDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_TICKER_DESC', + StosByOfferingPortfolioIdVariancePopulationStartAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_START_ASC', + StosByOfferingPortfolioIdVariancePopulationStartDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_START_DESC', + StosByOfferingPortfolioIdVariancePopulationStatusAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_STATUS_ASC', + StosByOfferingPortfolioIdVariancePopulationStatusDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_STATUS_DESC', + StosByOfferingPortfolioIdVariancePopulationStoIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_STO_ID_ASC', + StosByOfferingPortfolioIdVariancePopulationStoIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_STO_ID_DESC', + StosByOfferingPortfolioIdVariancePopulationTiersAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_TIERS_ASC', + StosByOfferingPortfolioIdVariancePopulationTiersDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_TIERS_DESC', + StosByOfferingPortfolioIdVariancePopulationUpdatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdVariancePopulationUpdatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdVariancePopulationVenueIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + StosByOfferingPortfolioIdVariancePopulationVenueIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + StosByOfferingPortfolioIdVarianceSampleBlockRangeAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StosByOfferingPortfolioIdVarianceSampleBlockRangeDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StosByOfferingPortfolioIdVarianceSampleCreatedAtAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + StosByOfferingPortfolioIdVarianceSampleCreatedAtDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + StosByOfferingPortfolioIdVarianceSampleCreatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdVarianceSampleCreatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdVarianceSampleCreatorIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + StosByOfferingPortfolioIdVarianceSampleCreatorIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + StosByOfferingPortfolioIdVarianceSampleEndAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_END_ASC', + StosByOfferingPortfolioIdVarianceSampleEndDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_END_DESC', + StosByOfferingPortfolioIdVarianceSampleIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_ASC', + StosByOfferingPortfolioIdVarianceSampleIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_DESC', + StosByOfferingPortfolioIdVarianceSampleMinimumInvestmentAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByOfferingPortfolioIdVarianceSampleMinimumInvestmentDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByOfferingPortfolioIdVarianceSampleNameAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_NAME_ASC', + StosByOfferingPortfolioIdVarianceSampleNameDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_NAME_DESC', + StosByOfferingPortfolioIdVarianceSampleOfferingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByOfferingPortfolioIdVarianceSampleOfferingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByOfferingPortfolioIdVarianceSampleOfferingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdVarianceSampleOfferingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdVarianceSampleRaisingAssetIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_ASC', + StosByOfferingPortfolioIdVarianceSampleRaisingAssetIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_DESC', + StosByOfferingPortfolioIdVarianceSampleRaisingPortfolioIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByOfferingPortfolioIdVarianceSampleRaisingPortfolioIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByOfferingPortfolioIdVarianceSampleRaisingTickerAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_TICKER_ASC', + StosByOfferingPortfolioIdVarianceSampleRaisingTickerDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_TICKER_DESC', + StosByOfferingPortfolioIdVarianceSampleStartAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_START_ASC', + StosByOfferingPortfolioIdVarianceSampleStartDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_START_DESC', + StosByOfferingPortfolioIdVarianceSampleStatusAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_STATUS_ASC', + StosByOfferingPortfolioIdVarianceSampleStatusDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_STATUS_DESC', + StosByOfferingPortfolioIdVarianceSampleStoIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_STO_ID_ASC', + StosByOfferingPortfolioIdVarianceSampleStoIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_STO_ID_DESC', + StosByOfferingPortfolioIdVarianceSampleTiersAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_TIERS_ASC', + StosByOfferingPortfolioIdVarianceSampleTiersDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_TIERS_DESC', + StosByOfferingPortfolioIdVarianceSampleUpdatedBlockIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByOfferingPortfolioIdVarianceSampleUpdatedBlockIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByOfferingPortfolioIdVarianceSampleVenueIdAsc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + StosByOfferingPortfolioIdVarianceSampleVenueIdDesc = 'STOS_BY_OFFERING_PORTFOLIO_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + StosByRaisingPortfolioIdAverageBlockRangeAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_BLOCK_RANGE_ASC', + StosByRaisingPortfolioIdAverageBlockRangeDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_BLOCK_RANGE_DESC', + StosByRaisingPortfolioIdAverageCreatedAtAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_CREATED_AT_ASC', + StosByRaisingPortfolioIdAverageCreatedAtDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_CREATED_AT_DESC', + StosByRaisingPortfolioIdAverageCreatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_CREATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdAverageCreatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_CREATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdAverageCreatorIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_CREATOR_ID_ASC', + StosByRaisingPortfolioIdAverageCreatorIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_CREATOR_ID_DESC', + StosByRaisingPortfolioIdAverageEndAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_END_ASC', + StosByRaisingPortfolioIdAverageEndDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_END_DESC', + StosByRaisingPortfolioIdAverageIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_ID_ASC', + StosByRaisingPortfolioIdAverageIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_ID_DESC', + StosByRaisingPortfolioIdAverageMinimumInvestmentAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_MINIMUM_INVESTMENT_ASC', + StosByRaisingPortfolioIdAverageMinimumInvestmentDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_MINIMUM_INVESTMENT_DESC', + StosByRaisingPortfolioIdAverageNameAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_NAME_ASC', + StosByRaisingPortfolioIdAverageNameDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_NAME_DESC', + StosByRaisingPortfolioIdAverageOfferingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_OFFERING_ASSET_ID_ASC', + StosByRaisingPortfolioIdAverageOfferingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_OFFERING_ASSET_ID_DESC', + StosByRaisingPortfolioIdAverageOfferingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_OFFERING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdAverageOfferingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_OFFERING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdAverageRaisingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_RAISING_ASSET_ID_ASC', + StosByRaisingPortfolioIdAverageRaisingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_RAISING_ASSET_ID_DESC', + StosByRaisingPortfolioIdAverageRaisingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_RAISING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdAverageRaisingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_RAISING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdAverageRaisingTickerAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_RAISING_TICKER_ASC', + StosByRaisingPortfolioIdAverageRaisingTickerDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_RAISING_TICKER_DESC', + StosByRaisingPortfolioIdAverageStartAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_START_ASC', + StosByRaisingPortfolioIdAverageStartDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_START_DESC', + StosByRaisingPortfolioIdAverageStatusAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_STATUS_ASC', + StosByRaisingPortfolioIdAverageStatusDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_STATUS_DESC', + StosByRaisingPortfolioIdAverageStoIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_STO_ID_ASC', + StosByRaisingPortfolioIdAverageStoIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_STO_ID_DESC', + StosByRaisingPortfolioIdAverageTiersAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_TIERS_ASC', + StosByRaisingPortfolioIdAverageTiersDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_TIERS_DESC', + StosByRaisingPortfolioIdAverageUpdatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_UPDATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdAverageUpdatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_UPDATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdAverageVenueIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_VENUE_ID_ASC', + StosByRaisingPortfolioIdAverageVenueIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_AVERAGE_VENUE_ID_DESC', + StosByRaisingPortfolioIdCountAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_COUNT_ASC', + StosByRaisingPortfolioIdCountDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_COUNT_DESC', + StosByRaisingPortfolioIdDistinctCountBlockRangeAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StosByRaisingPortfolioIdDistinctCountBlockRangeDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StosByRaisingPortfolioIdDistinctCountCreatedAtAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_AT_ASC', + StosByRaisingPortfolioIdDistinctCountCreatedAtDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_AT_DESC', + StosByRaisingPortfolioIdDistinctCountCreatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdDistinctCountCreatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdDistinctCountCreatorIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_CREATOR_ID_ASC', + StosByRaisingPortfolioIdDistinctCountCreatorIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_CREATOR_ID_DESC', + StosByRaisingPortfolioIdDistinctCountEndAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_END_ASC', + StosByRaisingPortfolioIdDistinctCountEndDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_END_DESC', + StosByRaisingPortfolioIdDistinctCountIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_ID_ASC', + StosByRaisingPortfolioIdDistinctCountIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_ID_DESC', + StosByRaisingPortfolioIdDistinctCountMinimumInvestmentAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_ASC', + StosByRaisingPortfolioIdDistinctCountMinimumInvestmentDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_MINIMUM_INVESTMENT_DESC', + StosByRaisingPortfolioIdDistinctCountNameAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_NAME_ASC', + StosByRaisingPortfolioIdDistinctCountNameDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_NAME_DESC', + StosByRaisingPortfolioIdDistinctCountOfferingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_ASC', + StosByRaisingPortfolioIdDistinctCountOfferingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_OFFERING_ASSET_ID_DESC', + StosByRaisingPortfolioIdDistinctCountOfferingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdDistinctCountOfferingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdDistinctCountRaisingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_ASSET_ID_ASC', + StosByRaisingPortfolioIdDistinctCountRaisingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_ASSET_ID_DESC', + StosByRaisingPortfolioIdDistinctCountRaisingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdDistinctCountRaisingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdDistinctCountRaisingTickerAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_TICKER_ASC', + StosByRaisingPortfolioIdDistinctCountRaisingTickerDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_RAISING_TICKER_DESC', + StosByRaisingPortfolioIdDistinctCountStartAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_START_ASC', + StosByRaisingPortfolioIdDistinctCountStartDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_START_DESC', + StosByRaisingPortfolioIdDistinctCountStatusAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_STATUS_ASC', + StosByRaisingPortfolioIdDistinctCountStatusDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_STATUS_DESC', + StosByRaisingPortfolioIdDistinctCountStoIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_STO_ID_ASC', + StosByRaisingPortfolioIdDistinctCountStoIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_STO_ID_DESC', + StosByRaisingPortfolioIdDistinctCountTiersAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_TIERS_ASC', + StosByRaisingPortfolioIdDistinctCountTiersDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_TIERS_DESC', + StosByRaisingPortfolioIdDistinctCountUpdatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdDistinctCountUpdatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdDistinctCountVenueIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_VENUE_ID_ASC', + StosByRaisingPortfolioIdDistinctCountVenueIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_DISTINCT_COUNT_VENUE_ID_DESC', + StosByRaisingPortfolioIdMaxBlockRangeAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_BLOCK_RANGE_ASC', + StosByRaisingPortfolioIdMaxBlockRangeDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_BLOCK_RANGE_DESC', + StosByRaisingPortfolioIdMaxCreatedAtAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_CREATED_AT_ASC', + StosByRaisingPortfolioIdMaxCreatedAtDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_CREATED_AT_DESC', + StosByRaisingPortfolioIdMaxCreatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_CREATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdMaxCreatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_CREATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdMaxCreatorIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_CREATOR_ID_ASC', + StosByRaisingPortfolioIdMaxCreatorIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_CREATOR_ID_DESC', + StosByRaisingPortfolioIdMaxEndAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_END_ASC', + StosByRaisingPortfolioIdMaxEndDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_END_DESC', + StosByRaisingPortfolioIdMaxIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_ID_ASC', + StosByRaisingPortfolioIdMaxIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_ID_DESC', + StosByRaisingPortfolioIdMaxMinimumInvestmentAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_MINIMUM_INVESTMENT_ASC', + StosByRaisingPortfolioIdMaxMinimumInvestmentDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_MINIMUM_INVESTMENT_DESC', + StosByRaisingPortfolioIdMaxNameAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_NAME_ASC', + StosByRaisingPortfolioIdMaxNameDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_NAME_DESC', + StosByRaisingPortfolioIdMaxOfferingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_OFFERING_ASSET_ID_ASC', + StosByRaisingPortfolioIdMaxOfferingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_OFFERING_ASSET_ID_DESC', + StosByRaisingPortfolioIdMaxOfferingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_OFFERING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdMaxOfferingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_OFFERING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdMaxRaisingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_RAISING_ASSET_ID_ASC', + StosByRaisingPortfolioIdMaxRaisingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_RAISING_ASSET_ID_DESC', + StosByRaisingPortfolioIdMaxRaisingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_RAISING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdMaxRaisingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_RAISING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdMaxRaisingTickerAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_RAISING_TICKER_ASC', + StosByRaisingPortfolioIdMaxRaisingTickerDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_RAISING_TICKER_DESC', + StosByRaisingPortfolioIdMaxStartAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_START_ASC', + StosByRaisingPortfolioIdMaxStartDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_START_DESC', + StosByRaisingPortfolioIdMaxStatusAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_STATUS_ASC', + StosByRaisingPortfolioIdMaxStatusDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_STATUS_DESC', + StosByRaisingPortfolioIdMaxStoIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_STO_ID_ASC', + StosByRaisingPortfolioIdMaxStoIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_STO_ID_DESC', + StosByRaisingPortfolioIdMaxTiersAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_TIERS_ASC', + StosByRaisingPortfolioIdMaxTiersDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_TIERS_DESC', + StosByRaisingPortfolioIdMaxUpdatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_UPDATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdMaxUpdatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_UPDATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdMaxVenueIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_VENUE_ID_ASC', + StosByRaisingPortfolioIdMaxVenueIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MAX_VENUE_ID_DESC', + StosByRaisingPortfolioIdMinBlockRangeAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_BLOCK_RANGE_ASC', + StosByRaisingPortfolioIdMinBlockRangeDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_BLOCK_RANGE_DESC', + StosByRaisingPortfolioIdMinCreatedAtAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_CREATED_AT_ASC', + StosByRaisingPortfolioIdMinCreatedAtDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_CREATED_AT_DESC', + StosByRaisingPortfolioIdMinCreatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_CREATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdMinCreatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_CREATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdMinCreatorIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_CREATOR_ID_ASC', + StosByRaisingPortfolioIdMinCreatorIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_CREATOR_ID_DESC', + StosByRaisingPortfolioIdMinEndAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_END_ASC', + StosByRaisingPortfolioIdMinEndDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_END_DESC', + StosByRaisingPortfolioIdMinIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_ID_ASC', + StosByRaisingPortfolioIdMinIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_ID_DESC', + StosByRaisingPortfolioIdMinMinimumInvestmentAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_MINIMUM_INVESTMENT_ASC', + StosByRaisingPortfolioIdMinMinimumInvestmentDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_MINIMUM_INVESTMENT_DESC', + StosByRaisingPortfolioIdMinNameAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_NAME_ASC', + StosByRaisingPortfolioIdMinNameDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_NAME_DESC', + StosByRaisingPortfolioIdMinOfferingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_OFFERING_ASSET_ID_ASC', + StosByRaisingPortfolioIdMinOfferingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_OFFERING_ASSET_ID_DESC', + StosByRaisingPortfolioIdMinOfferingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_OFFERING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdMinOfferingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_OFFERING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdMinRaisingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_RAISING_ASSET_ID_ASC', + StosByRaisingPortfolioIdMinRaisingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_RAISING_ASSET_ID_DESC', + StosByRaisingPortfolioIdMinRaisingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_RAISING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdMinRaisingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_RAISING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdMinRaisingTickerAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_RAISING_TICKER_ASC', + StosByRaisingPortfolioIdMinRaisingTickerDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_RAISING_TICKER_DESC', + StosByRaisingPortfolioIdMinStartAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_START_ASC', + StosByRaisingPortfolioIdMinStartDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_START_DESC', + StosByRaisingPortfolioIdMinStatusAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_STATUS_ASC', + StosByRaisingPortfolioIdMinStatusDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_STATUS_DESC', + StosByRaisingPortfolioIdMinStoIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_STO_ID_ASC', + StosByRaisingPortfolioIdMinStoIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_STO_ID_DESC', + StosByRaisingPortfolioIdMinTiersAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_TIERS_ASC', + StosByRaisingPortfolioIdMinTiersDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_TIERS_DESC', + StosByRaisingPortfolioIdMinUpdatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_UPDATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdMinUpdatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_UPDATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdMinVenueIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_VENUE_ID_ASC', + StosByRaisingPortfolioIdMinVenueIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_MIN_VENUE_ID_DESC', + StosByRaisingPortfolioIdStddevPopulationBlockRangeAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StosByRaisingPortfolioIdStddevPopulationBlockRangeDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StosByRaisingPortfolioIdStddevPopulationCreatedAtAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_AT_ASC', + StosByRaisingPortfolioIdStddevPopulationCreatedAtDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_AT_DESC', + StosByRaisingPortfolioIdStddevPopulationCreatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdStddevPopulationCreatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdStddevPopulationCreatorIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_CREATOR_ID_ASC', + StosByRaisingPortfolioIdStddevPopulationCreatorIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_CREATOR_ID_DESC', + StosByRaisingPortfolioIdStddevPopulationEndAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_END_ASC', + StosByRaisingPortfolioIdStddevPopulationEndDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_END_DESC', + StosByRaisingPortfolioIdStddevPopulationIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_ID_ASC', + StosByRaisingPortfolioIdStddevPopulationIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_ID_DESC', + StosByRaisingPortfolioIdStddevPopulationMinimumInvestmentAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByRaisingPortfolioIdStddevPopulationMinimumInvestmentDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByRaisingPortfolioIdStddevPopulationNameAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_NAME_ASC', + StosByRaisingPortfolioIdStddevPopulationNameDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_NAME_DESC', + StosByRaisingPortfolioIdStddevPopulationOfferingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_ASC', + StosByRaisingPortfolioIdStddevPopulationOfferingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_OFFERING_ASSET_ID_DESC', + StosByRaisingPortfolioIdStddevPopulationOfferingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdStddevPopulationOfferingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdStddevPopulationRaisingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_ASSET_ID_ASC', + StosByRaisingPortfolioIdStddevPopulationRaisingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_ASSET_ID_DESC', + StosByRaisingPortfolioIdStddevPopulationRaisingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdStddevPopulationRaisingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdStddevPopulationRaisingTickerAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_TICKER_ASC', + StosByRaisingPortfolioIdStddevPopulationRaisingTickerDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_RAISING_TICKER_DESC', + StosByRaisingPortfolioIdStddevPopulationStartAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_START_ASC', + StosByRaisingPortfolioIdStddevPopulationStartDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_START_DESC', + StosByRaisingPortfolioIdStddevPopulationStatusAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_STATUS_ASC', + StosByRaisingPortfolioIdStddevPopulationStatusDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_STATUS_DESC', + StosByRaisingPortfolioIdStddevPopulationStoIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_STO_ID_ASC', + StosByRaisingPortfolioIdStddevPopulationStoIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_STO_ID_DESC', + StosByRaisingPortfolioIdStddevPopulationTiersAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_TIERS_ASC', + StosByRaisingPortfolioIdStddevPopulationTiersDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_TIERS_DESC', + StosByRaisingPortfolioIdStddevPopulationUpdatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdStddevPopulationUpdatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdStddevPopulationVenueIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_VENUE_ID_ASC', + StosByRaisingPortfolioIdStddevPopulationVenueIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_POPULATION_VENUE_ID_DESC', + StosByRaisingPortfolioIdStddevSampleBlockRangeAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StosByRaisingPortfolioIdStddevSampleBlockRangeDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StosByRaisingPortfolioIdStddevSampleCreatedAtAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_AT_ASC', + StosByRaisingPortfolioIdStddevSampleCreatedAtDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_AT_DESC', + StosByRaisingPortfolioIdStddevSampleCreatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdStddevSampleCreatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdStddevSampleCreatorIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATOR_ID_ASC', + StosByRaisingPortfolioIdStddevSampleCreatorIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_CREATOR_ID_DESC', + StosByRaisingPortfolioIdStddevSampleEndAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_END_ASC', + StosByRaisingPortfolioIdStddevSampleEndDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_END_DESC', + StosByRaisingPortfolioIdStddevSampleIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_ID_ASC', + StosByRaisingPortfolioIdStddevSampleIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_ID_DESC', + StosByRaisingPortfolioIdStddevSampleMinimumInvestmentAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByRaisingPortfolioIdStddevSampleMinimumInvestmentDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByRaisingPortfolioIdStddevSampleNameAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_NAME_ASC', + StosByRaisingPortfolioIdStddevSampleNameDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_NAME_DESC', + StosByRaisingPortfolioIdStddevSampleOfferingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByRaisingPortfolioIdStddevSampleOfferingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByRaisingPortfolioIdStddevSampleOfferingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdStddevSampleOfferingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdStddevSampleRaisingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_ASC', + StosByRaisingPortfolioIdStddevSampleRaisingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_ASSET_ID_DESC', + StosByRaisingPortfolioIdStddevSampleRaisingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdStddevSampleRaisingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdStddevSampleRaisingTickerAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_TICKER_ASC', + StosByRaisingPortfolioIdStddevSampleRaisingTickerDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_RAISING_TICKER_DESC', + StosByRaisingPortfolioIdStddevSampleStartAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_START_ASC', + StosByRaisingPortfolioIdStddevSampleStartDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_START_DESC', + StosByRaisingPortfolioIdStddevSampleStatusAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_STATUS_ASC', + StosByRaisingPortfolioIdStddevSampleStatusDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_STATUS_DESC', + StosByRaisingPortfolioIdStddevSampleStoIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_STO_ID_ASC', + StosByRaisingPortfolioIdStddevSampleStoIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_STO_ID_DESC', + StosByRaisingPortfolioIdStddevSampleTiersAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_TIERS_ASC', + StosByRaisingPortfolioIdStddevSampleTiersDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_TIERS_DESC', + StosByRaisingPortfolioIdStddevSampleUpdatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdStddevSampleUpdatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdStddevSampleVenueIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_VENUE_ID_ASC', + StosByRaisingPortfolioIdStddevSampleVenueIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_STDDEV_SAMPLE_VENUE_ID_DESC', + StosByRaisingPortfolioIdSumBlockRangeAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_BLOCK_RANGE_ASC', + StosByRaisingPortfolioIdSumBlockRangeDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_BLOCK_RANGE_DESC', + StosByRaisingPortfolioIdSumCreatedAtAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_CREATED_AT_ASC', + StosByRaisingPortfolioIdSumCreatedAtDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_CREATED_AT_DESC', + StosByRaisingPortfolioIdSumCreatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_CREATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdSumCreatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_CREATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdSumCreatorIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_CREATOR_ID_ASC', + StosByRaisingPortfolioIdSumCreatorIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_CREATOR_ID_DESC', + StosByRaisingPortfolioIdSumEndAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_END_ASC', + StosByRaisingPortfolioIdSumEndDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_END_DESC', + StosByRaisingPortfolioIdSumIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_ID_ASC', + StosByRaisingPortfolioIdSumIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_ID_DESC', + StosByRaisingPortfolioIdSumMinimumInvestmentAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_MINIMUM_INVESTMENT_ASC', + StosByRaisingPortfolioIdSumMinimumInvestmentDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_MINIMUM_INVESTMENT_DESC', + StosByRaisingPortfolioIdSumNameAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_NAME_ASC', + StosByRaisingPortfolioIdSumNameDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_NAME_DESC', + StosByRaisingPortfolioIdSumOfferingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_OFFERING_ASSET_ID_ASC', + StosByRaisingPortfolioIdSumOfferingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_OFFERING_ASSET_ID_DESC', + StosByRaisingPortfolioIdSumOfferingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_OFFERING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdSumOfferingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_OFFERING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdSumRaisingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_RAISING_ASSET_ID_ASC', + StosByRaisingPortfolioIdSumRaisingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_RAISING_ASSET_ID_DESC', + StosByRaisingPortfolioIdSumRaisingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_RAISING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdSumRaisingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_RAISING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdSumRaisingTickerAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_RAISING_TICKER_ASC', + StosByRaisingPortfolioIdSumRaisingTickerDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_RAISING_TICKER_DESC', + StosByRaisingPortfolioIdSumStartAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_START_ASC', + StosByRaisingPortfolioIdSumStartDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_START_DESC', + StosByRaisingPortfolioIdSumStatusAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_STATUS_ASC', + StosByRaisingPortfolioIdSumStatusDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_STATUS_DESC', + StosByRaisingPortfolioIdSumStoIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_STO_ID_ASC', + StosByRaisingPortfolioIdSumStoIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_STO_ID_DESC', + StosByRaisingPortfolioIdSumTiersAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_TIERS_ASC', + StosByRaisingPortfolioIdSumTiersDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_TIERS_DESC', + StosByRaisingPortfolioIdSumUpdatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_UPDATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdSumUpdatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_UPDATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdSumVenueIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_VENUE_ID_ASC', + StosByRaisingPortfolioIdSumVenueIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_SUM_VENUE_ID_DESC', + StosByRaisingPortfolioIdVariancePopulationBlockRangeAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StosByRaisingPortfolioIdVariancePopulationBlockRangeDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StosByRaisingPortfolioIdVariancePopulationCreatedAtAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_AT_ASC', + StosByRaisingPortfolioIdVariancePopulationCreatedAtDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_AT_DESC', + StosByRaisingPortfolioIdVariancePopulationCreatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdVariancePopulationCreatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdVariancePopulationCreatorIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATOR_ID_ASC', + StosByRaisingPortfolioIdVariancePopulationCreatorIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_CREATOR_ID_DESC', + StosByRaisingPortfolioIdVariancePopulationEndAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_END_ASC', + StosByRaisingPortfolioIdVariancePopulationEndDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_END_DESC', + StosByRaisingPortfolioIdVariancePopulationIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_ID_ASC', + StosByRaisingPortfolioIdVariancePopulationIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_ID_DESC', + StosByRaisingPortfolioIdVariancePopulationMinimumInvestmentAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_ASC', + StosByRaisingPortfolioIdVariancePopulationMinimumInvestmentDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_MINIMUM_INVESTMENT_DESC', + StosByRaisingPortfolioIdVariancePopulationNameAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_NAME_ASC', + StosByRaisingPortfolioIdVariancePopulationNameDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_NAME_DESC', + StosByRaisingPortfolioIdVariancePopulationOfferingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_ASC', + StosByRaisingPortfolioIdVariancePopulationOfferingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_OFFERING_ASSET_ID_DESC', + StosByRaisingPortfolioIdVariancePopulationOfferingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdVariancePopulationOfferingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdVariancePopulationRaisingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_ASC', + StosByRaisingPortfolioIdVariancePopulationRaisingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_ASSET_ID_DESC', + StosByRaisingPortfolioIdVariancePopulationRaisingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdVariancePopulationRaisingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdVariancePopulationRaisingTickerAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_TICKER_ASC', + StosByRaisingPortfolioIdVariancePopulationRaisingTickerDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_RAISING_TICKER_DESC', + StosByRaisingPortfolioIdVariancePopulationStartAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_START_ASC', + StosByRaisingPortfolioIdVariancePopulationStartDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_START_DESC', + StosByRaisingPortfolioIdVariancePopulationStatusAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_STATUS_ASC', + StosByRaisingPortfolioIdVariancePopulationStatusDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_STATUS_DESC', + StosByRaisingPortfolioIdVariancePopulationStoIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_STO_ID_ASC', + StosByRaisingPortfolioIdVariancePopulationStoIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_STO_ID_DESC', + StosByRaisingPortfolioIdVariancePopulationTiersAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_TIERS_ASC', + StosByRaisingPortfolioIdVariancePopulationTiersDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_TIERS_DESC', + StosByRaisingPortfolioIdVariancePopulationUpdatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdVariancePopulationUpdatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdVariancePopulationVenueIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_VENUE_ID_ASC', + StosByRaisingPortfolioIdVariancePopulationVenueIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_POPULATION_VENUE_ID_DESC', + StosByRaisingPortfolioIdVarianceSampleBlockRangeAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StosByRaisingPortfolioIdVarianceSampleBlockRangeDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StosByRaisingPortfolioIdVarianceSampleCreatedAtAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_AT_ASC', + StosByRaisingPortfolioIdVarianceSampleCreatedAtDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_AT_DESC', + StosByRaisingPortfolioIdVarianceSampleCreatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdVarianceSampleCreatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdVarianceSampleCreatorIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATOR_ID_ASC', + StosByRaisingPortfolioIdVarianceSampleCreatorIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_CREATOR_ID_DESC', + StosByRaisingPortfolioIdVarianceSampleEndAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_END_ASC', + StosByRaisingPortfolioIdVarianceSampleEndDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_END_DESC', + StosByRaisingPortfolioIdVarianceSampleIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_ASC', + StosByRaisingPortfolioIdVarianceSampleIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_ID_DESC', + StosByRaisingPortfolioIdVarianceSampleMinimumInvestmentAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosByRaisingPortfolioIdVarianceSampleMinimumInvestmentDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosByRaisingPortfolioIdVarianceSampleNameAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_NAME_ASC', + StosByRaisingPortfolioIdVarianceSampleNameDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_NAME_DESC', + StosByRaisingPortfolioIdVarianceSampleOfferingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_ASC', + StosByRaisingPortfolioIdVarianceSampleOfferingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_OFFERING_ASSET_ID_DESC', + StosByRaisingPortfolioIdVarianceSampleOfferingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdVarianceSampleOfferingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdVarianceSampleRaisingAssetIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_ASC', + StosByRaisingPortfolioIdVarianceSampleRaisingAssetIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_ASSET_ID_DESC', + StosByRaisingPortfolioIdVarianceSampleRaisingPortfolioIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosByRaisingPortfolioIdVarianceSampleRaisingPortfolioIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosByRaisingPortfolioIdVarianceSampleRaisingTickerAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_TICKER_ASC', + StosByRaisingPortfolioIdVarianceSampleRaisingTickerDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_RAISING_TICKER_DESC', + StosByRaisingPortfolioIdVarianceSampleStartAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_START_ASC', + StosByRaisingPortfolioIdVarianceSampleStartDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_START_DESC', + StosByRaisingPortfolioIdVarianceSampleStatusAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_STATUS_ASC', + StosByRaisingPortfolioIdVarianceSampleStatusDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_STATUS_DESC', + StosByRaisingPortfolioIdVarianceSampleStoIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_STO_ID_ASC', + StosByRaisingPortfolioIdVarianceSampleStoIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_STO_ID_DESC', + StosByRaisingPortfolioIdVarianceSampleTiersAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_TIERS_ASC', + StosByRaisingPortfolioIdVarianceSampleTiersDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_TIERS_DESC', + StosByRaisingPortfolioIdVarianceSampleUpdatedBlockIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosByRaisingPortfolioIdVarianceSampleUpdatedBlockIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosByRaisingPortfolioIdVarianceSampleVenueIdAsc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_VENUE_ID_ASC', + StosByRaisingPortfolioIdVarianceSampleVenueIdDesc = 'STOS_BY_RAISING_PORTFOLIO_ID_VARIANCE_SAMPLE_VENUE_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type Proposal = Node & { + __typename?: 'Proposal'; + balance: Scalars['BigFloat']['output']; + /** Reads and enables pagination through a set of `Block`. */ + blocksByProposalVoteProposalIdAndCreatedBlockId: ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByProposalVoteProposalIdAndUpdatedBlockId: ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Proposal`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + description?: Maybe; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Identity` that is related to this `Proposal`. */ + owner?: Maybe; + ownerId: Scalars['String']['output']; + proposer: Scalars['JSON']['output']; + snapshotted: Scalars['Boolean']['output']; + state: ProposalStateEnum; + totalAyeWeight: Scalars['BigFloat']['output']; + totalNayWeight: Scalars['BigFloat']['output']; + /** Reads a single `Block` that is related to this `Proposal`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + url?: Maybe; + /** Reads and enables pagination through a set of `ProposalVote`. */ + votes: ProposalVotesConnection; +}; + +export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ProposalVotesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type ProposalAggregates = { + __typename?: 'ProposalAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Proposal` object types. */ +export type ProposalAggregatesFilter = { + /** Mean average aggregate over matching `Proposal` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Proposal` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Proposal` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Proposal` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Proposal` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Proposal` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Proposal` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Proposal` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Proposal` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Proposal` objects. */ + varianceSample?: InputMaybe; +}; + +export type ProposalAverageAggregateFilter = { + balance?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalAverageAggregates = { + __typename?: 'ProposalAverageAggregates'; + /** Mean average of balance across the matching connection */ + balance?: Maybe; + /** Mean average of totalAyeWeight across the matching connection */ + totalAyeWeight?: Maybe; + /** Mean average of totalNayWeight across the matching connection */ + totalNayWeight?: Maybe; +}; + +/** A connection to a list of `Block` values, with data from `ProposalVote`. */ +export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ProposalVote`. */ +export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ProposalVote`. */ +export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `ProposalVote`. */ + proposalVotesByCreatedBlockId: ProposalVotesConnection; +}; + +/** A `Block` edge in the connection, with data from `ProposalVote`. */ +export type ProposalBlocksByProposalVoteProposalIdAndCreatedBlockIdManyToManyEdgeProposalVotesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `ProposalVote`. */ +export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `ProposalVote`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `ProposalVote`. */ +export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `ProposalVote`. */ +export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `ProposalVote`. */ + proposalVotesByUpdatedBlockId: ProposalVotesConnection; +}; + +/** A `Block` edge in the connection, with data from `ProposalVote`. */ +export type ProposalBlocksByProposalVoteProposalIdAndUpdatedBlockIdManyToManyEdgeProposalVotesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type ProposalDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + balance?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + description?: InputMaybe; + id?: InputMaybe; + ownerId?: InputMaybe; + proposer?: InputMaybe; + snapshotted?: InputMaybe; + state?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; + updatedBlockId?: InputMaybe; + url?: InputMaybe; +}; + +export type ProposalDistinctCountAggregates = { + __typename?: 'ProposalDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of balance across the matching connection */ + balance?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of description across the matching connection */ + description?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of ownerId across the matching connection */ + ownerId?: Maybe; + /** Distinct count of proposer across the matching connection */ + proposer?: Maybe; + /** Distinct count of snapshotted across the matching connection */ + snapshotted?: Maybe; + /** Distinct count of state across the matching connection */ + state?: Maybe; + /** Distinct count of totalAyeWeight across the matching connection */ + totalAyeWeight?: Maybe; + /** Distinct count of totalNayWeight across the matching connection */ + totalNayWeight?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; + /** Distinct count of url across the matching connection */ + url?: Maybe; +}; + +/** A filter to be used against `Proposal` object types. All fields are combined with a logical ‘and.’ */ +export type ProposalFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `balance` field. */ + balance?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `description` field. */ + description?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `owner` relation. */ + owner?: InputMaybe; + /** Filter by the object’s `ownerId` field. */ + ownerId?: InputMaybe; + /** Filter by the object’s `proposer` field. */ + proposer?: InputMaybe; + /** Filter by the object’s `snapshotted` field. */ + snapshotted?: InputMaybe; + /** Filter by the object’s `state` field. */ + state?: InputMaybe; + /** Filter by the object’s `totalAyeWeight` field. */ + totalAyeWeight?: InputMaybe; + /** Filter by the object’s `totalNayWeight` field. */ + totalNayWeight?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `url` field. */ + url?: InputMaybe; + /** Filter by the object’s `votes` relation. */ + votes?: InputMaybe; + /** Some related `votes` exist. */ + votesExist?: InputMaybe; +}; + +export type ProposalMaxAggregateFilter = { + balance?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalMaxAggregates = { + __typename?: 'ProposalMaxAggregates'; + /** Maximum of balance across the matching connection */ + balance?: Maybe; + /** Maximum of totalAyeWeight across the matching connection */ + totalAyeWeight?: Maybe; + /** Maximum of totalNayWeight across the matching connection */ + totalNayWeight?: Maybe; +}; + +export type ProposalMinAggregateFilter = { + balance?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalMinAggregates = { + __typename?: 'ProposalMinAggregates'; + /** Minimum of balance across the matching connection */ + balance?: Maybe; + /** Minimum of totalAyeWeight across the matching connection */ + totalAyeWeight?: Maybe; + /** Minimum of totalNayWeight across the matching connection */ + totalNayWeight?: Maybe; +}; + +/** Represents all possible Proposal statuses */ +export enum ProposalStateEnum { + All = 'All', + Executed = 'Executed', + Expired = 'Expired', + Failed = 'Failed', + Pending = 'Pending', + Rejected = 'Rejected', + Scheduled = 'Scheduled', +} + +/** A filter to be used against ProposalStateEnum fields. All fields are combined with a logical ‘and.’ */ +export type ProposalStateEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type ProposalStddevPopulationAggregateFilter = { + balance?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalStddevPopulationAggregates = { + __typename?: 'ProposalStddevPopulationAggregates'; + /** Population standard deviation of balance across the matching connection */ + balance?: Maybe; + /** Population standard deviation of totalAyeWeight across the matching connection */ + totalAyeWeight?: Maybe; + /** Population standard deviation of totalNayWeight across the matching connection */ + totalNayWeight?: Maybe; +}; + +export type ProposalStddevSampleAggregateFilter = { + balance?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalStddevSampleAggregates = { + __typename?: 'ProposalStddevSampleAggregates'; + /** Sample standard deviation of balance across the matching connection */ + balance?: Maybe; + /** Sample standard deviation of totalAyeWeight across the matching connection */ + totalAyeWeight?: Maybe; + /** Sample standard deviation of totalNayWeight across the matching connection */ + totalNayWeight?: Maybe; +}; + +export type ProposalSumAggregateFilter = { + balance?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalSumAggregates = { + __typename?: 'ProposalSumAggregates'; + /** Sum of balance across the matching connection */ + balance: Scalars['BigFloat']['output']; + /** Sum of totalAyeWeight across the matching connection */ + totalAyeWeight: Scalars['BigFloat']['output']; + /** Sum of totalNayWeight across the matching connection */ + totalNayWeight: Scalars['BigFloat']['output']; +}; + +/** A filter to be used against many `ProposalVote` object types. All fields are combined with a logical ‘and.’ */ +export type ProposalToManyProposalVoteFilter = { + /** Aggregates across related `ProposalVote` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `ProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `ProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `ProposalVote` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +export type ProposalVariancePopulationAggregateFilter = { + balance?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalVariancePopulationAggregates = { + __typename?: 'ProposalVariancePopulationAggregates'; + /** Population variance of balance across the matching connection */ + balance?: Maybe; + /** Population variance of totalAyeWeight across the matching connection */ + totalAyeWeight?: Maybe; + /** Population variance of totalNayWeight across the matching connection */ + totalNayWeight?: Maybe; +}; + +export type ProposalVarianceSampleAggregateFilter = { + balance?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalVarianceSampleAggregates = { + __typename?: 'ProposalVarianceSampleAggregates'; + /** Sample variance of balance across the matching connection */ + balance?: Maybe; + /** Sample variance of totalAyeWeight across the matching connection */ + totalAyeWeight?: Maybe; + /** Sample variance of totalNayWeight across the matching connection */ + totalNayWeight?: Maybe; +}; + +export type ProposalVote = Node & { + __typename?: 'ProposalVote'; + account: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `ProposalVote`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Proposal` that is related to this `ProposalVote`. */ + proposal?: Maybe; + proposalId: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `ProposalVote`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + vote: Scalars['Boolean']['output']; + weight: Scalars['BigFloat']['output']; +}; + +export type ProposalVoteAggregates = { + __typename?: 'ProposalVoteAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `ProposalVote` object types. */ +export type ProposalVoteAggregatesFilter = { + /** Mean average aggregate over matching `ProposalVote` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `ProposalVote` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `ProposalVote` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `ProposalVote` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `ProposalVote` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `ProposalVote` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `ProposalVote` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `ProposalVote` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `ProposalVote` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `ProposalVote` objects. */ + varianceSample?: InputMaybe; +}; + +export type ProposalVoteAverageAggregateFilter = { + weight?: InputMaybe; +}; + +export type ProposalVoteAverageAggregates = { + __typename?: 'ProposalVoteAverageAggregates'; + /** Mean average of weight across the matching connection */ + weight?: Maybe; +}; + +export type ProposalVoteDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + account?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + proposalId?: InputMaybe; + updatedBlockId?: InputMaybe; + vote?: InputMaybe; + weight?: InputMaybe; +}; + +export type ProposalVoteDistinctCountAggregates = { + __typename?: 'ProposalVoteDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of account across the matching connection */ + account?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of proposalId across the matching connection */ + proposalId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; + /** Distinct count of vote across the matching connection */ + vote?: Maybe; + /** Distinct count of weight across the matching connection */ + weight?: Maybe; +}; + +/** A filter to be used against `ProposalVote` object types. All fields are combined with a logical ‘and.’ */ +export type ProposalVoteFilter = { + /** Filter by the object’s `account` field. */ + account?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `proposal` relation. */ + proposal?: InputMaybe; + /** Filter by the object’s `proposalId` field. */ + proposalId?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `vote` field. */ + vote?: InputMaybe; + /** Filter by the object’s `weight` field. */ + weight?: InputMaybe; +}; + +export type ProposalVoteMaxAggregateFilter = { + weight?: InputMaybe; +}; + +export type ProposalVoteMaxAggregates = { + __typename?: 'ProposalVoteMaxAggregates'; + /** Maximum of weight across the matching connection */ + weight?: Maybe; +}; + +export type ProposalVoteMinAggregateFilter = { + weight?: InputMaybe; +}; + +export type ProposalVoteMinAggregates = { + __typename?: 'ProposalVoteMinAggregates'; + /** Minimum of weight across the matching connection */ + weight?: Maybe; +}; + +export type ProposalVoteStddevPopulationAggregateFilter = { + weight?: InputMaybe; +}; + +export type ProposalVoteStddevPopulationAggregates = { + __typename?: 'ProposalVoteStddevPopulationAggregates'; + /** Population standard deviation of weight across the matching connection */ + weight?: Maybe; +}; + +export type ProposalVoteStddevSampleAggregateFilter = { + weight?: InputMaybe; +}; + +export type ProposalVoteStddevSampleAggregates = { + __typename?: 'ProposalVoteStddevSampleAggregates'; + /** Sample standard deviation of weight across the matching connection */ + weight?: Maybe; +}; + +export type ProposalVoteSumAggregateFilter = { + weight?: InputMaybe; +}; + +export type ProposalVoteSumAggregates = { + __typename?: 'ProposalVoteSumAggregates'; + /** Sum of weight across the matching connection */ + weight: Scalars['BigFloat']['output']; +}; + +export type ProposalVoteVariancePopulationAggregateFilter = { + weight?: InputMaybe; +}; + +export type ProposalVoteVariancePopulationAggregates = { + __typename?: 'ProposalVoteVariancePopulationAggregates'; + /** Population variance of weight across the matching connection */ + weight?: Maybe; +}; + +export type ProposalVoteVarianceSampleAggregateFilter = { + weight?: InputMaybe; +}; + +export type ProposalVoteVarianceSampleAggregates = { + __typename?: 'ProposalVoteVarianceSampleAggregates'; + /** Sample variance of weight across the matching connection */ + weight?: Maybe; +}; + +/** A connection to a list of `ProposalVote` values. */ +export type ProposalVotesConnection = { + __typename?: 'ProposalVotesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `ProposalVote` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `ProposalVote` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `ProposalVote` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `ProposalVote` values. */ +export type ProposalVotesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `ProposalVote` edge in the connection. */ +export type ProposalVotesEdge = { + __typename?: 'ProposalVotesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `ProposalVote` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `ProposalVote` for usage during aggregation. */ +export enum ProposalVotesGroupBy { + Account = 'ACCOUNT', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + ProposalId = 'PROPOSAL_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + Vote = 'VOTE', + Weight = 'WEIGHT', +} + +export type ProposalVotesHavingAverageInput = { + createdAt?: InputMaybe; + weight?: InputMaybe; +}; + +export type ProposalVotesHavingDistinctCountInput = { + createdAt?: InputMaybe; + weight?: InputMaybe; +}; + +/** Conditions for `ProposalVote` aggregates. */ +export type ProposalVotesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ProposalVotesHavingMaxInput = { + createdAt?: InputMaybe; + weight?: InputMaybe; +}; + +export type ProposalVotesHavingMinInput = { + createdAt?: InputMaybe; + weight?: InputMaybe; +}; + +export type ProposalVotesHavingStddevPopulationInput = { + createdAt?: InputMaybe; + weight?: InputMaybe; +}; + +export type ProposalVotesHavingStddevSampleInput = { + createdAt?: InputMaybe; + weight?: InputMaybe; +}; + +export type ProposalVotesHavingSumInput = { + createdAt?: InputMaybe; + weight?: InputMaybe; +}; + +export type ProposalVotesHavingVariancePopulationInput = { + createdAt?: InputMaybe; + weight?: InputMaybe; +}; + +export type ProposalVotesHavingVarianceSampleInput = { + createdAt?: InputMaybe; + weight?: InputMaybe; +}; + +/** Methods to use when ordering `ProposalVote`. */ +export enum ProposalVotesOrderBy { + AccountAsc = 'ACCOUNT_ASC', + AccountDesc = 'ACCOUNT_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ProposalIdAsc = 'PROPOSAL_ID_ASC', + ProposalIdDesc = 'PROPOSAL_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + VoteAsc = 'VOTE_ASC', + VoteDesc = 'VOTE_DESC', + WeightAsc = 'WEIGHT_ASC', + WeightDesc = 'WEIGHT_DESC', +} + +/** A connection to a list of `Proposal` values. */ +export type ProposalsConnection = { + __typename?: 'ProposalsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Proposal` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Proposal` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Proposal` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Proposal` values. */ +export type ProposalsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Proposal` edge in the connection. */ +export type ProposalsEdge = { + __typename?: 'ProposalsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Proposal` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Proposal` for usage during aggregation. */ +export enum ProposalsGroupBy { + Balance = 'BALANCE', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Description = 'DESCRIPTION', + Id = 'ID', + OwnerId = 'OWNER_ID', + Proposer = 'PROPOSER', + Snapshotted = 'SNAPSHOTTED', + State = 'STATE', + TotalAyeWeight = 'TOTAL_AYE_WEIGHT', + TotalNayWeight = 'TOTAL_NAY_WEIGHT', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + Url = 'URL', +} + +export type ProposalsHavingAverageInput = { + balance?: InputMaybe; + createdAt?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalsHavingDistinctCountInput = { + balance?: InputMaybe; + createdAt?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +/** Conditions for `Proposal` aggregates. */ +export type ProposalsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type ProposalsHavingMaxInput = { + balance?: InputMaybe; + createdAt?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalsHavingMinInput = { + balance?: InputMaybe; + createdAt?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalsHavingStddevPopulationInput = { + balance?: InputMaybe; + createdAt?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalsHavingStddevSampleInput = { + balance?: InputMaybe; + createdAt?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalsHavingSumInput = { + balance?: InputMaybe; + createdAt?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalsHavingVariancePopulationInput = { + balance?: InputMaybe; + createdAt?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +export type ProposalsHavingVarianceSampleInput = { + balance?: InputMaybe; + createdAt?: InputMaybe; + totalAyeWeight?: InputMaybe; + totalNayWeight?: InputMaybe; +}; + +/** Methods to use when ordering `Proposal`. */ +export enum ProposalsOrderBy { + BalanceAsc = 'BALANCE_ASC', + BalanceDesc = 'BALANCE_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DescriptionAsc = 'DESCRIPTION_ASC', + DescriptionDesc = 'DESCRIPTION_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + OwnerIdAsc = 'OWNER_ID_ASC', + OwnerIdDesc = 'OWNER_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + ProposerAsc = 'PROPOSER_ASC', + ProposerDesc = 'PROPOSER_DESC', + SnapshottedAsc = 'SNAPSHOTTED_ASC', + SnapshottedDesc = 'SNAPSHOTTED_DESC', + StateAsc = 'STATE_ASC', + StateDesc = 'STATE_DESC', + TotalAyeWeightAsc = 'TOTAL_AYE_WEIGHT_ASC', + TotalAyeWeightDesc = 'TOTAL_AYE_WEIGHT_DESC', + TotalNayWeightAsc = 'TOTAL_NAY_WEIGHT_ASC', + TotalNayWeightDesc = 'TOTAL_NAY_WEIGHT_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + UrlAsc = 'URL_ASC', + UrlDesc = 'URL_DESC', + VotesAverageAccountAsc = 'VOTES_AVERAGE_ACCOUNT_ASC', + VotesAverageAccountDesc = 'VOTES_AVERAGE_ACCOUNT_DESC', + VotesAverageBlockRangeAsc = 'VOTES_AVERAGE_BLOCK_RANGE_ASC', + VotesAverageBlockRangeDesc = 'VOTES_AVERAGE_BLOCK_RANGE_DESC', + VotesAverageCreatedAtAsc = 'VOTES_AVERAGE_CREATED_AT_ASC', + VotesAverageCreatedAtDesc = 'VOTES_AVERAGE_CREATED_AT_DESC', + VotesAverageCreatedBlockIdAsc = 'VOTES_AVERAGE_CREATED_BLOCK_ID_ASC', + VotesAverageCreatedBlockIdDesc = 'VOTES_AVERAGE_CREATED_BLOCK_ID_DESC', + VotesAverageIdAsc = 'VOTES_AVERAGE_ID_ASC', + VotesAverageIdDesc = 'VOTES_AVERAGE_ID_DESC', + VotesAverageProposalIdAsc = 'VOTES_AVERAGE_PROPOSAL_ID_ASC', + VotesAverageProposalIdDesc = 'VOTES_AVERAGE_PROPOSAL_ID_DESC', + VotesAverageUpdatedBlockIdAsc = 'VOTES_AVERAGE_UPDATED_BLOCK_ID_ASC', + VotesAverageUpdatedBlockIdDesc = 'VOTES_AVERAGE_UPDATED_BLOCK_ID_DESC', + VotesAverageVoteAsc = 'VOTES_AVERAGE_VOTE_ASC', + VotesAverageVoteDesc = 'VOTES_AVERAGE_VOTE_DESC', + VotesAverageWeightAsc = 'VOTES_AVERAGE_WEIGHT_ASC', + VotesAverageWeightDesc = 'VOTES_AVERAGE_WEIGHT_DESC', + VotesCountAsc = 'VOTES_COUNT_ASC', + VotesCountDesc = 'VOTES_COUNT_DESC', + VotesDistinctCountAccountAsc = 'VOTES_DISTINCT_COUNT_ACCOUNT_ASC', + VotesDistinctCountAccountDesc = 'VOTES_DISTINCT_COUNT_ACCOUNT_DESC', + VotesDistinctCountBlockRangeAsc = 'VOTES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + VotesDistinctCountBlockRangeDesc = 'VOTES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + VotesDistinctCountCreatedAtAsc = 'VOTES_DISTINCT_COUNT_CREATED_AT_ASC', + VotesDistinctCountCreatedAtDesc = 'VOTES_DISTINCT_COUNT_CREATED_AT_DESC', + VotesDistinctCountCreatedBlockIdAsc = 'VOTES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + VotesDistinctCountCreatedBlockIdDesc = 'VOTES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + VotesDistinctCountIdAsc = 'VOTES_DISTINCT_COUNT_ID_ASC', + VotesDistinctCountIdDesc = 'VOTES_DISTINCT_COUNT_ID_DESC', + VotesDistinctCountProposalIdAsc = 'VOTES_DISTINCT_COUNT_PROPOSAL_ID_ASC', + VotesDistinctCountProposalIdDesc = 'VOTES_DISTINCT_COUNT_PROPOSAL_ID_DESC', + VotesDistinctCountUpdatedBlockIdAsc = 'VOTES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + VotesDistinctCountUpdatedBlockIdDesc = 'VOTES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + VotesDistinctCountVoteAsc = 'VOTES_DISTINCT_COUNT_VOTE_ASC', + VotesDistinctCountVoteDesc = 'VOTES_DISTINCT_COUNT_VOTE_DESC', + VotesDistinctCountWeightAsc = 'VOTES_DISTINCT_COUNT_WEIGHT_ASC', + VotesDistinctCountWeightDesc = 'VOTES_DISTINCT_COUNT_WEIGHT_DESC', + VotesMaxAccountAsc = 'VOTES_MAX_ACCOUNT_ASC', + VotesMaxAccountDesc = 'VOTES_MAX_ACCOUNT_DESC', + VotesMaxBlockRangeAsc = 'VOTES_MAX_BLOCK_RANGE_ASC', + VotesMaxBlockRangeDesc = 'VOTES_MAX_BLOCK_RANGE_DESC', + VotesMaxCreatedAtAsc = 'VOTES_MAX_CREATED_AT_ASC', + VotesMaxCreatedAtDesc = 'VOTES_MAX_CREATED_AT_DESC', + VotesMaxCreatedBlockIdAsc = 'VOTES_MAX_CREATED_BLOCK_ID_ASC', + VotesMaxCreatedBlockIdDesc = 'VOTES_MAX_CREATED_BLOCK_ID_DESC', + VotesMaxIdAsc = 'VOTES_MAX_ID_ASC', + VotesMaxIdDesc = 'VOTES_MAX_ID_DESC', + VotesMaxProposalIdAsc = 'VOTES_MAX_PROPOSAL_ID_ASC', + VotesMaxProposalIdDesc = 'VOTES_MAX_PROPOSAL_ID_DESC', + VotesMaxUpdatedBlockIdAsc = 'VOTES_MAX_UPDATED_BLOCK_ID_ASC', + VotesMaxUpdatedBlockIdDesc = 'VOTES_MAX_UPDATED_BLOCK_ID_DESC', + VotesMaxVoteAsc = 'VOTES_MAX_VOTE_ASC', + VotesMaxVoteDesc = 'VOTES_MAX_VOTE_DESC', + VotesMaxWeightAsc = 'VOTES_MAX_WEIGHT_ASC', + VotesMaxWeightDesc = 'VOTES_MAX_WEIGHT_DESC', + VotesMinAccountAsc = 'VOTES_MIN_ACCOUNT_ASC', + VotesMinAccountDesc = 'VOTES_MIN_ACCOUNT_DESC', + VotesMinBlockRangeAsc = 'VOTES_MIN_BLOCK_RANGE_ASC', + VotesMinBlockRangeDesc = 'VOTES_MIN_BLOCK_RANGE_DESC', + VotesMinCreatedAtAsc = 'VOTES_MIN_CREATED_AT_ASC', + VotesMinCreatedAtDesc = 'VOTES_MIN_CREATED_AT_DESC', + VotesMinCreatedBlockIdAsc = 'VOTES_MIN_CREATED_BLOCK_ID_ASC', + VotesMinCreatedBlockIdDesc = 'VOTES_MIN_CREATED_BLOCK_ID_DESC', + VotesMinIdAsc = 'VOTES_MIN_ID_ASC', + VotesMinIdDesc = 'VOTES_MIN_ID_DESC', + VotesMinProposalIdAsc = 'VOTES_MIN_PROPOSAL_ID_ASC', + VotesMinProposalIdDesc = 'VOTES_MIN_PROPOSAL_ID_DESC', + VotesMinUpdatedBlockIdAsc = 'VOTES_MIN_UPDATED_BLOCK_ID_ASC', + VotesMinUpdatedBlockIdDesc = 'VOTES_MIN_UPDATED_BLOCK_ID_DESC', + VotesMinVoteAsc = 'VOTES_MIN_VOTE_ASC', + VotesMinVoteDesc = 'VOTES_MIN_VOTE_DESC', + VotesMinWeightAsc = 'VOTES_MIN_WEIGHT_ASC', + VotesMinWeightDesc = 'VOTES_MIN_WEIGHT_DESC', + VotesStddevPopulationAccountAsc = 'VOTES_STDDEV_POPULATION_ACCOUNT_ASC', + VotesStddevPopulationAccountDesc = 'VOTES_STDDEV_POPULATION_ACCOUNT_DESC', + VotesStddevPopulationBlockRangeAsc = 'VOTES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + VotesStddevPopulationBlockRangeDesc = 'VOTES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + VotesStddevPopulationCreatedAtAsc = 'VOTES_STDDEV_POPULATION_CREATED_AT_ASC', + VotesStddevPopulationCreatedAtDesc = 'VOTES_STDDEV_POPULATION_CREATED_AT_DESC', + VotesStddevPopulationCreatedBlockIdAsc = 'VOTES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + VotesStddevPopulationCreatedBlockIdDesc = 'VOTES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + VotesStddevPopulationIdAsc = 'VOTES_STDDEV_POPULATION_ID_ASC', + VotesStddevPopulationIdDesc = 'VOTES_STDDEV_POPULATION_ID_DESC', + VotesStddevPopulationProposalIdAsc = 'VOTES_STDDEV_POPULATION_PROPOSAL_ID_ASC', + VotesStddevPopulationProposalIdDesc = 'VOTES_STDDEV_POPULATION_PROPOSAL_ID_DESC', + VotesStddevPopulationUpdatedBlockIdAsc = 'VOTES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + VotesStddevPopulationUpdatedBlockIdDesc = 'VOTES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + VotesStddevPopulationVoteAsc = 'VOTES_STDDEV_POPULATION_VOTE_ASC', + VotesStddevPopulationVoteDesc = 'VOTES_STDDEV_POPULATION_VOTE_DESC', + VotesStddevPopulationWeightAsc = 'VOTES_STDDEV_POPULATION_WEIGHT_ASC', + VotesStddevPopulationWeightDesc = 'VOTES_STDDEV_POPULATION_WEIGHT_DESC', + VotesStddevSampleAccountAsc = 'VOTES_STDDEV_SAMPLE_ACCOUNT_ASC', + VotesStddevSampleAccountDesc = 'VOTES_STDDEV_SAMPLE_ACCOUNT_DESC', + VotesStddevSampleBlockRangeAsc = 'VOTES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + VotesStddevSampleBlockRangeDesc = 'VOTES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + VotesStddevSampleCreatedAtAsc = 'VOTES_STDDEV_SAMPLE_CREATED_AT_ASC', + VotesStddevSampleCreatedAtDesc = 'VOTES_STDDEV_SAMPLE_CREATED_AT_DESC', + VotesStddevSampleCreatedBlockIdAsc = 'VOTES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + VotesStddevSampleCreatedBlockIdDesc = 'VOTES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + VotesStddevSampleIdAsc = 'VOTES_STDDEV_SAMPLE_ID_ASC', + VotesStddevSampleIdDesc = 'VOTES_STDDEV_SAMPLE_ID_DESC', + VotesStddevSampleProposalIdAsc = 'VOTES_STDDEV_SAMPLE_PROPOSAL_ID_ASC', + VotesStddevSampleProposalIdDesc = 'VOTES_STDDEV_SAMPLE_PROPOSAL_ID_DESC', + VotesStddevSampleUpdatedBlockIdAsc = 'VOTES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + VotesStddevSampleUpdatedBlockIdDesc = 'VOTES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + VotesStddevSampleVoteAsc = 'VOTES_STDDEV_SAMPLE_VOTE_ASC', + VotesStddevSampleVoteDesc = 'VOTES_STDDEV_SAMPLE_VOTE_DESC', + VotesStddevSampleWeightAsc = 'VOTES_STDDEV_SAMPLE_WEIGHT_ASC', + VotesStddevSampleWeightDesc = 'VOTES_STDDEV_SAMPLE_WEIGHT_DESC', + VotesSumAccountAsc = 'VOTES_SUM_ACCOUNT_ASC', + VotesSumAccountDesc = 'VOTES_SUM_ACCOUNT_DESC', + VotesSumBlockRangeAsc = 'VOTES_SUM_BLOCK_RANGE_ASC', + VotesSumBlockRangeDesc = 'VOTES_SUM_BLOCK_RANGE_DESC', + VotesSumCreatedAtAsc = 'VOTES_SUM_CREATED_AT_ASC', + VotesSumCreatedAtDesc = 'VOTES_SUM_CREATED_AT_DESC', + VotesSumCreatedBlockIdAsc = 'VOTES_SUM_CREATED_BLOCK_ID_ASC', + VotesSumCreatedBlockIdDesc = 'VOTES_SUM_CREATED_BLOCK_ID_DESC', + VotesSumIdAsc = 'VOTES_SUM_ID_ASC', + VotesSumIdDesc = 'VOTES_SUM_ID_DESC', + VotesSumProposalIdAsc = 'VOTES_SUM_PROPOSAL_ID_ASC', + VotesSumProposalIdDesc = 'VOTES_SUM_PROPOSAL_ID_DESC', + VotesSumUpdatedBlockIdAsc = 'VOTES_SUM_UPDATED_BLOCK_ID_ASC', + VotesSumUpdatedBlockIdDesc = 'VOTES_SUM_UPDATED_BLOCK_ID_DESC', + VotesSumVoteAsc = 'VOTES_SUM_VOTE_ASC', + VotesSumVoteDesc = 'VOTES_SUM_VOTE_DESC', + VotesSumWeightAsc = 'VOTES_SUM_WEIGHT_ASC', + VotesSumWeightDesc = 'VOTES_SUM_WEIGHT_DESC', + VotesVariancePopulationAccountAsc = 'VOTES_VARIANCE_POPULATION_ACCOUNT_ASC', + VotesVariancePopulationAccountDesc = 'VOTES_VARIANCE_POPULATION_ACCOUNT_DESC', + VotesVariancePopulationBlockRangeAsc = 'VOTES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + VotesVariancePopulationBlockRangeDesc = 'VOTES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + VotesVariancePopulationCreatedAtAsc = 'VOTES_VARIANCE_POPULATION_CREATED_AT_ASC', + VotesVariancePopulationCreatedAtDesc = 'VOTES_VARIANCE_POPULATION_CREATED_AT_DESC', + VotesVariancePopulationCreatedBlockIdAsc = 'VOTES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + VotesVariancePopulationCreatedBlockIdDesc = 'VOTES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + VotesVariancePopulationIdAsc = 'VOTES_VARIANCE_POPULATION_ID_ASC', + VotesVariancePopulationIdDesc = 'VOTES_VARIANCE_POPULATION_ID_DESC', + VotesVariancePopulationProposalIdAsc = 'VOTES_VARIANCE_POPULATION_PROPOSAL_ID_ASC', + VotesVariancePopulationProposalIdDesc = 'VOTES_VARIANCE_POPULATION_PROPOSAL_ID_DESC', + VotesVariancePopulationUpdatedBlockIdAsc = 'VOTES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + VotesVariancePopulationUpdatedBlockIdDesc = 'VOTES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + VotesVariancePopulationVoteAsc = 'VOTES_VARIANCE_POPULATION_VOTE_ASC', + VotesVariancePopulationVoteDesc = 'VOTES_VARIANCE_POPULATION_VOTE_DESC', + VotesVariancePopulationWeightAsc = 'VOTES_VARIANCE_POPULATION_WEIGHT_ASC', + VotesVariancePopulationWeightDesc = 'VOTES_VARIANCE_POPULATION_WEIGHT_DESC', + VotesVarianceSampleAccountAsc = 'VOTES_VARIANCE_SAMPLE_ACCOUNT_ASC', + VotesVarianceSampleAccountDesc = 'VOTES_VARIANCE_SAMPLE_ACCOUNT_DESC', + VotesVarianceSampleBlockRangeAsc = 'VOTES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + VotesVarianceSampleBlockRangeDesc = 'VOTES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + VotesVarianceSampleCreatedAtAsc = 'VOTES_VARIANCE_SAMPLE_CREATED_AT_ASC', + VotesVarianceSampleCreatedAtDesc = 'VOTES_VARIANCE_SAMPLE_CREATED_AT_DESC', + VotesVarianceSampleCreatedBlockIdAsc = 'VOTES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + VotesVarianceSampleCreatedBlockIdDesc = 'VOTES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + VotesVarianceSampleIdAsc = 'VOTES_VARIANCE_SAMPLE_ID_ASC', + VotesVarianceSampleIdDesc = 'VOTES_VARIANCE_SAMPLE_ID_DESC', + VotesVarianceSampleProposalIdAsc = 'VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_ASC', + VotesVarianceSampleProposalIdDesc = 'VOTES_VARIANCE_SAMPLE_PROPOSAL_ID_DESC', + VotesVarianceSampleUpdatedBlockIdAsc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + VotesVarianceSampleUpdatedBlockIdDesc = 'VOTES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + VotesVarianceSampleVoteAsc = 'VOTES_VARIANCE_SAMPLE_VOTE_ASC', + VotesVarianceSampleVoteDesc = 'VOTES_VARIANCE_SAMPLE_VOTE_DESC', + VotesVarianceSampleWeightAsc = 'VOTES_VARIANCE_SAMPLE_WEIGHT_ASC', + VotesVarianceSampleWeightDesc = 'VOTES_VARIANCE_SAMPLE_WEIGHT_DESC', +} + +/** The root query type which gives access points into the data universe. */ +export type Query = Node & { + __typename?: 'Query'; + _metadata?: Maybe<_Metadata>; + _metadatas?: Maybe<_Metadatas>; + account?: Maybe; + /** Reads a single `Account` using its globally unique `ID`. */ + accountByNodeId?: Maybe; + /** Reads and enables pagination through a set of `AccountHistory`. */ + accountHistories?: Maybe; + accountHistory?: Maybe; + /** Reads a single `AccountHistory` using its globally unique `ID`. */ + accountHistoryByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Account`. */ + accounts?: Maybe; + agentGroup?: Maybe; + /** Reads a single `AgentGroup` using its globally unique `ID`. */ + agentGroupByNodeId?: Maybe; + agentGroupMembership?: Maybe; + /** Reads a single `AgentGroupMembership` using its globally unique `ID`. */ + agentGroupMembershipByNodeId?: Maybe; + /** Reads and enables pagination through a set of `AgentGroupMembership`. */ + agentGroupMemberships?: Maybe; + /** Reads and enables pagination through a set of `AgentGroup`. */ + agentGroups?: Maybe; + asset?: Maybe; + /** Reads a single `Asset` using its globally unique `ID`. */ + assetByNodeId?: Maybe; + assetDocument?: Maybe; + /** Reads a single `AssetDocument` using its globally unique `ID`. */ + assetDocumentByNodeId?: Maybe; + /** Reads and enables pagination through a set of `AssetDocument`. */ + assetDocuments?: Maybe; + assetHolder?: Maybe; + /** Reads a single `AssetHolder` using its globally unique `ID`. */ + assetHolderByNodeId?: Maybe; + /** Reads and enables pagination through a set of `AssetHolder`. */ + assetHolders?: Maybe; + assetMandatoryMediator?: Maybe; + /** Reads a single `AssetMandatoryMediator` using its globally unique `ID`. */ + assetMandatoryMediatorByNodeId?: Maybe; + /** Reads and enables pagination through a set of `AssetMandatoryMediator`. */ + assetMandatoryMediators?: Maybe; + assetPreApproval?: Maybe; + /** Reads a single `AssetPreApproval` using its globally unique `ID`. */ + assetPreApprovalByNodeId?: Maybe; + /** Reads and enables pagination through a set of `AssetPreApproval`. */ + assetPreApprovals?: Maybe; + assetTransaction?: Maybe; + /** Reads a single `AssetTransaction` using its globally unique `ID`. */ + assetTransactionByNodeId?: Maybe; + /** Reads and enables pagination through a set of `AssetTransaction`. */ + assetTransactions?: Maybe; + /** Reads and enables pagination through a set of `Asset`. */ + assets?: Maybe; + authorization?: Maybe; + /** Reads a single `Authorization` using its globally unique `ID`. */ + authorizationByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Authorization`. */ + authorizations?: Maybe; + block?: Maybe; + /** Reads a single `Block` using its globally unique `ID`. */ + blockByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Block`. */ + blocks?: Maybe; + bridgeEvent?: Maybe; + /** Reads a single `BridgeEvent` using its globally unique `ID`. */ + bridgeEventByNodeId?: Maybe; + /** Reads and enables pagination through a set of `BridgeEvent`. */ + bridgeEvents?: Maybe; + /** Reads and enables pagination through a set of `ChildIdentity`. */ + childIdentities?: Maybe; + childIdentity?: Maybe; + /** Reads a single `ChildIdentity` using its globally unique `ID`. */ + childIdentityByNodeId?: Maybe; + claim?: Maybe; + /** Reads a single `Claim` using its globally unique `ID`. */ + claimByNodeId?: Maybe; + claimScope?: Maybe; + /** Reads a single `ClaimScope` using its globally unique `ID`. */ + claimScopeByNodeId?: Maybe; + /** Reads and enables pagination through a set of `ClaimScope`. */ + claimScopes?: Maybe; + /** Reads and enables pagination through a set of `Claim`. */ + claims?: Maybe; + compliance?: Maybe; + /** Reads a single `Compliance` using its globally unique `ID`. */ + complianceByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Compliance`. */ + compliances?: Maybe; + confidentialAccount?: Maybe; + /** Reads a single `ConfidentialAccount` using its globally unique `ID`. */ + confidentialAccountByNodeId?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialAccount`. */ + confidentialAccounts?: Maybe; + confidentialAsset?: Maybe; + /** Reads a single `ConfidentialAsset` using its globally unique `ID`. */ + confidentialAssetByNodeId?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialAssetHistory`. */ + confidentialAssetHistories?: Maybe; + confidentialAssetHistory?: Maybe; + /** Reads a single `ConfidentialAssetHistory` using its globally unique `ID`. */ + confidentialAssetHistoryByNodeId?: Maybe; + confidentialAssetHolder?: Maybe; + /** Reads a single `ConfidentialAssetHolder` using its globally unique `ID`. */ + confidentialAssetHolderByNodeId?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialAssetHolder`. */ + confidentialAssetHolders?: Maybe; + confidentialAssetMovement?: Maybe; + /** Reads a single `ConfidentialAssetMovement` using its globally unique `ID`. */ + confidentialAssetMovementByNodeId?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialAssetMovement`. */ + confidentialAssetMovements?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialAsset`. */ + confidentialAssets?: Maybe; + confidentialLeg?: Maybe; + /** Reads a single `ConfidentialLeg` using its globally unique `ID`. */ + confidentialLegByNodeId?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialLeg`. */ + confidentialLegs?: Maybe; + confidentialTransaction?: Maybe; + confidentialTransactionAffirmation?: Maybe; + /** Reads a single `ConfidentialTransactionAffirmation` using its globally unique `ID`. */ + confidentialTransactionAffirmationByNodeId?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialTransactionAffirmation`. */ + confidentialTransactionAffirmations?: Maybe; + /** Reads a single `ConfidentialTransaction` using its globally unique `ID`. */ + confidentialTransactionByNodeId?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialTransaction`. */ + confidentialTransactions?: Maybe; + confidentialVenue?: Maybe; + /** Reads a single `ConfidentialVenue` using its globally unique `ID`. */ + confidentialVenueByNodeId?: Maybe; + /** Reads and enables pagination through a set of `ConfidentialVenue`. */ + confidentialVenues?: Maybe; + customClaimType?: Maybe; + /** Reads a single `CustomClaimType` using its globally unique `ID`. */ + customClaimTypeByNodeId?: Maybe; + /** Reads and enables pagination through a set of `CustomClaimType`. */ + customClaimTypes?: Maybe; + debug?: Maybe; + /** Reads a single `Debug` using its globally unique `ID`. */ + debugByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Debug`. */ + debugs?: Maybe; + distribution?: Maybe; + /** Reads a single `Distribution` using its globally unique `ID`. */ + distributionByNodeId?: Maybe; + distributionPayment?: Maybe; + /** Reads a single `DistributionPayment` using its globally unique `ID`. */ + distributionPaymentByNodeId?: Maybe; + /** Reads and enables pagination through a set of `DistributionPayment`. */ + distributionPayments?: Maybe; + /** Reads and enables pagination through a set of `Distribution`. */ + distributions?: Maybe; + event?: Maybe; + /** Reads a single `Event` using its globally unique `ID`. */ + eventByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Event`. */ + events?: Maybe; + extrinsic?: Maybe; + /** Reads a single `Extrinsic` using its globally unique `ID`. */ + extrinsicByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Extrinsic`. */ + extrinsics?: Maybe; + foundType?: Maybe; + /** Reads a single `FoundType` using its globally unique `ID`. */ + foundTypeByNodeId?: Maybe; + /** Reads and enables pagination through a set of `FoundType`. */ + foundTypes?: Maybe; + funding?: Maybe; + /** Reads a single `Funding` using its globally unique `ID`. */ + fundingByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Funding`. */ + fundings?: Maybe; + /** Reads and enables pagination through a set of `Identity`. */ + identities?: Maybe; + identity?: Maybe; + /** Reads a single `Identity` using its globally unique `ID`. */ + identityByNodeId?: Maybe; + instruction?: Maybe; + instructionAffirmation?: Maybe; + /** Reads a single `InstructionAffirmation` using its globally unique `ID`. */ + instructionAffirmationByNodeId?: Maybe; + /** Reads and enables pagination through a set of `InstructionAffirmation`. */ + instructionAffirmations?: Maybe; + /** Reads a single `Instruction` using its globally unique `ID`. */ + instructionByNodeId?: Maybe; + instructionEvent?: Maybe; + /** Reads a single `InstructionEvent` using its globally unique `ID`. */ + instructionEventByNodeId?: Maybe; + /** Reads and enables pagination through a set of `InstructionEvent`. */ + instructionEvents?: Maybe; + /** Reads and enables pagination through a set of `InstructionParty`. */ + instructionParties?: Maybe; + instructionParty?: Maybe; + /** Reads a single `InstructionParty` using its globally unique `ID`. */ + instructionPartyByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Instruction`. */ + instructions?: Maybe; + investment?: Maybe; + /** Reads a single `Investment` using its globally unique `ID`. */ + investmentByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Investment`. */ + investments?: Maybe; + leg?: Maybe; + /** Reads a single `Leg` using its globally unique `ID`. */ + legByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Leg`. */ + legs?: Maybe; + migration?: Maybe; + /** Reads a single `Migration` using its globally unique `ID`. */ + migrationByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Migration`. */ + migrations?: Maybe; + multiSig?: Maybe; + /** Reads a single `MultiSig` using its globally unique `ID`. */ + multiSigByNodeId?: Maybe; + multiSigProposal?: Maybe; + /** Reads a single `MultiSigProposal` using its globally unique `ID`. */ + multiSigProposalByNodeId?: Maybe; + multiSigProposalVote?: Maybe; + /** Reads a single `MultiSigProposalVote` using its globally unique `ID`. */ + multiSigProposalVoteByNodeId?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposalVote`. */ + multiSigProposalVotes?: Maybe; + /** Reads and enables pagination through a set of `MultiSigProposal`. */ + multiSigProposals?: Maybe; + multiSigSigner?: Maybe; + /** Reads a single `MultiSigSigner` using its globally unique `ID`. */ + multiSigSignerByNodeId?: Maybe; + /** Reads and enables pagination through a set of `MultiSigSigner`. */ + multiSigSigners?: Maybe; + /** Reads and enables pagination through a set of `MultiSig`. */ + multiSigs?: Maybe; + nftHolder?: Maybe; + /** Reads a single `NftHolder` using its globally unique `ID`. */ + nftHolderByNodeId?: Maybe; + /** Reads and enables pagination through a set of `NftHolder`. */ + nftHolders?: Maybe; + /** Fetches an object given its globally unique `ID`. */ + node?: Maybe; + /** The root query type must be a `Node` to work well with Relay 1 mutations. This just resolves to `query`. */ + nodeId: Scalars['ID']['output']; + offChainReceipt?: Maybe; + /** Reads a single `OffChainReceipt` using its globally unique `ID`. */ + offChainReceiptByNodeId?: Maybe; + /** Reads and enables pagination through a set of `OffChainReceipt`. */ + offChainReceipts?: Maybe; + permission?: Maybe; + /** Reads a single `Permission` using its globally unique `ID`. */ + permissionByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Permission`. */ + permissions?: Maybe; + polyxTransaction?: Maybe; + /** Reads a single `PolyxTransaction` using its globally unique `ID`. */ + polyxTransactionByNodeId?: Maybe; + /** Reads and enables pagination through a set of `PolyxTransaction`. */ + polyxTransactions?: Maybe; + portfolio?: Maybe; + /** Reads a single `Portfolio` using its globally unique `ID`. */ + portfolioByNodeId?: Maybe; + portfolioMovement?: Maybe; + /** Reads a single `PortfolioMovement` using its globally unique `ID`. */ + portfolioMovementByNodeId?: Maybe; + /** Reads and enables pagination through a set of `PortfolioMovement`. */ + portfolioMovements?: Maybe; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfolios?: Maybe; + proposal?: Maybe; + /** Reads a single `Proposal` using its globally unique `ID`. */ + proposalByNodeId?: Maybe; + proposalVote?: Maybe; + /** Reads a single `ProposalVote` using its globally unique `ID`. */ + proposalVoteByNodeId?: Maybe; + /** Reads and enables pagination through a set of `ProposalVote`. */ + proposalVotes?: Maybe; + /** Reads and enables pagination through a set of `Proposal`. */ + proposals?: Maybe; + /** + * Exposes the root query type nested one level down. This is helpful for Relay 1 + * which can only query top level fields if they are in a particular form. + */ + query: Query; + stakingEvent?: Maybe; + /** Reads a single `StakingEvent` using its globally unique `ID`. */ + stakingEventByNodeId?: Maybe; + /** Reads and enables pagination through a set of `StakingEvent`. */ + stakingEvents?: Maybe; + statType?: Maybe; + /** Reads a single `StatType` using its globally unique `ID`. */ + statTypeByNodeId?: Maybe; + /** Reads and enables pagination through a set of `StatType`. */ + statTypes?: Maybe; + sto?: Maybe; + /** Reads a single `Sto` using its globally unique `ID`. */ + stoByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stos?: Maybe; + subqueryVersion?: Maybe; + /** Reads a single `SubqueryVersion` using its globally unique `ID`. */ + subqueryVersionByNodeId?: Maybe; + /** Reads and enables pagination through a set of `SubqueryVersion`. */ + subqueryVersions?: Maybe; + tickerExternalAgent?: Maybe; + tickerExternalAgentAction?: Maybe; + /** Reads a single `TickerExternalAgentAction` using its globally unique `ID`. */ + tickerExternalAgentActionByNodeId?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentAction`. */ + tickerExternalAgentActions?: Maybe; + /** Reads a single `TickerExternalAgent` using its globally unique `ID`. */ + tickerExternalAgentByNodeId?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgentHistory`. */ + tickerExternalAgentHistories?: Maybe; + tickerExternalAgentHistory?: Maybe; + /** Reads a single `TickerExternalAgentHistory` using its globally unique `ID`. */ + tickerExternalAgentHistoryByNodeId?: Maybe; + /** Reads and enables pagination through a set of `TickerExternalAgent`. */ + tickerExternalAgents?: Maybe; + transferCompliance?: Maybe; + /** Reads a single `TransferCompliance` using its globally unique `ID`. */ + transferComplianceByNodeId?: Maybe; + transferComplianceExemption?: Maybe; + /** Reads a single `TransferComplianceExemption` using its globally unique `ID`. */ + transferComplianceExemptionByNodeId?: Maybe; + /** Reads and enables pagination through a set of `TransferComplianceExemption`. */ + transferComplianceExemptions?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliances?: Maybe; + transferManager?: Maybe; + /** Reads a single `TransferManager` using its globally unique `ID`. */ + transferManagerByNodeId?: Maybe; + /** Reads and enables pagination through a set of `TransferManager`. */ + transferManagers?: Maybe; + trustedClaimIssuer?: Maybe; + /** Reads a single `TrustedClaimIssuer` using its globally unique `ID`. */ + trustedClaimIssuerByNodeId?: Maybe; + /** Reads and enables pagination through a set of `TrustedClaimIssuer`. */ + trustedClaimIssuers?: Maybe; + venue?: Maybe; + /** Reads a single `Venue` using its globally unique `ID`. */ + venueByNodeId?: Maybe; + /** Reads and enables pagination through a set of `Venue`. */ + venues?: Maybe; +}; + +/** The root query type which gives access points into the data universe. */ +export type Query_MetadataArgs = { + chainId?: InputMaybe; +}; + +/** The root query type which gives access points into the data universe. */ +export type Query_MetadatasArgs = { + after?: InputMaybe; + before?: InputMaybe; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAccountArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAccountByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAccountHistoriesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAccountHistoryArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAccountHistoryByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAccountsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAgentGroupArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAgentGroupByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAgentGroupMembershipArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAgentGroupMembershipByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAgentGroupMembershipsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAgentGroupsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetDocumentArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetDocumentByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetDocumentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetHolderArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetHolderByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetHoldersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetMandatoryMediatorArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetMandatoryMediatorByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetMandatoryMediatorsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetPreApprovalArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetPreApprovalByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetPreApprovalsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetTransactionArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetTransactionByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetTransactionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAssetsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAuthorizationArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAuthorizationByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryAuthorizationsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryBlockArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryBlockByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryBlocksArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryBridgeEventArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryBridgeEventByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryBridgeEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryChildIdentitiesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryChildIdentityArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryChildIdentityByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryClaimArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryClaimByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryClaimScopeArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryClaimScopeByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryClaimScopesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryClaimsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryComplianceArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryComplianceByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryCompliancesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAccountArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAccountByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAccountsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetHistoriesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetHistoryArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetHistoryByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetHolderArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetHolderByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetHoldersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetMovementArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetMovementByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetMovementsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialAssetsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialLegArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialLegByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialLegsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialTransactionArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialTransactionAffirmationArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialTransactionAffirmationByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialTransactionAffirmationsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialTransactionByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialTransactionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialVenueArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialVenueByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryConfidentialVenuesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryCustomClaimTypeArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryCustomClaimTypeByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryCustomClaimTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryDebugArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryDebugByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryDebugsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryDistributionArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryDistributionByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryDistributionPaymentArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryDistributionPaymentByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryDistributionPaymentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryDistributionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryEventArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryEventByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryExtrinsicArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryExtrinsicByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryExtrinsicsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryFoundTypeArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryFoundTypeByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryFoundTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryFundingArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryFundingByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryFundingsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryIdentitiesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryIdentityArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryIdentityByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionAffirmationArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionAffirmationByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionAffirmationsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionEventArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionEventByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionPartiesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionPartyArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionPartyByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInstructionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInvestmentArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInvestmentByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryInvestmentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryLegArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryLegByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryLegsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMigrationArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMigrationByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMigrationsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigProposalArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigProposalByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigProposalVoteArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigProposalVoteByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigProposalVotesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigProposalsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigSignerArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigSignerByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigSignersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryMultiSigsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryNftHolderArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryNftHolderByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryNftHoldersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryNodeArgs = { + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryOffChainReceiptArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryOffChainReceiptByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryOffChainReceiptsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPermissionArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPermissionByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPermissionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPolyxTransactionArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPolyxTransactionByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPolyxTransactionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPortfolioArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPortfolioByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPortfolioMovementArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPortfolioMovementByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPortfolioMovementsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryPortfoliosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryProposalArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryProposalByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryProposalVoteArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryProposalVoteByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryProposalVotesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryProposalsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryStakingEventArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryStakingEventByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryStakingEventsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryStatTypeArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryStatTypeByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryStatTypesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryStoArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryStoByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryStosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QuerySubqueryVersionArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QuerySubqueryVersionByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QuerySubqueryVersionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTickerExternalAgentArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTickerExternalAgentActionArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTickerExternalAgentActionByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTickerExternalAgentActionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTickerExternalAgentByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTickerExternalAgentHistoriesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTickerExternalAgentHistoryArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTickerExternalAgentHistoryByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTickerExternalAgentsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTransferComplianceArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTransferComplianceByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTransferComplianceExemptionArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTransferComplianceExemptionByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTransferComplianceExemptionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTransferCompliancesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTransferManagerArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTransferManagerByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTransferManagersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTrustedClaimIssuerArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTrustedClaimIssuerByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryTrustedClaimIssuersArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryVenueArgs = { + blockHeight?: InputMaybe; + id: Scalars['String']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryVenueByNodeIdArgs = { + distinct?: InputMaybe>>; + nodeId: Scalars['ID']['input']; +}; + +/** The root query type which gives access points into the data universe. */ +export type QueryVenuesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** Represents signer types */ +export enum SignerTypeEnum { + Account = 'Account', + Identity = 'Identity', +} + +/** A filter to be used against SignerTypeEnum fields. All fields are combined with a logical ‘and.’ */ +export type SignerTypeEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type StakingEvent = Node & { + __typename?: 'StakingEvent'; + amount?: Maybe; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `StakingEvent`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + eventId: EventIdEnum; + id: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `StakingEvent`. */ + identity?: Maybe; + identityId?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + nominatedValidators?: Maybe; + stashAccount?: Maybe; + transactionId?: Maybe; + /** Reads a single `Block` that is related to this `StakingEvent`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type StakingEventAggregates = { + __typename?: 'StakingEventAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `StakingEvent` object types. */ +export type StakingEventAggregatesFilter = { + /** Mean average aggregate over matching `StakingEvent` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `StakingEvent` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `StakingEvent` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `StakingEvent` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `StakingEvent` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `StakingEvent` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `StakingEvent` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `StakingEvent` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `StakingEvent` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `StakingEvent` objects. */ + varianceSample?: InputMaybe; +}; + +export type StakingEventAverageAggregateFilter = { + amount?: InputMaybe; +}; + +export type StakingEventAverageAggregates = { + __typename?: 'StakingEventAverageAggregates'; + /** Mean average of amount across the matching connection */ + amount?: Maybe; +}; + +export type StakingEventDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + amount?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + eventId?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + nominatedValidators?: InputMaybe; + stashAccount?: InputMaybe; + transactionId?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type StakingEventDistinctCountAggregates = { + __typename?: 'StakingEventDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of amount across the matching connection */ + amount?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of eventId across the matching connection */ + eventId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of nominatedValidators across the matching connection */ + nominatedValidators?: Maybe; + /** Distinct count of stashAccount across the matching connection */ + stashAccount?: Maybe; + /** Distinct count of transactionId across the matching connection */ + transactionId?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `StakingEvent` object types. All fields are combined with a logical ‘and.’ */ +export type StakingEventFilter = { + /** Filter by the object’s `amount` field. */ + amount?: InputMaybe; + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `eventId` field. */ + eventId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` relation. */ + identity?: InputMaybe; + /** A related `identity` exists. */ + identityExists?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Filter by the object’s `nominatedValidators` field. */ + nominatedValidators?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `stashAccount` field. */ + stashAccount?: InputMaybe; + /** Filter by the object’s `transactionId` field. */ + transactionId?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type StakingEventMaxAggregateFilter = { + amount?: InputMaybe; +}; + +export type StakingEventMaxAggregates = { + __typename?: 'StakingEventMaxAggregates'; + /** Maximum of amount across the matching connection */ + amount?: Maybe; +}; + +export type StakingEventMinAggregateFilter = { + amount?: InputMaybe; +}; + +export type StakingEventMinAggregates = { + __typename?: 'StakingEventMinAggregates'; + /** Minimum of amount across the matching connection */ + amount?: Maybe; +}; + +export type StakingEventStddevPopulationAggregateFilter = { + amount?: InputMaybe; +}; + +export type StakingEventStddevPopulationAggregates = { + __typename?: 'StakingEventStddevPopulationAggregates'; + /** Population standard deviation of amount across the matching connection */ + amount?: Maybe; +}; + +export type StakingEventStddevSampleAggregateFilter = { + amount?: InputMaybe; +}; + +export type StakingEventStddevSampleAggregates = { + __typename?: 'StakingEventStddevSampleAggregates'; + /** Sample standard deviation of amount across the matching connection */ + amount?: Maybe; +}; + +export type StakingEventSumAggregateFilter = { + amount?: InputMaybe; +}; + +export type StakingEventSumAggregates = { + __typename?: 'StakingEventSumAggregates'; + /** Sum of amount across the matching connection */ + amount: Scalars['BigFloat']['output']; +}; + +export type StakingEventVariancePopulationAggregateFilter = { + amount?: InputMaybe; +}; + +export type StakingEventVariancePopulationAggregates = { + __typename?: 'StakingEventVariancePopulationAggregates'; + /** Population variance of amount across the matching connection */ + amount?: Maybe; +}; + +export type StakingEventVarianceSampleAggregateFilter = { + amount?: InputMaybe; +}; + +export type StakingEventVarianceSampleAggregates = { + __typename?: 'StakingEventVarianceSampleAggregates'; + /** Sample variance of amount across the matching connection */ + amount?: Maybe; +}; + +/** A connection to a list of `StakingEvent` values. */ +export type StakingEventsConnection = { + __typename?: 'StakingEventsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `StakingEvent` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `StakingEvent` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `StakingEvent` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `StakingEvent` values. */ +export type StakingEventsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `StakingEvent` edge in the connection. */ +export type StakingEventsEdge = { + __typename?: 'StakingEventsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `StakingEvent` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `StakingEvent` for usage during aggregation. */ +export enum StakingEventsGroupBy { + Amount = 'AMOUNT', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + EventId = 'EVENT_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + NominatedValidators = 'NOMINATED_VALIDATORS', + StashAccount = 'STASH_ACCOUNT', + TransactionId = 'TRANSACTION_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type StakingEventsHavingAverageInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type StakingEventsHavingDistinctCountInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +/** Conditions for `StakingEvent` aggregates. */ +export type StakingEventsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type StakingEventsHavingMaxInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type StakingEventsHavingMinInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type StakingEventsHavingStddevPopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type StakingEventsHavingStddevSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type StakingEventsHavingSumInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type StakingEventsHavingVariancePopulationInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +export type StakingEventsHavingVarianceSampleInput = { + amount?: InputMaybe; + createdAt?: InputMaybe; + datetime?: InputMaybe; +}; + +/** Methods to use when ordering `StakingEvent`. */ +export enum StakingEventsOrderBy { + AmountAsc = 'AMOUNT_ASC', + AmountDesc = 'AMOUNT_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + EventIdAsc = 'EVENT_ID_ASC', + EventIdDesc = 'EVENT_ID_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + NominatedValidatorsAsc = 'NOMINATED_VALIDATORS_ASC', + NominatedValidatorsDesc = 'NOMINATED_VALIDATORS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + StashAccountAsc = 'STASH_ACCOUNT_ASC', + StashAccountDesc = 'STASH_ACCOUNT_DESC', + TransactionIdAsc = 'TRANSACTION_ID_ASC', + TransactionIdDesc = 'TRANSACTION_ID_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** Represents all known stat types */ +export enum StatOpTypeEnum { + Balance = 'Balance', + Count = 'Count', +} + +/** A filter to be used against StatOpTypeEnum fields. All fields are combined with a logical ‘and.’ */ +export type StatOpTypeEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type StatType = Node & { + __typename?: 'StatType'; + /** Reads a single `Asset` that is related to this `StatType`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByTransferComplianceStatTypeIdAndAssetId: StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceStatTypeIdAndCreatedBlockId: StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByTransferComplianceStatTypeIdAndUpdatedBlockId: StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyConnection; + /** Reads a single `Identity` that is related to this `StatType`. */ + claimIssuer?: Maybe; + claimIssuerId?: Maybe; + claimType?: Maybe; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `StatType`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `CustomClaimType` that is related to this `StatType`. */ + customClaimType?: Maybe; + customClaimTypeId?: Maybe; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByTransferComplianceStatTypeIdAndClaimIssuerId: StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyConnection; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + opType: StatOpTypeEnum; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliances: TransferCompliancesConnection; + /** Reads a single `Block` that is related to this `StatType`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type StatTypeTransferCompliancesArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type StatTypeAggregates = { + __typename?: 'StatTypeAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `StatType` object types. */ +export type StatTypeAggregatesFilter = { + /** Distinct count aggregate over matching `StatType` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `StatType` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +/** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ +export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyConnection = { + __typename?: 'StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `TransferCompliance`. */ +export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Asset` edge in the connection, with data from `TransferCompliance`. */ +export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyEdge = { + __typename?: 'StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliances: TransferCompliancesConnection; +}; + +/** A `Asset` edge in the connection, with data from `TransferCompliance`. */ +export type StatTypeAssetsByTransferComplianceStatTypeIdAndAssetIdManyToManyEdgeTransferCompliancesArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByCreatedBlockId: TransferCompliancesConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type StatTypeBlocksByTransferComplianceStatTypeIdAndCreatedBlockIdManyToManyEdgeTransferCompliancesByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `TransferCompliance`. */ +export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByUpdatedBlockId: TransferCompliancesConnection; +}; + +/** A `Block` edge in the connection, with data from `TransferCompliance`. */ +export type StatTypeBlocksByTransferComplianceStatTypeIdAndUpdatedBlockIdManyToManyEdgeTransferCompliancesByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +export type StatTypeDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + claimIssuerId?: InputMaybe; + claimType?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + customClaimTypeId?: InputMaybe; + id?: InputMaybe; + opType?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type StatTypeDistinctCountAggregates = { + __typename?: 'StatTypeDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of claimIssuerId across the matching connection */ + claimIssuerId?: Maybe; + /** Distinct count of claimType across the matching connection */ + claimType?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of customClaimTypeId across the matching connection */ + customClaimTypeId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of opType across the matching connection */ + opType?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `StatType` object types. All fields are combined with a logical ‘and.’ */ +export type StatTypeFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `claimIssuer` relation. */ + claimIssuer?: InputMaybe; + /** A related `claimIssuer` exists. */ + claimIssuerExists?: InputMaybe; + /** Filter by the object’s `claimIssuerId` field. */ + claimIssuerId?: InputMaybe; + /** Filter by the object’s `claimType` field. */ + claimType?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `customClaimType` relation. */ + customClaimType?: InputMaybe; + /** A related `customClaimType` exists. */ + customClaimTypeExists?: InputMaybe; + /** Filter by the object’s `customClaimTypeId` field. */ + customClaimTypeId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Filter by the object’s `opType` field. */ + opType?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `transferCompliances` relation. */ + transferCompliances?: InputMaybe; + /** Some related `transferCompliances` exist. */ + transferCompliancesExist?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ +export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyConnection = { + __typename?: 'StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `TransferCompliance`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `TransferCompliance`. */ +export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Identity` edge in the connection, with data from `TransferCompliance`. */ +export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyEdge = { + __typename?: 'StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `TransferCompliance`. */ + transferCompliancesByClaimIssuerId: TransferCompliancesConnection; +}; + +/** A `Identity` edge in the connection, with data from `TransferCompliance`. */ +export type StatTypeIdentitiesByTransferComplianceStatTypeIdAndClaimIssuerIdManyToManyEdgeTransferCompliancesByClaimIssuerIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A filter to be used against many `TransferCompliance` object types. All fields are combined with a logical ‘and.’ */ +export type StatTypeToManyTransferComplianceFilter = { + /** Aggregates across related `TransferCompliance` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `TransferCompliance` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A connection to a list of `StatType` values. */ +export type StatTypesConnection = { + __typename?: 'StatTypesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `StatType` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `StatType` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `StatType` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `StatType` values. */ +export type StatTypesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `StatType` edge in the connection. */ +export type StatTypesEdge = { + __typename?: 'StatTypesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `StatType` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `StatType` for usage during aggregation. */ +export enum StatTypesGroupBy { + AssetId = 'ASSET_ID', + ClaimIssuerId = 'CLAIM_ISSUER_ID', + ClaimType = 'CLAIM_TYPE', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + CustomClaimTypeId = 'CUSTOM_CLAIM_TYPE_ID', + Id = 'ID', + OpType = 'OP_TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type StatTypesHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type StatTypesHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `StatType` aggregates. */ +export type StatTypesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type StatTypesHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type StatTypesHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type StatTypesHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type StatTypesHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type StatTypesHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type StatTypesHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type StatTypesHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `StatType`. */ +export enum StatTypesOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + ClaimIssuerIdAsc = 'CLAIM_ISSUER_ID_ASC', + ClaimIssuerIdDesc = 'CLAIM_ISSUER_ID_DESC', + ClaimTypeAsc = 'CLAIM_TYPE_ASC', + ClaimTypeDesc = 'CLAIM_TYPE_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + CustomClaimTypeIdAsc = 'CUSTOM_CLAIM_TYPE_ID_ASC', + CustomClaimTypeIdDesc = 'CUSTOM_CLAIM_TYPE_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + OpTypeAsc = 'OP_TYPE_ASC', + OpTypeDesc = 'OP_TYPE_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + TransferCompliancesAverageAssetIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_ASSET_ID_ASC', + TransferCompliancesAverageAssetIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_ASSET_ID_DESC', + TransferCompliancesAverageBlockRangeAsc = 'TRANSFER_COMPLIANCES_AVERAGE_BLOCK_RANGE_ASC', + TransferCompliancesAverageBlockRangeDesc = 'TRANSFER_COMPLIANCES_AVERAGE_BLOCK_RANGE_DESC', + TransferCompliancesAverageClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesAverageClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesAverageClaimTypeAsc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_TYPE_ASC', + TransferCompliancesAverageClaimTypeDesc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_TYPE_DESC', + TransferCompliancesAverageClaimValueAsc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_VALUE_ASC', + TransferCompliancesAverageClaimValueDesc = 'TRANSFER_COMPLIANCES_AVERAGE_CLAIM_VALUE_DESC', + TransferCompliancesAverageCreatedAtAsc = 'TRANSFER_COMPLIANCES_AVERAGE_CREATED_AT_ASC', + TransferCompliancesAverageCreatedAtDesc = 'TRANSFER_COMPLIANCES_AVERAGE_CREATED_AT_DESC', + TransferCompliancesAverageCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_CREATED_BLOCK_ID_ASC', + TransferCompliancesAverageCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_CREATED_BLOCK_ID_DESC', + TransferCompliancesAverageIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_ID_ASC', + TransferCompliancesAverageIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_ID_DESC', + TransferCompliancesAverageMaxAsc = 'TRANSFER_COMPLIANCES_AVERAGE_MAX_ASC', + TransferCompliancesAverageMaxDesc = 'TRANSFER_COMPLIANCES_AVERAGE_MAX_DESC', + TransferCompliancesAverageMinAsc = 'TRANSFER_COMPLIANCES_AVERAGE_MIN_ASC', + TransferCompliancesAverageMinDesc = 'TRANSFER_COMPLIANCES_AVERAGE_MIN_DESC', + TransferCompliancesAverageStatTypeIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_STAT_TYPE_ID_ASC', + TransferCompliancesAverageStatTypeIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_STAT_TYPE_ID_DESC', + TransferCompliancesAverageTypeAsc = 'TRANSFER_COMPLIANCES_AVERAGE_TYPE_ASC', + TransferCompliancesAverageTypeDesc = 'TRANSFER_COMPLIANCES_AVERAGE_TYPE_DESC', + TransferCompliancesAverageUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_AVERAGE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesAverageUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_AVERAGE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesAverageValueAsc = 'TRANSFER_COMPLIANCES_AVERAGE_VALUE_ASC', + TransferCompliancesAverageValueDesc = 'TRANSFER_COMPLIANCES_AVERAGE_VALUE_DESC', + TransferCompliancesCountAsc = 'TRANSFER_COMPLIANCES_COUNT_ASC', + TransferCompliancesCountDesc = 'TRANSFER_COMPLIANCES_COUNT_DESC', + TransferCompliancesDistinctCountAssetIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_ASSET_ID_ASC', + TransferCompliancesDistinctCountAssetIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_ASSET_ID_DESC', + TransferCompliancesDistinctCountBlockRangeAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_BLOCK_RANGE_ASC', + TransferCompliancesDistinctCountBlockRangeDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_BLOCK_RANGE_DESC', + TransferCompliancesDistinctCountClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_ISSUER_ID_ASC', + TransferCompliancesDistinctCountClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_ISSUER_ID_DESC', + TransferCompliancesDistinctCountClaimTypeAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_TYPE_ASC', + TransferCompliancesDistinctCountClaimTypeDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_TYPE_DESC', + TransferCompliancesDistinctCountClaimValueAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_VALUE_ASC', + TransferCompliancesDistinctCountClaimValueDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CLAIM_VALUE_DESC', + TransferCompliancesDistinctCountCreatedAtAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CREATED_AT_ASC', + TransferCompliancesDistinctCountCreatedAtDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CREATED_AT_DESC', + TransferCompliancesDistinctCountCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + TransferCompliancesDistinctCountCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + TransferCompliancesDistinctCountIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_ID_ASC', + TransferCompliancesDistinctCountIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_ID_DESC', + TransferCompliancesDistinctCountMaxAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_MAX_ASC', + TransferCompliancesDistinctCountMaxDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_MAX_DESC', + TransferCompliancesDistinctCountMinAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_MIN_ASC', + TransferCompliancesDistinctCountMinDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_MIN_DESC', + TransferCompliancesDistinctCountStatTypeIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_STAT_TYPE_ID_ASC', + TransferCompliancesDistinctCountStatTypeIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_STAT_TYPE_ID_DESC', + TransferCompliancesDistinctCountTypeAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_TYPE_ASC', + TransferCompliancesDistinctCountTypeDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_TYPE_DESC', + TransferCompliancesDistinctCountUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + TransferCompliancesDistinctCountUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + TransferCompliancesDistinctCountValueAsc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_VALUE_ASC', + TransferCompliancesDistinctCountValueDesc = 'TRANSFER_COMPLIANCES_DISTINCT_COUNT_VALUE_DESC', + TransferCompliancesMaxAssetIdAsc = 'TRANSFER_COMPLIANCES_MAX_ASSET_ID_ASC', + TransferCompliancesMaxAssetIdDesc = 'TRANSFER_COMPLIANCES_MAX_ASSET_ID_DESC', + TransferCompliancesMaxBlockRangeAsc = 'TRANSFER_COMPLIANCES_MAX_BLOCK_RANGE_ASC', + TransferCompliancesMaxBlockRangeDesc = 'TRANSFER_COMPLIANCES_MAX_BLOCK_RANGE_DESC', + TransferCompliancesMaxClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_ISSUER_ID_ASC', + TransferCompliancesMaxClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_ISSUER_ID_DESC', + TransferCompliancesMaxClaimTypeAsc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_TYPE_ASC', + TransferCompliancesMaxClaimTypeDesc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_TYPE_DESC', + TransferCompliancesMaxClaimValueAsc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_VALUE_ASC', + TransferCompliancesMaxClaimValueDesc = 'TRANSFER_COMPLIANCES_MAX_CLAIM_VALUE_DESC', + TransferCompliancesMaxCreatedAtAsc = 'TRANSFER_COMPLIANCES_MAX_CREATED_AT_ASC', + TransferCompliancesMaxCreatedAtDesc = 'TRANSFER_COMPLIANCES_MAX_CREATED_AT_DESC', + TransferCompliancesMaxCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_MAX_CREATED_BLOCK_ID_ASC', + TransferCompliancesMaxCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_MAX_CREATED_BLOCK_ID_DESC', + TransferCompliancesMaxIdAsc = 'TRANSFER_COMPLIANCES_MAX_ID_ASC', + TransferCompliancesMaxIdDesc = 'TRANSFER_COMPLIANCES_MAX_ID_DESC', + TransferCompliancesMaxMaxAsc = 'TRANSFER_COMPLIANCES_MAX_MAX_ASC', + TransferCompliancesMaxMaxDesc = 'TRANSFER_COMPLIANCES_MAX_MAX_DESC', + TransferCompliancesMaxMinAsc = 'TRANSFER_COMPLIANCES_MAX_MIN_ASC', + TransferCompliancesMaxMinDesc = 'TRANSFER_COMPLIANCES_MAX_MIN_DESC', + TransferCompliancesMaxStatTypeIdAsc = 'TRANSFER_COMPLIANCES_MAX_STAT_TYPE_ID_ASC', + TransferCompliancesMaxStatTypeIdDesc = 'TRANSFER_COMPLIANCES_MAX_STAT_TYPE_ID_DESC', + TransferCompliancesMaxTypeAsc = 'TRANSFER_COMPLIANCES_MAX_TYPE_ASC', + TransferCompliancesMaxTypeDesc = 'TRANSFER_COMPLIANCES_MAX_TYPE_DESC', + TransferCompliancesMaxUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_MAX_UPDATED_BLOCK_ID_ASC', + TransferCompliancesMaxUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_MAX_UPDATED_BLOCK_ID_DESC', + TransferCompliancesMaxValueAsc = 'TRANSFER_COMPLIANCES_MAX_VALUE_ASC', + TransferCompliancesMaxValueDesc = 'TRANSFER_COMPLIANCES_MAX_VALUE_DESC', + TransferCompliancesMinAssetIdAsc = 'TRANSFER_COMPLIANCES_MIN_ASSET_ID_ASC', + TransferCompliancesMinAssetIdDesc = 'TRANSFER_COMPLIANCES_MIN_ASSET_ID_DESC', + TransferCompliancesMinBlockRangeAsc = 'TRANSFER_COMPLIANCES_MIN_BLOCK_RANGE_ASC', + TransferCompliancesMinBlockRangeDesc = 'TRANSFER_COMPLIANCES_MIN_BLOCK_RANGE_DESC', + TransferCompliancesMinClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_ISSUER_ID_ASC', + TransferCompliancesMinClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_ISSUER_ID_DESC', + TransferCompliancesMinClaimTypeAsc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_TYPE_ASC', + TransferCompliancesMinClaimTypeDesc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_TYPE_DESC', + TransferCompliancesMinClaimValueAsc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_VALUE_ASC', + TransferCompliancesMinClaimValueDesc = 'TRANSFER_COMPLIANCES_MIN_CLAIM_VALUE_DESC', + TransferCompliancesMinCreatedAtAsc = 'TRANSFER_COMPLIANCES_MIN_CREATED_AT_ASC', + TransferCompliancesMinCreatedAtDesc = 'TRANSFER_COMPLIANCES_MIN_CREATED_AT_DESC', + TransferCompliancesMinCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_MIN_CREATED_BLOCK_ID_ASC', + TransferCompliancesMinCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_MIN_CREATED_BLOCK_ID_DESC', + TransferCompliancesMinIdAsc = 'TRANSFER_COMPLIANCES_MIN_ID_ASC', + TransferCompliancesMinIdDesc = 'TRANSFER_COMPLIANCES_MIN_ID_DESC', + TransferCompliancesMinMaxAsc = 'TRANSFER_COMPLIANCES_MIN_MAX_ASC', + TransferCompliancesMinMaxDesc = 'TRANSFER_COMPLIANCES_MIN_MAX_DESC', + TransferCompliancesMinMinAsc = 'TRANSFER_COMPLIANCES_MIN_MIN_ASC', + TransferCompliancesMinMinDesc = 'TRANSFER_COMPLIANCES_MIN_MIN_DESC', + TransferCompliancesMinStatTypeIdAsc = 'TRANSFER_COMPLIANCES_MIN_STAT_TYPE_ID_ASC', + TransferCompliancesMinStatTypeIdDesc = 'TRANSFER_COMPLIANCES_MIN_STAT_TYPE_ID_DESC', + TransferCompliancesMinTypeAsc = 'TRANSFER_COMPLIANCES_MIN_TYPE_ASC', + TransferCompliancesMinTypeDesc = 'TRANSFER_COMPLIANCES_MIN_TYPE_DESC', + TransferCompliancesMinUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_MIN_UPDATED_BLOCK_ID_ASC', + TransferCompliancesMinUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_MIN_UPDATED_BLOCK_ID_DESC', + TransferCompliancesMinValueAsc = 'TRANSFER_COMPLIANCES_MIN_VALUE_ASC', + TransferCompliancesMinValueDesc = 'TRANSFER_COMPLIANCES_MIN_VALUE_DESC', + TransferCompliancesStddevPopulationAssetIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_ASSET_ID_ASC', + TransferCompliancesStddevPopulationAssetIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_ASSET_ID_DESC', + TransferCompliancesStddevPopulationBlockRangeAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_BLOCK_RANGE_ASC', + TransferCompliancesStddevPopulationBlockRangeDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_BLOCK_RANGE_DESC', + TransferCompliancesStddevPopulationClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_ISSUER_ID_ASC', + TransferCompliancesStddevPopulationClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_ISSUER_ID_DESC', + TransferCompliancesStddevPopulationClaimTypeAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_TYPE_ASC', + TransferCompliancesStddevPopulationClaimTypeDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_TYPE_DESC', + TransferCompliancesStddevPopulationClaimValueAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_VALUE_ASC', + TransferCompliancesStddevPopulationClaimValueDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CLAIM_VALUE_DESC', + TransferCompliancesStddevPopulationCreatedAtAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CREATED_AT_ASC', + TransferCompliancesStddevPopulationCreatedAtDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CREATED_AT_DESC', + TransferCompliancesStddevPopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + TransferCompliancesStddevPopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + TransferCompliancesStddevPopulationIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_ID_ASC', + TransferCompliancesStddevPopulationIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_ID_DESC', + TransferCompliancesStddevPopulationMaxAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_MAX_ASC', + TransferCompliancesStddevPopulationMaxDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_MAX_DESC', + TransferCompliancesStddevPopulationMinAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_MIN_ASC', + TransferCompliancesStddevPopulationMinDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_MIN_DESC', + TransferCompliancesStddevPopulationStatTypeIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_STAT_TYPE_ID_ASC', + TransferCompliancesStddevPopulationStatTypeIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_STAT_TYPE_ID_DESC', + TransferCompliancesStddevPopulationTypeAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_TYPE_ASC', + TransferCompliancesStddevPopulationTypeDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_TYPE_DESC', + TransferCompliancesStddevPopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferCompliancesStddevPopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferCompliancesStddevPopulationValueAsc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_VALUE_ASC', + TransferCompliancesStddevPopulationValueDesc = 'TRANSFER_COMPLIANCES_STDDEV_POPULATION_VALUE_DESC', + TransferCompliancesStddevSampleAssetIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_ASSET_ID_ASC', + TransferCompliancesStddevSampleAssetIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_ASSET_ID_DESC', + TransferCompliancesStddevSampleBlockRangeAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + TransferCompliancesStddevSampleBlockRangeDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + TransferCompliancesStddevSampleClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesStddevSampleClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesStddevSampleClaimTypeAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_TYPE_ASC', + TransferCompliancesStddevSampleClaimTypeDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_TYPE_DESC', + TransferCompliancesStddevSampleClaimValueAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_VALUE_ASC', + TransferCompliancesStddevSampleClaimValueDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CLAIM_VALUE_DESC', + TransferCompliancesStddevSampleCreatedAtAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CREATED_AT_ASC', + TransferCompliancesStddevSampleCreatedAtDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CREATED_AT_DESC', + TransferCompliancesStddevSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferCompliancesStddevSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferCompliancesStddevSampleIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_ID_ASC', + TransferCompliancesStddevSampleIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_ID_DESC', + TransferCompliancesStddevSampleMaxAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_MAX_ASC', + TransferCompliancesStddevSampleMaxDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_MAX_DESC', + TransferCompliancesStddevSampleMinAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_MIN_ASC', + TransferCompliancesStddevSampleMinDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_MIN_DESC', + TransferCompliancesStddevSampleStatTypeIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_STAT_TYPE_ID_ASC', + TransferCompliancesStddevSampleStatTypeIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_STAT_TYPE_ID_DESC', + TransferCompliancesStddevSampleTypeAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_TYPE_ASC', + TransferCompliancesStddevSampleTypeDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_TYPE_DESC', + TransferCompliancesStddevSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesStddevSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesStddevSampleValueAsc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_VALUE_ASC', + TransferCompliancesStddevSampleValueDesc = 'TRANSFER_COMPLIANCES_STDDEV_SAMPLE_VALUE_DESC', + TransferCompliancesSumAssetIdAsc = 'TRANSFER_COMPLIANCES_SUM_ASSET_ID_ASC', + TransferCompliancesSumAssetIdDesc = 'TRANSFER_COMPLIANCES_SUM_ASSET_ID_DESC', + TransferCompliancesSumBlockRangeAsc = 'TRANSFER_COMPLIANCES_SUM_BLOCK_RANGE_ASC', + TransferCompliancesSumBlockRangeDesc = 'TRANSFER_COMPLIANCES_SUM_BLOCK_RANGE_DESC', + TransferCompliancesSumClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_ISSUER_ID_ASC', + TransferCompliancesSumClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_ISSUER_ID_DESC', + TransferCompliancesSumClaimTypeAsc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_TYPE_ASC', + TransferCompliancesSumClaimTypeDesc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_TYPE_DESC', + TransferCompliancesSumClaimValueAsc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_VALUE_ASC', + TransferCompliancesSumClaimValueDesc = 'TRANSFER_COMPLIANCES_SUM_CLAIM_VALUE_DESC', + TransferCompliancesSumCreatedAtAsc = 'TRANSFER_COMPLIANCES_SUM_CREATED_AT_ASC', + TransferCompliancesSumCreatedAtDesc = 'TRANSFER_COMPLIANCES_SUM_CREATED_AT_DESC', + TransferCompliancesSumCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_SUM_CREATED_BLOCK_ID_ASC', + TransferCompliancesSumCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_SUM_CREATED_BLOCK_ID_DESC', + TransferCompliancesSumIdAsc = 'TRANSFER_COMPLIANCES_SUM_ID_ASC', + TransferCompliancesSumIdDesc = 'TRANSFER_COMPLIANCES_SUM_ID_DESC', + TransferCompliancesSumMaxAsc = 'TRANSFER_COMPLIANCES_SUM_MAX_ASC', + TransferCompliancesSumMaxDesc = 'TRANSFER_COMPLIANCES_SUM_MAX_DESC', + TransferCompliancesSumMinAsc = 'TRANSFER_COMPLIANCES_SUM_MIN_ASC', + TransferCompliancesSumMinDesc = 'TRANSFER_COMPLIANCES_SUM_MIN_DESC', + TransferCompliancesSumStatTypeIdAsc = 'TRANSFER_COMPLIANCES_SUM_STAT_TYPE_ID_ASC', + TransferCompliancesSumStatTypeIdDesc = 'TRANSFER_COMPLIANCES_SUM_STAT_TYPE_ID_DESC', + TransferCompliancesSumTypeAsc = 'TRANSFER_COMPLIANCES_SUM_TYPE_ASC', + TransferCompliancesSumTypeDesc = 'TRANSFER_COMPLIANCES_SUM_TYPE_DESC', + TransferCompliancesSumUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_SUM_UPDATED_BLOCK_ID_ASC', + TransferCompliancesSumUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_SUM_UPDATED_BLOCK_ID_DESC', + TransferCompliancesSumValueAsc = 'TRANSFER_COMPLIANCES_SUM_VALUE_ASC', + TransferCompliancesSumValueDesc = 'TRANSFER_COMPLIANCES_SUM_VALUE_DESC', + TransferCompliancesVariancePopulationAssetIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_ASSET_ID_ASC', + TransferCompliancesVariancePopulationAssetIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_ASSET_ID_DESC', + TransferCompliancesVariancePopulationBlockRangeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + TransferCompliancesVariancePopulationBlockRangeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + TransferCompliancesVariancePopulationClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_ISSUER_ID_ASC', + TransferCompliancesVariancePopulationClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_ISSUER_ID_DESC', + TransferCompliancesVariancePopulationClaimTypeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_TYPE_ASC', + TransferCompliancesVariancePopulationClaimTypeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_TYPE_DESC', + TransferCompliancesVariancePopulationClaimValueAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_VALUE_ASC', + TransferCompliancesVariancePopulationClaimValueDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CLAIM_VALUE_DESC', + TransferCompliancesVariancePopulationCreatedAtAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CREATED_AT_ASC', + TransferCompliancesVariancePopulationCreatedAtDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CREATED_AT_DESC', + TransferCompliancesVariancePopulationCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + TransferCompliancesVariancePopulationCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + TransferCompliancesVariancePopulationIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_ID_ASC', + TransferCompliancesVariancePopulationIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_ID_DESC', + TransferCompliancesVariancePopulationMaxAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_MAX_ASC', + TransferCompliancesVariancePopulationMaxDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_MAX_DESC', + TransferCompliancesVariancePopulationMinAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_MIN_ASC', + TransferCompliancesVariancePopulationMinDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_MIN_DESC', + TransferCompliancesVariancePopulationStatTypeIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_STAT_TYPE_ID_ASC', + TransferCompliancesVariancePopulationStatTypeIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_STAT_TYPE_ID_DESC', + TransferCompliancesVariancePopulationTypeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_TYPE_ASC', + TransferCompliancesVariancePopulationTypeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_TYPE_DESC', + TransferCompliancesVariancePopulationUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + TransferCompliancesVariancePopulationUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + TransferCompliancesVariancePopulationValueAsc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_VALUE_ASC', + TransferCompliancesVariancePopulationValueDesc = 'TRANSFER_COMPLIANCES_VARIANCE_POPULATION_VALUE_DESC', + TransferCompliancesVarianceSampleAssetIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_ASSET_ID_ASC', + TransferCompliancesVarianceSampleAssetIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_ASSET_ID_DESC', + TransferCompliancesVarianceSampleBlockRangeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + TransferCompliancesVarianceSampleBlockRangeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + TransferCompliancesVarianceSampleClaimIssuerIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_ASC', + TransferCompliancesVarianceSampleClaimIssuerIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_ISSUER_ID_DESC', + TransferCompliancesVarianceSampleClaimTypeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_TYPE_ASC', + TransferCompliancesVarianceSampleClaimTypeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_TYPE_DESC', + TransferCompliancesVarianceSampleClaimValueAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_VALUE_ASC', + TransferCompliancesVarianceSampleClaimValueDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CLAIM_VALUE_DESC', + TransferCompliancesVarianceSampleCreatedAtAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CREATED_AT_ASC', + TransferCompliancesVarianceSampleCreatedAtDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CREATED_AT_DESC', + TransferCompliancesVarianceSampleCreatedBlockIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + TransferCompliancesVarianceSampleCreatedBlockIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + TransferCompliancesVarianceSampleIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_ID_ASC', + TransferCompliancesVarianceSampleIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_ID_DESC', + TransferCompliancesVarianceSampleMaxAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_MAX_ASC', + TransferCompliancesVarianceSampleMaxDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_MAX_DESC', + TransferCompliancesVarianceSampleMinAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_MIN_ASC', + TransferCompliancesVarianceSampleMinDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_MIN_DESC', + TransferCompliancesVarianceSampleStatTypeIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_STAT_TYPE_ID_ASC', + TransferCompliancesVarianceSampleStatTypeIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_STAT_TYPE_ID_DESC', + TransferCompliancesVarianceSampleTypeAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_TYPE_ASC', + TransferCompliancesVarianceSampleTypeDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_TYPE_DESC', + TransferCompliancesVarianceSampleUpdatedBlockIdAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + TransferCompliancesVarianceSampleUpdatedBlockIdDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + TransferCompliancesVarianceSampleValueAsc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_VALUE_ASC', + TransferCompliancesVarianceSampleValueDesc = 'TRANSFER_COMPLIANCES_VARIANCE_SAMPLE_VALUE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type Sto = Node & { + __typename?: 'Sto'; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Sto`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `Sto`. */ + creator?: Maybe; + creatorId: Scalars['String']['output']; + end?: Maybe; + id: Scalars['String']['output']; + minimumInvestment: Scalars['BigFloat']['output']; + name: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Asset` that is related to this `Sto`. */ + offeringAsset?: Maybe; + offeringAssetId: Scalars['String']['output']; + /** Reads a single `Portfolio` that is related to this `Sto`. */ + offeringPortfolio?: Maybe; + offeringPortfolioId: Scalars['String']['output']; + raisingAssetId: Scalars['String']['output']; + /** Reads a single `Portfolio` that is related to this `Sto`. */ + raisingPortfolio?: Maybe; + raisingPortfolioId: Scalars['String']['output']; + /** The ticker value associated with the raising asset ID. For cases where stable coin is used, which is not a registered asset, this value will be same as `raisingAssetId` */ + raisingTicker: Scalars['String']['output']; + start?: Maybe; + status: StoStatus; + stoId: Scalars['Int']['output']; + tiers: Scalars['JSON']['output']; + /** Reads a single `Block` that is related to this `Sto`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + /** Reads a single `Venue` that is related to this `Sto`. */ + venue?: Maybe; + venueId: Scalars['String']['output']; +}; + +export type StoAggregates = { + __typename?: 'StoAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `Sto` object types. */ +export type StoAggregatesFilter = { + /** Mean average aggregate over matching `Sto` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `Sto` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Sto` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `Sto` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `Sto` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `Sto` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `Sto` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `Sto` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `Sto` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `Sto` objects. */ + varianceSample?: InputMaybe; +}; + +export type StoAverageAggregateFilter = { + minimumInvestment?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StoAverageAggregates = { + __typename?: 'StoAverageAggregates'; + /** Mean average of minimumInvestment across the matching connection */ + minimumInvestment?: Maybe; + /** Mean average of stoId across the matching connection */ + stoId?: Maybe; +}; + +export type StoDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + creatorId?: InputMaybe; + end?: InputMaybe; + id?: InputMaybe; + minimumInvestment?: InputMaybe; + name?: InputMaybe; + offeringAssetId?: InputMaybe; + offeringPortfolioId?: InputMaybe; + raisingAssetId?: InputMaybe; + raisingPortfolioId?: InputMaybe; + raisingTicker?: InputMaybe; + start?: InputMaybe; + status?: InputMaybe; + stoId?: InputMaybe; + tiers?: InputMaybe; + updatedBlockId?: InputMaybe; + venueId?: InputMaybe; +}; + +export type StoDistinctCountAggregates = { + __typename?: 'StoDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of creatorId across the matching connection */ + creatorId?: Maybe; + /** Distinct count of end across the matching connection */ + end?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of minimumInvestment across the matching connection */ + minimumInvestment?: Maybe; + /** Distinct count of name across the matching connection */ + name?: Maybe; + /** Distinct count of offeringAssetId across the matching connection */ + offeringAssetId?: Maybe; + /** Distinct count of offeringPortfolioId across the matching connection */ + offeringPortfolioId?: Maybe; + /** Distinct count of raisingAssetId across the matching connection */ + raisingAssetId?: Maybe; + /** Distinct count of raisingPortfolioId across the matching connection */ + raisingPortfolioId?: Maybe; + /** Distinct count of raisingTicker across the matching connection */ + raisingTicker?: Maybe; + /** Distinct count of start across the matching connection */ + start?: Maybe; + /** Distinct count of status across the matching connection */ + status?: Maybe; + /** Distinct count of stoId across the matching connection */ + stoId?: Maybe; + /** Distinct count of tiers across the matching connection */ + tiers?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; + /** Distinct count of venueId across the matching connection */ + venueId?: Maybe; +}; + +/** A filter to be used against `Sto` object types. All fields are combined with a logical ‘and.’ */ +export type StoFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `creator` relation. */ + creator?: InputMaybe; + /** Filter by the object’s `creatorId` field. */ + creatorId?: InputMaybe; + /** Filter by the object’s `end` field. */ + end?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `minimumInvestment` field. */ + minimumInvestment?: InputMaybe; + /** Filter by the object’s `name` field. */ + name?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Filter by the object’s `offeringAsset` relation. */ + offeringAsset?: InputMaybe; + /** Filter by the object’s `offeringAssetId` field. */ + offeringAssetId?: InputMaybe; + /** Filter by the object’s `offeringPortfolio` relation. */ + offeringPortfolio?: InputMaybe; + /** Filter by the object’s `offeringPortfolioId` field. */ + offeringPortfolioId?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `raisingAssetId` field. */ + raisingAssetId?: InputMaybe; + /** Filter by the object’s `raisingPortfolio` relation. */ + raisingPortfolio?: InputMaybe; + /** Filter by the object’s `raisingPortfolioId` field. */ + raisingPortfolioId?: InputMaybe; + /** Filter by the object’s `raisingTicker` field. */ + raisingTicker?: InputMaybe; + /** Filter by the object’s `start` field. */ + start?: InputMaybe; + /** Filter by the object’s `status` field. */ + status?: InputMaybe; + /** Filter by the object’s `stoId` field. */ + stoId?: InputMaybe; + /** Filter by the object’s `tiers` field. */ + tiers?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `venue` relation. */ + venue?: InputMaybe; + /** Filter by the object’s `venueId` field. */ + venueId?: InputMaybe; +}; + +export type StoMaxAggregateFilter = { + minimumInvestment?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StoMaxAggregates = { + __typename?: 'StoMaxAggregates'; + /** Maximum of minimumInvestment across the matching connection */ + minimumInvestment?: Maybe; + /** Maximum of stoId across the matching connection */ + stoId?: Maybe; +}; + +export type StoMinAggregateFilter = { + minimumInvestment?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StoMinAggregates = { + __typename?: 'StoMinAggregates'; + /** Minimum of minimumInvestment across the matching connection */ + minimumInvestment?: Maybe; + /** Minimum of stoId across the matching connection */ + stoId?: Maybe; +}; + +/** Represents all possible statuses for a STO */ +export enum StoStatus { + Closed = 'Closed', + ClosedEarly = 'ClosedEarly', + Frozen = 'Frozen', + Live = 'Live', +} + +/** A filter to be used against StoStatus fields. All fields are combined with a logical ‘and.’ */ +export type StoStatusFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type StoStddevPopulationAggregateFilter = { + minimumInvestment?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StoStddevPopulationAggregates = { + __typename?: 'StoStddevPopulationAggregates'; + /** Population standard deviation of minimumInvestment across the matching connection */ + minimumInvestment?: Maybe; + /** Population standard deviation of stoId across the matching connection */ + stoId?: Maybe; +}; + +export type StoStddevSampleAggregateFilter = { + minimumInvestment?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StoStddevSampleAggregates = { + __typename?: 'StoStddevSampleAggregates'; + /** Sample standard deviation of minimumInvestment across the matching connection */ + minimumInvestment?: Maybe; + /** Sample standard deviation of stoId across the matching connection */ + stoId?: Maybe; +}; + +export type StoSumAggregateFilter = { + minimumInvestment?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StoSumAggregates = { + __typename?: 'StoSumAggregates'; + /** Sum of minimumInvestment across the matching connection */ + minimumInvestment: Scalars['BigFloat']['output']; + /** Sum of stoId across the matching connection */ + stoId: Scalars['BigInt']['output']; +}; + +export type StoVariancePopulationAggregateFilter = { + minimumInvestment?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StoVariancePopulationAggregates = { + __typename?: 'StoVariancePopulationAggregates'; + /** Population variance of minimumInvestment across the matching connection */ + minimumInvestment?: Maybe; + /** Population variance of stoId across the matching connection */ + stoId?: Maybe; +}; + +export type StoVarianceSampleAggregateFilter = { + minimumInvestment?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StoVarianceSampleAggregates = { + __typename?: 'StoVarianceSampleAggregates'; + /** Sample variance of minimumInvestment across the matching connection */ + minimumInvestment?: Maybe; + /** Sample variance of stoId across the matching connection */ + stoId?: Maybe; +}; + +/** A connection to a list of `Sto` values. */ +export type StosConnection = { + __typename?: 'StosConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Sto` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Sto` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Sto` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Sto` values. */ +export type StosConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Sto` edge in the connection. */ +export type StosEdge = { + __typename?: 'StosEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Sto` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Sto` for usage during aggregation. */ +export enum StosGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorId = 'CREATOR_ID', + End = 'END', + EndTruncatedToDay = 'END_TRUNCATED_TO_DAY', + EndTruncatedToHour = 'END_TRUNCATED_TO_HOUR', + Id = 'ID', + MinimumInvestment = 'MINIMUM_INVESTMENT', + Name = 'NAME', + OfferingAssetId = 'OFFERING_ASSET_ID', + OfferingPortfolioId = 'OFFERING_PORTFOLIO_ID', + RaisingAssetId = 'RAISING_ASSET_ID', + RaisingPortfolioId = 'RAISING_PORTFOLIO_ID', + RaisingTicker = 'RAISING_TICKER', + Start = 'START', + StartTruncatedToDay = 'START_TRUNCATED_TO_DAY', + StartTruncatedToHour = 'START_TRUNCATED_TO_HOUR', + Status = 'STATUS', + StoId = 'STO_ID', + Tiers = 'TIERS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + VenueId = 'VENUE_ID', +} + +export type StosHavingAverageInput = { + createdAt?: InputMaybe; + end?: InputMaybe; + minimumInvestment?: InputMaybe; + start?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StosHavingDistinctCountInput = { + createdAt?: InputMaybe; + end?: InputMaybe; + minimumInvestment?: InputMaybe; + start?: InputMaybe; + stoId?: InputMaybe; +}; + +/** Conditions for `Sto` aggregates. */ +export type StosHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type StosHavingMaxInput = { + createdAt?: InputMaybe; + end?: InputMaybe; + minimumInvestment?: InputMaybe; + start?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StosHavingMinInput = { + createdAt?: InputMaybe; + end?: InputMaybe; + minimumInvestment?: InputMaybe; + start?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StosHavingStddevPopulationInput = { + createdAt?: InputMaybe; + end?: InputMaybe; + minimumInvestment?: InputMaybe; + start?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StosHavingStddevSampleInput = { + createdAt?: InputMaybe; + end?: InputMaybe; + minimumInvestment?: InputMaybe; + start?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StosHavingSumInput = { + createdAt?: InputMaybe; + end?: InputMaybe; + minimumInvestment?: InputMaybe; + start?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StosHavingVariancePopulationInput = { + createdAt?: InputMaybe; + end?: InputMaybe; + minimumInvestment?: InputMaybe; + start?: InputMaybe; + stoId?: InputMaybe; +}; + +export type StosHavingVarianceSampleInput = { + createdAt?: InputMaybe; + end?: InputMaybe; + minimumInvestment?: InputMaybe; + start?: InputMaybe; + stoId?: InputMaybe; +}; + +/** Methods to use when ordering `Sto`. */ +export enum StosOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + CreatorIdAsc = 'CREATOR_ID_ASC', + CreatorIdDesc = 'CREATOR_ID_DESC', + EndAsc = 'END_ASC', + EndDesc = 'END_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + MinimumInvestmentAsc = 'MINIMUM_INVESTMENT_ASC', + MinimumInvestmentDesc = 'MINIMUM_INVESTMENT_DESC', + NameAsc = 'NAME_ASC', + NameDesc = 'NAME_DESC', + Natural = 'NATURAL', + OfferingAssetIdAsc = 'OFFERING_ASSET_ID_ASC', + OfferingAssetIdDesc = 'OFFERING_ASSET_ID_DESC', + OfferingPortfolioIdAsc = 'OFFERING_PORTFOLIO_ID_ASC', + OfferingPortfolioIdDesc = 'OFFERING_PORTFOLIO_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + RaisingAssetIdAsc = 'RAISING_ASSET_ID_ASC', + RaisingAssetIdDesc = 'RAISING_ASSET_ID_DESC', + RaisingPortfolioIdAsc = 'RAISING_PORTFOLIO_ID_ASC', + RaisingPortfolioIdDesc = 'RAISING_PORTFOLIO_ID_DESC', + RaisingTickerAsc = 'RAISING_TICKER_ASC', + RaisingTickerDesc = 'RAISING_TICKER_DESC', + StartAsc = 'START_ASC', + StartDesc = 'START_DESC', + StatusAsc = 'STATUS_ASC', + StatusDesc = 'STATUS_DESC', + StoIdAsc = 'STO_ID_ASC', + StoIdDesc = 'STO_ID_DESC', + TiersAsc = 'TIERS_ASC', + TiersDesc = 'TIERS_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + VenueIdAsc = 'VENUE_ID_ASC', + VenueIdDesc = 'VENUE_ID_DESC', +} + +/** A filter to be used against String fields. All fields are combined with a logical ‘and.’ */ +export type StringFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Not equal to the specified value, treating null like an ordinary value (case-insensitive). */ + distinctFromInsensitive?: InputMaybe; + /** Ends with the specified string (case-sensitive). */ + endsWith?: InputMaybe; + /** Ends with the specified string (case-insensitive). */ + endsWithInsensitive?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Equal to the specified value (case-insensitive). */ + equalToInsensitive?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than the specified value (case-insensitive). */ + greaterThanInsensitive?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Greater than or equal to the specified value (case-insensitive). */ + greaterThanOrEqualToInsensitive?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Included in the specified list (case-insensitive). */ + inInsensitive?: InputMaybe>; + /** Contains the specified string (case-sensitive). */ + includes?: InputMaybe; + /** Contains the specified string (case-insensitive). */ + includesInsensitive?: InputMaybe; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than the specified value (case-insensitive). */ + lessThanInsensitive?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Less than or equal to the specified value (case-insensitive). */ + lessThanOrEqualToInsensitive?: InputMaybe; + /** Matches the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ + like?: InputMaybe; + /** Matches the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ + likeInsensitive?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value (case-insensitive). */ + notDistinctFromInsensitive?: InputMaybe; + /** Does not end with the specified string (case-sensitive). */ + notEndsWith?: InputMaybe; + /** Does not end with the specified string (case-insensitive). */ + notEndsWithInsensitive?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not equal to the specified value (case-insensitive). */ + notEqualToInsensitive?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; + /** Not included in the specified list (case-insensitive). */ + notInInsensitive?: InputMaybe>; + /** Does not contain the specified string (case-sensitive). */ + notIncludes?: InputMaybe; + /** Does not contain the specified string (case-insensitive). */ + notIncludesInsensitive?: InputMaybe; + /** Does not match the specified pattern (case-sensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ + notLike?: InputMaybe; + /** Does not match the specified pattern (case-insensitive). An underscore (_) matches any single character; a percent sign (%) matches any sequence of zero or more characters. */ + notLikeInsensitive?: InputMaybe; + /** Does not start with the specified string (case-sensitive). */ + notStartsWith?: InputMaybe; + /** Does not start with the specified string (case-insensitive). */ + notStartsWithInsensitive?: InputMaybe; + /** Starts with the specified string (case-sensitive). */ + startsWith?: InputMaybe; + /** Starts with the specified string (case-insensitive). */ + startsWithInsensitive?: InputMaybe; +}; + +export type SubqueryVersion = Node & { + __typename?: 'SubqueryVersion'; + createdAt?: Maybe; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + updatedAt?: Maybe; + version: Scalars['String']['output']; +}; + +export type SubqueryVersionAggregates = { + __typename?: 'SubqueryVersionAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +export type SubqueryVersionDistinctCountAggregates = { + __typename?: 'SubqueryVersionDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of updatedAt across the matching connection */ + updatedAt?: Maybe; + /** Distinct count of version across the matching connection */ + version?: Maybe; +}; + +/** A filter to be used against `SubqueryVersion` object types. All fields are combined with a logical ‘and.’ */ +export type SubqueryVersionFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedAt` field. */ + updatedAt?: InputMaybe; + /** Filter by the object’s `version` field. */ + version?: InputMaybe; +}; + +/** A connection to a list of `SubqueryVersion` values. */ +export type SubqueryVersionsConnection = { + __typename?: 'SubqueryVersionsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `SubqueryVersion` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `SubqueryVersion` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `SubqueryVersion` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `SubqueryVersion` values. */ +export type SubqueryVersionsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `SubqueryVersion` edge in the connection. */ +export type SubqueryVersionsEdge = { + __typename?: 'SubqueryVersionsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `SubqueryVersion` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `SubqueryVersion` for usage during aggregation. */ +export enum SubqueryVersionsGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + Id = 'ID', + UpdatedAt = 'UPDATED_AT', + UpdatedAtTruncatedToDay = 'UPDATED_AT_TRUNCATED_TO_DAY', + UpdatedAtTruncatedToHour = 'UPDATED_AT_TRUNCATED_TO_HOUR', + Version = 'VERSION', +} + +export type SubqueryVersionsHavingAverageInput = { + createdAt?: InputMaybe; + updatedAt?: InputMaybe; +}; + +export type SubqueryVersionsHavingDistinctCountInput = { + createdAt?: InputMaybe; + updatedAt?: InputMaybe; +}; + +/** Conditions for `SubqueryVersion` aggregates. */ +export type SubqueryVersionsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type SubqueryVersionsHavingMaxInput = { + createdAt?: InputMaybe; + updatedAt?: InputMaybe; +}; + +export type SubqueryVersionsHavingMinInput = { + createdAt?: InputMaybe; + updatedAt?: InputMaybe; +}; + +export type SubqueryVersionsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + updatedAt?: InputMaybe; +}; + +export type SubqueryVersionsHavingStddevSampleInput = { + createdAt?: InputMaybe; + updatedAt?: InputMaybe; +}; + +export type SubqueryVersionsHavingSumInput = { + createdAt?: InputMaybe; + updatedAt?: InputMaybe; +}; + +export type SubqueryVersionsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + updatedAt?: InputMaybe; +}; + +export type SubqueryVersionsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + updatedAt?: InputMaybe; +}; + +/** Methods to use when ordering `SubqueryVersion`. */ +export enum SubqueryVersionsOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedAtAsc = 'UPDATED_AT_ASC', + UpdatedAtDesc = 'UPDATED_AT_DESC', + VersionAsc = 'VERSION_ASC', + VersionDesc = 'VERSION_DESC', +} + +export type TableEstimate = { + __typename?: 'TableEstimate'; + estimate?: Maybe; + table?: Maybe; +}; + +export type TickerExternalAgent = Node & { + __typename?: 'TickerExternalAgent'; + /** Reads a single `Asset` that is related to this `TickerExternalAgent`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `TickerExternalAgent`. */ + caller?: Maybe; + callerId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `TickerExternalAgent`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + eventIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Block` that is related to this `TickerExternalAgent`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type TickerExternalAgentAction = Node & { + __typename?: 'TickerExternalAgentAction'; + /** Reads a single `Asset` that is related to this `TickerExternalAgentAction`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `TickerExternalAgentAction`. */ + caller?: Maybe; + callerId?: Maybe; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `TickerExternalAgentAction`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + eventId: EventIdEnum; + eventIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + palletName: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `TickerExternalAgentAction`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type TickerExternalAgentActionAggregates = { + __typename?: 'TickerExternalAgentActionAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `TickerExternalAgentAction` object types. */ +export type TickerExternalAgentActionAggregatesFilter = { + /** Mean average aggregate over matching `TickerExternalAgentAction` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `TickerExternalAgentAction` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `TickerExternalAgentAction` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `TickerExternalAgentAction` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `TickerExternalAgentAction` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `TickerExternalAgentAction` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `TickerExternalAgentAction` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `TickerExternalAgentAction` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `TickerExternalAgentAction` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `TickerExternalAgentAction` objects. */ + varianceSample?: InputMaybe; +}; + +export type TickerExternalAgentActionAverageAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionAverageAggregates = { + __typename?: 'TickerExternalAgentActionAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentActionDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + callerId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + eventId?: InputMaybe; + eventIdx?: InputMaybe; + id?: InputMaybe; + palletName?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type TickerExternalAgentActionDistinctCountAggregates = { + __typename?: 'TickerExternalAgentActionDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of callerId across the matching connection */ + callerId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of eventId across the matching connection */ + eventId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of palletName across the matching connection */ + palletName?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `TickerExternalAgentAction` object types. All fields are combined with a logical ‘and.’ */ +export type TickerExternalAgentActionFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `caller` relation. */ + caller?: InputMaybe; + /** A related `caller` exists. */ + callerExists?: InputMaybe; + /** Filter by the object’s `callerId` field. */ + callerId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `eventId` field. */ + eventId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `palletName` field. */ + palletName?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type TickerExternalAgentActionMaxAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionMaxAggregates = { + __typename?: 'TickerExternalAgentActionMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentActionMinAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionMinAggregates = { + __typename?: 'TickerExternalAgentActionMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentActionStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionStddevPopulationAggregates = { + __typename?: 'TickerExternalAgentActionStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentActionStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionStddevSampleAggregates = { + __typename?: 'TickerExternalAgentActionStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentActionSumAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionSumAggregates = { + __typename?: 'TickerExternalAgentActionSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; +}; + +export type TickerExternalAgentActionVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionVariancePopulationAggregates = { + __typename?: 'TickerExternalAgentActionVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentActionVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionVarianceSampleAggregates = { + __typename?: 'TickerExternalAgentActionVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +/** A connection to a list of `TickerExternalAgentAction` values. */ +export type TickerExternalAgentActionsConnection = { + __typename?: 'TickerExternalAgentActionsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `TickerExternalAgentAction` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `TickerExternalAgentAction` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `TickerExternalAgentAction` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `TickerExternalAgentAction` values. */ +export type TickerExternalAgentActionsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `TickerExternalAgentAction` edge in the connection. */ +export type TickerExternalAgentActionsEdge = { + __typename?: 'TickerExternalAgentActionsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `TickerExternalAgentAction` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `TickerExternalAgentAction` for usage during aggregation. */ +export enum TickerExternalAgentActionsGroupBy { + AssetId = 'ASSET_ID', + CallerId = 'CALLER_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + PalletName = 'PALLET_NAME', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type TickerExternalAgentActionsHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionsHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Conditions for `TickerExternalAgentAction` aggregates. */ +export type TickerExternalAgentActionsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type TickerExternalAgentActionsHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionsHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionsHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionsHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentActionsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Methods to use when ordering `TickerExternalAgentAction`. */ +export enum TickerExternalAgentActionsOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CallerIdAsc = 'CALLER_ID_ASC', + CallerIdDesc = 'CALLER_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + EventIdAsc = 'EVENT_ID_ASC', + EventIdDesc = 'EVENT_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PalletNameAsc = 'PALLET_NAME_ASC', + PalletNameDesc = 'PALLET_NAME_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type TickerExternalAgentAggregates = { + __typename?: 'TickerExternalAgentAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `TickerExternalAgent` object types. */ +export type TickerExternalAgentAggregatesFilter = { + /** Mean average aggregate over matching `TickerExternalAgent` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `TickerExternalAgent` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `TickerExternalAgent` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `TickerExternalAgent` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `TickerExternalAgent` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `TickerExternalAgent` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `TickerExternalAgent` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `TickerExternalAgent` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `TickerExternalAgent` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `TickerExternalAgent` objects. */ + varianceSample?: InputMaybe; +}; + +export type TickerExternalAgentAverageAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentAverageAggregates = { + __typename?: 'TickerExternalAgentAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + callerId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + id?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type TickerExternalAgentDistinctCountAggregates = { + __typename?: 'TickerExternalAgentDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of callerId across the matching connection */ + callerId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `TickerExternalAgent` object types. All fields are combined with a logical ‘and.’ */ +export type TickerExternalAgentFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `caller` relation. */ + caller?: InputMaybe; + /** Filter by the object’s `callerId` field. */ + callerId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `TickerExternalAgentHistory` values. */ +export type TickerExternalAgentHistoriesConnection = { + __typename?: 'TickerExternalAgentHistoriesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `TickerExternalAgentHistory` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `TickerExternalAgentHistory` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `TickerExternalAgentHistory` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `TickerExternalAgentHistory` values. */ +export type TickerExternalAgentHistoriesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `TickerExternalAgentHistory` edge in the connection. */ +export type TickerExternalAgentHistoriesEdge = { + __typename?: 'TickerExternalAgentHistoriesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `TickerExternalAgentHistory` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `TickerExternalAgentHistory` for usage during aggregation. */ +export enum TickerExternalAgentHistoriesGroupBy { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + EventIdx = 'EVENT_IDX', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + Permissions = 'PERMISSIONS', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type TickerExternalAgentHistoriesHavingAverageInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoriesHavingDistinctCountInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Conditions for `TickerExternalAgentHistory` aggregates. */ +export type TickerExternalAgentHistoriesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type TickerExternalAgentHistoriesHavingMaxInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoriesHavingMinInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoriesHavingStddevPopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoriesHavingStddevSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoriesHavingSumInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoriesHavingVariancePopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoriesHavingVarianceSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Methods to use when ordering `TickerExternalAgentHistory`. */ +export enum TickerExternalAgentHistoriesOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + IdentityIdAsc = 'IDENTITY_ID_ASC', + IdentityIdDesc = 'IDENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PermissionsAsc = 'PERMISSIONS_ASC', + PermissionsDesc = 'PERMISSIONS_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + TypeAsc = 'TYPE_ASC', + TypeDesc = 'TYPE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type TickerExternalAgentHistory = Node & { + __typename?: 'TickerExternalAgentHistory'; + /** Reads a single `Asset` that is related to this `TickerExternalAgentHistory`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `TickerExternalAgentHistory`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + datetime: Scalars['Datetime']['output']; + eventIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `TickerExternalAgentHistory`. */ + identity?: Maybe; + identityId: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + permissions?: Maybe; + type: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `TickerExternalAgentHistory`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type TickerExternalAgentHistoryPermissionsArgs = { + distinct?: InputMaybe>>; +}; + +export type TickerExternalAgentHistoryAggregates = { + __typename?: 'TickerExternalAgentHistoryAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `TickerExternalAgentHistory` object types. */ +export type TickerExternalAgentHistoryAggregatesFilter = { + /** Mean average aggregate over matching `TickerExternalAgentHistory` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `TickerExternalAgentHistory` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `TickerExternalAgentHistory` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `TickerExternalAgentHistory` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `TickerExternalAgentHistory` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `TickerExternalAgentHistory` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `TickerExternalAgentHistory` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `TickerExternalAgentHistory` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `TickerExternalAgentHistory` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `TickerExternalAgentHistory` objects. */ + varianceSample?: InputMaybe; +}; + +export type TickerExternalAgentHistoryAverageAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoryAverageAggregates = { + __typename?: 'TickerExternalAgentHistoryAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentHistoryDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; + id?: InputMaybe; + identityId?: InputMaybe; + permissions?: InputMaybe; + type?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type TickerExternalAgentHistoryDistinctCountAggregates = { + __typename?: 'TickerExternalAgentHistoryDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of datetime across the matching connection */ + datetime?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of identityId across the matching connection */ + identityId?: Maybe; + /** Distinct count of permissions across the matching connection */ + permissions?: Maybe; + /** Distinct count of type across the matching connection */ + type?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `TickerExternalAgentHistory` object types. All fields are combined with a logical ‘and.’ */ +export type TickerExternalAgentHistoryFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `datetime` field. */ + datetime?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `identity` relation. */ + identity?: InputMaybe; + /** Filter by the object’s `identityId` field. */ + identityId?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `permissions` field. */ + permissions?: InputMaybe; + /** Filter by the object’s `type` field. */ + type?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type TickerExternalAgentHistoryMaxAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoryMaxAggregates = { + __typename?: 'TickerExternalAgentHistoryMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentHistoryMinAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoryMinAggregates = { + __typename?: 'TickerExternalAgentHistoryMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentHistoryStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoryStddevPopulationAggregates = { + __typename?: 'TickerExternalAgentHistoryStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentHistoryStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoryStddevSampleAggregates = { + __typename?: 'TickerExternalAgentHistoryStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentHistorySumAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistorySumAggregates = { + __typename?: 'TickerExternalAgentHistorySumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; +}; + +export type TickerExternalAgentHistoryVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoryVariancePopulationAggregates = { + __typename?: 'TickerExternalAgentHistoryVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentHistoryVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentHistoryVarianceSampleAggregates = { + __typename?: 'TickerExternalAgentHistoryVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentMaxAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentMaxAggregates = { + __typename?: 'TickerExternalAgentMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentMinAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentMinAggregates = { + __typename?: 'TickerExternalAgentMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentStddevPopulationAggregates = { + __typename?: 'TickerExternalAgentStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentStddevSampleAggregates = { + __typename?: 'TickerExternalAgentStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentSumAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentSumAggregates = { + __typename?: 'TickerExternalAgentSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; +}; + +export type TickerExternalAgentVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentVariancePopulationAggregates = { + __typename?: 'TickerExternalAgentVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TickerExternalAgentVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentVarianceSampleAggregates = { + __typename?: 'TickerExternalAgentVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +/** A connection to a list of `TickerExternalAgent` values. */ +export type TickerExternalAgentsConnection = { + __typename?: 'TickerExternalAgentsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `TickerExternalAgent` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `TickerExternalAgent` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `TickerExternalAgent` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `TickerExternalAgent` values. */ +export type TickerExternalAgentsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `TickerExternalAgent` edge in the connection. */ +export type TickerExternalAgentsEdge = { + __typename?: 'TickerExternalAgentsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `TickerExternalAgent` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `TickerExternalAgent` for usage during aggregation. */ +export enum TickerExternalAgentsGroupBy { + AssetId = 'ASSET_ID', + CallerId = 'CALLER_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DatetimeTruncatedToDay = 'DATETIME_TRUNCATED_TO_DAY', + DatetimeTruncatedToHour = 'DATETIME_TRUNCATED_TO_HOUR', + EventIdx = 'EVENT_IDX', + Id = 'ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type TickerExternalAgentsHavingAverageInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentsHavingDistinctCountInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Conditions for `TickerExternalAgent` aggregates. */ +export type TickerExternalAgentsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type TickerExternalAgentsHavingMaxInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentsHavingMinInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentsHavingStddevPopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentsHavingStddevSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentsHavingSumInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentsHavingVariancePopulationInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TickerExternalAgentsHavingVarianceSampleInput = { + createdAt?: InputMaybe; + datetime?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Methods to use when ordering `TickerExternalAgent`. */ +export enum TickerExternalAgentsOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CallerIdAsc = 'CALLER_ID_ASC', + CallerIdDesc = 'CALLER_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DatetimeAsc = 'DATETIME_ASC', + DatetimeDesc = 'DATETIME_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type TransferCompliance = Node & { + __typename?: 'TransferCompliance'; + /** Reads a single `Asset` that is related to this `TransferCompliance`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + /** Reads a single `Identity` that is related to this `TransferCompliance`. */ + claimIssuer?: Maybe; + claimIssuerId?: Maybe; + claimType?: Maybe; + claimValue?: Maybe; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `TransferCompliance`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + id: Scalars['String']['output']; + max?: Maybe; + min?: Maybe; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `StatType` that is related to this `TransferCompliance`. */ + statType?: Maybe; + statTypeId: Scalars['String']['output']; + type: TransferComplianceTypeEnum; + /** Reads a single `Block` that is related to this `TransferCompliance`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + value?: Maybe; +}; + +export type TransferComplianceAggregates = { + __typename?: 'TransferComplianceAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `TransferCompliance` object types. */ +export type TransferComplianceAggregatesFilter = { + /** Mean average aggregate over matching `TransferCompliance` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `TransferCompliance` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `TransferCompliance` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `TransferCompliance` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `TransferCompliance` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `TransferCompliance` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `TransferCompliance` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `TransferCompliance` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `TransferCompliance` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `TransferCompliance` objects. */ + varianceSample?: InputMaybe; +}; + +export type TransferComplianceAverageAggregateFilter = { + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferComplianceAverageAggregates = { + __typename?: 'TransferComplianceAverageAggregates'; + /** Mean average of max across the matching connection */ + max?: Maybe; + /** Mean average of min across the matching connection */ + min?: Maybe; + /** Mean average of value across the matching connection */ + value?: Maybe; +}; + +export type TransferComplianceDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + claimIssuerId?: InputMaybe; + claimType?: InputMaybe; + claimValue?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + id?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + statTypeId?: InputMaybe; + type?: InputMaybe; + updatedBlockId?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferComplianceDistinctCountAggregates = { + __typename?: 'TransferComplianceDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of claimIssuerId across the matching connection */ + claimIssuerId?: Maybe; + /** Distinct count of claimType across the matching connection */ + claimType?: Maybe; + /** Distinct count of claimValue across the matching connection */ + claimValue?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of max across the matching connection */ + max?: Maybe; + /** Distinct count of min across the matching connection */ + min?: Maybe; + /** Distinct count of statTypeId across the matching connection */ + statTypeId?: Maybe; + /** Distinct count of type across the matching connection */ + type?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; + /** Distinct count of value across the matching connection */ + value?: Maybe; +}; + +export type TransferComplianceExemption = Node & { + __typename?: 'TransferComplianceExemption'; + /** Reads a single `Asset` that is related to this `TransferComplianceExemption`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + claimType?: Maybe; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `TransferComplianceExemption`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + exemptedEntityId: Scalars['String']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + opType: StatOpTypeEnum; + /** Reads a single `Block` that is related to this `TransferComplianceExemption`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type TransferComplianceExemptionAggregates = { + __typename?: 'TransferComplianceExemptionAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `TransferComplianceExemption` object types. */ +export type TransferComplianceExemptionAggregatesFilter = { + /** Distinct count aggregate over matching `TransferComplianceExemption` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `TransferComplianceExemption` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +export type TransferComplianceExemptionDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + claimType?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + exemptedEntityId?: InputMaybe; + id?: InputMaybe; + opType?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type TransferComplianceExemptionDistinctCountAggregates = { + __typename?: 'TransferComplianceExemptionDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of claimType across the matching connection */ + claimType?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of exemptedEntityId across the matching connection */ + exemptedEntityId?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of opType across the matching connection */ + opType?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `TransferComplianceExemption` object types. All fields are combined with a logical ‘and.’ */ +export type TransferComplianceExemptionFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `claimType` field. */ + claimType?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `exemptedEntityId` field. */ + exemptedEntityId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Filter by the object’s `opType` field. */ + opType?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `TransferComplianceExemption` values. */ +export type TransferComplianceExemptionsConnection = { + __typename?: 'TransferComplianceExemptionsConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `TransferComplianceExemption` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `TransferComplianceExemption` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `TransferComplianceExemption` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `TransferComplianceExemption` values. */ +export type TransferComplianceExemptionsConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `TransferComplianceExemption` edge in the connection. */ +export type TransferComplianceExemptionsEdge = { + __typename?: 'TransferComplianceExemptionsEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `TransferComplianceExemption` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `TransferComplianceExemption` for usage during aggregation. */ +export enum TransferComplianceExemptionsGroupBy { + AssetId = 'ASSET_ID', + ClaimType = 'CLAIM_TYPE', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + ExemptedEntityId = 'EXEMPTED_ENTITY_ID', + Id = 'ID', + OpType = 'OP_TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type TransferComplianceExemptionsHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type TransferComplianceExemptionsHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `TransferComplianceExemption` aggregates. */ +export type TransferComplianceExemptionsHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type TransferComplianceExemptionsHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type TransferComplianceExemptionsHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type TransferComplianceExemptionsHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type TransferComplianceExemptionsHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type TransferComplianceExemptionsHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type TransferComplianceExemptionsHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type TransferComplianceExemptionsHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `TransferComplianceExemption`. */ +export enum TransferComplianceExemptionsOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + ClaimTypeAsc = 'CLAIM_TYPE_ASC', + ClaimTypeDesc = 'CLAIM_TYPE_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + ExemptedEntityIdAsc = 'EXEMPTED_ENTITY_ID_ASC', + ExemptedEntityIdDesc = 'EXEMPTED_ENTITY_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + OpTypeAsc = 'OP_TYPE_ASC', + OpTypeDesc = 'OP_TYPE_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +/** A filter to be used against `TransferCompliance` object types. All fields are combined with a logical ‘and.’ */ +export type TransferComplianceFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `claimIssuer` relation. */ + claimIssuer?: InputMaybe; + /** A related `claimIssuer` exists. */ + claimIssuerExists?: InputMaybe; + /** Filter by the object’s `claimIssuerId` field. */ + claimIssuerId?: InputMaybe; + /** Filter by the object’s `claimType` field. */ + claimType?: InputMaybe; + /** Filter by the object’s `claimValue` field. */ + claimValue?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `max` field. */ + max?: InputMaybe; + /** Filter by the object’s `min` field. */ + min?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `statType` relation. */ + statType?: InputMaybe; + /** Filter by the object’s `statTypeId` field. */ + statTypeId?: InputMaybe; + /** Filter by the object’s `type` field. */ + type?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `value` field. */ + value?: InputMaybe; +}; + +export type TransferComplianceMaxAggregateFilter = { + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferComplianceMaxAggregates = { + __typename?: 'TransferComplianceMaxAggregates'; + /** Maximum of max across the matching connection */ + max?: Maybe; + /** Maximum of min across the matching connection */ + min?: Maybe; + /** Maximum of value across the matching connection */ + value?: Maybe; +}; + +export type TransferComplianceMinAggregateFilter = { + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferComplianceMinAggregates = { + __typename?: 'TransferComplianceMinAggregates'; + /** Minimum of max across the matching connection */ + max?: Maybe; + /** Minimum of min across the matching connection */ + min?: Maybe; + /** Minimum of value across the matching connection */ + value?: Maybe; +}; + +export type TransferComplianceStddevPopulationAggregateFilter = { + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferComplianceStddevPopulationAggregates = { + __typename?: 'TransferComplianceStddevPopulationAggregates'; + /** Population standard deviation of max across the matching connection */ + max?: Maybe; + /** Population standard deviation of min across the matching connection */ + min?: Maybe; + /** Population standard deviation of value across the matching connection */ + value?: Maybe; +}; + +export type TransferComplianceStddevSampleAggregateFilter = { + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferComplianceStddevSampleAggregates = { + __typename?: 'TransferComplianceStddevSampleAggregates'; + /** Sample standard deviation of max across the matching connection */ + max?: Maybe; + /** Sample standard deviation of min across the matching connection */ + min?: Maybe; + /** Sample standard deviation of value across the matching connection */ + value?: Maybe; +}; + +export type TransferComplianceSumAggregateFilter = { + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferComplianceSumAggregates = { + __typename?: 'TransferComplianceSumAggregates'; + /** Sum of max across the matching connection */ + max: Scalars['BigFloat']['output']; + /** Sum of min across the matching connection */ + min: Scalars['BigFloat']['output']; + /** Sum of value across the matching connection */ + value: Scalars['BigFloat']['output']; +}; + +/** Represents all possible transfer restriction rules that can be enabled */ +export enum TransferComplianceTypeEnum { + ClaimCount = 'ClaimCount', + ClaimOwnership = 'ClaimOwnership', + MaxInvestorCount = 'MaxInvestorCount', + MaxInvestorOwnership = 'MaxInvestorOwnership', +} + +/** A filter to be used against TransferComplianceTypeEnum fields. All fields are combined with a logical ‘and.’ */ +export type TransferComplianceTypeEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type TransferComplianceVariancePopulationAggregateFilter = { + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferComplianceVariancePopulationAggregates = { + __typename?: 'TransferComplianceVariancePopulationAggregates'; + /** Population variance of max across the matching connection */ + max?: Maybe; + /** Population variance of min across the matching connection */ + min?: Maybe; + /** Population variance of value across the matching connection */ + value?: Maybe; +}; + +export type TransferComplianceVarianceSampleAggregateFilter = { + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferComplianceVarianceSampleAggregates = { + __typename?: 'TransferComplianceVarianceSampleAggregates'; + /** Sample variance of max across the matching connection */ + max?: Maybe; + /** Sample variance of min across the matching connection */ + min?: Maybe; + /** Sample variance of value across the matching connection */ + value?: Maybe; +}; + +/** A connection to a list of `TransferCompliance` values. */ +export type TransferCompliancesConnection = { + __typename?: 'TransferCompliancesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `TransferCompliance` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `TransferCompliance` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `TransferCompliance` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `TransferCompliance` values. */ +export type TransferCompliancesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `TransferCompliance` edge in the connection. */ +export type TransferCompliancesEdge = { + __typename?: 'TransferCompliancesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `TransferCompliance` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `TransferCompliance` for usage during aggregation. */ +export enum TransferCompliancesGroupBy { + AssetId = 'ASSET_ID', + ClaimIssuerId = 'CLAIM_ISSUER_ID', + ClaimType = 'CLAIM_TYPE', + ClaimValue = 'CLAIM_VALUE', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + Max = 'MAX', + Min = 'MIN', + StatTypeId = 'STAT_TYPE_ID', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + Value = 'VALUE', +} + +export type TransferCompliancesHavingAverageInput = { + createdAt?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferCompliancesHavingDistinctCountInput = { + createdAt?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +/** Conditions for `TransferCompliance` aggregates. */ +export type TransferCompliancesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type TransferCompliancesHavingMaxInput = { + createdAt?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferCompliancesHavingMinInput = { + createdAt?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferCompliancesHavingStddevPopulationInput = { + createdAt?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferCompliancesHavingStddevSampleInput = { + createdAt?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferCompliancesHavingSumInput = { + createdAt?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferCompliancesHavingVariancePopulationInput = { + createdAt?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferCompliancesHavingVarianceSampleInput = { + createdAt?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + value?: InputMaybe; +}; + +/** Methods to use when ordering `TransferCompliance`. */ +export enum TransferCompliancesOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + ClaimIssuerIdAsc = 'CLAIM_ISSUER_ID_ASC', + ClaimIssuerIdDesc = 'CLAIM_ISSUER_ID_DESC', + ClaimTypeAsc = 'CLAIM_TYPE_ASC', + ClaimTypeDesc = 'CLAIM_TYPE_DESC', + ClaimValueAsc = 'CLAIM_VALUE_ASC', + ClaimValueDesc = 'CLAIM_VALUE_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + MaxAsc = 'MAX_ASC', + MaxDesc = 'MAX_DESC', + MinAsc = 'MIN_ASC', + MinDesc = 'MIN_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + StatTypeIdAsc = 'STAT_TYPE_ID_ASC', + StatTypeIdDesc = 'STAT_TYPE_ID_DESC', + TypeAsc = 'TYPE_ASC', + TypeDesc = 'TYPE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + ValueAsc = 'VALUE_ASC', + ValueDesc = 'VALUE_DESC', +} + +export type TransferManager = Node & { + __typename?: 'TransferManager'; + /** Reads a single `Asset` that is related to this `TransferManager`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `TransferManager`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + exemptedEntities: Scalars['JSON']['output']; + id: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + type: TransferRestrictionTypeEnum; + /** Reads a single `Block` that is related to this `TransferManager`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; + value: Scalars['Int']['output']; +}; + +export type TransferManagerAggregates = { + __typename?: 'TransferManagerAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `TransferManager` object types. */ +export type TransferManagerAggregatesFilter = { + /** Mean average aggregate over matching `TransferManager` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `TransferManager` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `TransferManager` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `TransferManager` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `TransferManager` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `TransferManager` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `TransferManager` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `TransferManager` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `TransferManager` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `TransferManager` objects. */ + varianceSample?: InputMaybe; +}; + +export type TransferManagerAverageAggregateFilter = { + value?: InputMaybe; +}; + +export type TransferManagerAverageAggregates = { + __typename?: 'TransferManagerAverageAggregates'; + /** Mean average of value across the matching connection */ + value?: Maybe; +}; + +export type TransferManagerDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + exemptedEntities?: InputMaybe; + id?: InputMaybe; + type?: InputMaybe; + updatedBlockId?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferManagerDistinctCountAggregates = { + __typename?: 'TransferManagerDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of exemptedEntities across the matching connection */ + exemptedEntities?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of type across the matching connection */ + type?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; + /** Distinct count of value across the matching connection */ + value?: Maybe; +}; + +/** A filter to be used against `TransferManager` object types. All fields are combined with a logical ‘and.’ */ +export type TransferManagerFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `exemptedEntities` field. */ + exemptedEntities?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `type` field. */ + type?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; + /** Filter by the object’s `value` field. */ + value?: InputMaybe; +}; + +export type TransferManagerMaxAggregateFilter = { + value?: InputMaybe; +}; + +export type TransferManagerMaxAggregates = { + __typename?: 'TransferManagerMaxAggregates'; + /** Maximum of value across the matching connection */ + value?: Maybe; +}; + +export type TransferManagerMinAggregateFilter = { + value?: InputMaybe; +}; + +export type TransferManagerMinAggregates = { + __typename?: 'TransferManagerMinAggregates'; + /** Minimum of value across the matching connection */ + value?: Maybe; +}; + +export type TransferManagerStddevPopulationAggregateFilter = { + value?: InputMaybe; +}; + +export type TransferManagerStddevPopulationAggregates = { + __typename?: 'TransferManagerStddevPopulationAggregates'; + /** Population standard deviation of value across the matching connection */ + value?: Maybe; +}; + +export type TransferManagerStddevSampleAggregateFilter = { + value?: InputMaybe; +}; + +export type TransferManagerStddevSampleAggregates = { + __typename?: 'TransferManagerStddevSampleAggregates'; + /** Sample standard deviation of value across the matching connection */ + value?: Maybe; +}; + +export type TransferManagerSumAggregateFilter = { + value?: InputMaybe; +}; + +export type TransferManagerSumAggregates = { + __typename?: 'TransferManagerSumAggregates'; + /** Sum of value across the matching connection */ + value: Scalars['BigInt']['output']; +}; + +export type TransferManagerVariancePopulationAggregateFilter = { + value?: InputMaybe; +}; + +export type TransferManagerVariancePopulationAggregates = { + __typename?: 'TransferManagerVariancePopulationAggregates'; + /** Population variance of value across the matching connection */ + value?: Maybe; +}; + +export type TransferManagerVarianceSampleAggregateFilter = { + value?: InputMaybe; +}; + +export type TransferManagerVarianceSampleAggregates = { + __typename?: 'TransferManagerVarianceSampleAggregates'; + /** Sample variance of value across the matching connection */ + value?: Maybe; +}; + +/** A connection to a list of `TransferManager` values. */ +export type TransferManagersConnection = { + __typename?: 'TransferManagersConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `TransferManager` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `TransferManager` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `TransferManager` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `TransferManager` values. */ +export type TransferManagersConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `TransferManager` edge in the connection. */ +export type TransferManagersEdge = { + __typename?: 'TransferManagersEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `TransferManager` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `TransferManager` for usage during aggregation. */ +export enum TransferManagersGroupBy { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + ExemptedEntities = 'EXEMPTED_ENTITIES', + Id = 'ID', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + Value = 'VALUE', +} + +export type TransferManagersHavingAverageInput = { + createdAt?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferManagersHavingDistinctCountInput = { + createdAt?: InputMaybe; + value?: InputMaybe; +}; + +/** Conditions for `TransferManager` aggregates. */ +export type TransferManagersHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type TransferManagersHavingMaxInput = { + createdAt?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferManagersHavingMinInput = { + createdAt?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferManagersHavingStddevPopulationInput = { + createdAt?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferManagersHavingStddevSampleInput = { + createdAt?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferManagersHavingSumInput = { + createdAt?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferManagersHavingVariancePopulationInput = { + createdAt?: InputMaybe; + value?: InputMaybe; +}; + +export type TransferManagersHavingVarianceSampleInput = { + createdAt?: InputMaybe; + value?: InputMaybe; +}; + +/** Methods to use when ordering `TransferManager`. */ +export enum TransferManagersOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + ExemptedEntitiesAsc = 'EXEMPTED_ENTITIES_ASC', + ExemptedEntitiesDesc = 'EXEMPTED_ENTITIES_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + TypeAsc = 'TYPE_ASC', + TypeDesc = 'TYPE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', + ValueAsc = 'VALUE_ASC', + ValueDesc = 'VALUE_DESC', +} + +/** Represents all possible transfer restriction types */ +export enum TransferRestrictionTypeEnum { + Count = 'Count', + Percentage = 'Percentage', +} + +/** A filter to be used against TransferRestrictionTypeEnum fields. All fields are combined with a logical ‘and.’ */ +export type TransferRestrictionTypeEnumFilter = { + /** Not equal to the specified value, treating null like an ordinary value. */ + distinctFrom?: InputMaybe; + /** Equal to the specified value. */ + equalTo?: InputMaybe; + /** Greater than the specified value. */ + greaterThan?: InputMaybe; + /** Greater than or equal to the specified value. */ + greaterThanOrEqualTo?: InputMaybe; + /** Included in the specified list. */ + in?: InputMaybe>; + /** Is null (if `true` is specified) or is not null (if `false` is specified). */ + isNull?: InputMaybe; + /** Less than the specified value. */ + lessThan?: InputMaybe; + /** Less than or equal to the specified value. */ + lessThanOrEqualTo?: InputMaybe; + /** Equal to the specified value, treating null like an ordinary value. */ + notDistinctFrom?: InputMaybe; + /** Not equal to the specified value. */ + notEqualTo?: InputMaybe; + /** Not included in the specified list. */ + notIn?: InputMaybe>; +}; + +export type TrustedClaimIssuer = Node & { + __typename?: 'TrustedClaimIssuer'; + /** Reads a single `Asset` that is related to this `TrustedClaimIssuer`. */ + asset?: Maybe; + assetId: Scalars['String']['output']; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `TrustedClaimIssuer`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + eventIdx: Scalars['Int']['output']; + id: Scalars['String']['output']; + issuer: Scalars['String']['output']; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Block` that is related to this `TrustedClaimIssuer`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type TrustedClaimIssuerAggregates = { + __typename?: 'TrustedClaimIssuerAggregates'; + /** Mean average aggregates across the matching connection (ignoring before/after/first/last/offset) */ + average?: Maybe; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; + /** Maximum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + max?: Maybe; + /** Minimum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + min?: Maybe; + /** Population standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevPopulation?: Maybe; + /** Sample standard deviation aggregates across the matching connection (ignoring before/after/first/last/offset) */ + stddevSample?: Maybe; + /** Sum aggregates across the matching connection (ignoring before/after/first/last/offset) */ + sum?: Maybe; + /** Population variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + variancePopulation?: Maybe; + /** Sample variance aggregates across the matching connection (ignoring before/after/first/last/offset) */ + varianceSample?: Maybe; +}; + +/** A filter to be used against aggregates of `TrustedClaimIssuer` object types. */ +export type TrustedClaimIssuerAggregatesFilter = { + /** Mean average aggregate over matching `TrustedClaimIssuer` objects. */ + average?: InputMaybe; + /** Distinct count aggregate over matching `TrustedClaimIssuer` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `TrustedClaimIssuer` object to be included within the aggregate. */ + filter?: InputMaybe; + /** Maximum aggregate over matching `TrustedClaimIssuer` objects. */ + max?: InputMaybe; + /** Minimum aggregate over matching `TrustedClaimIssuer` objects. */ + min?: InputMaybe; + /** Population standard deviation aggregate over matching `TrustedClaimIssuer` objects. */ + stddevPopulation?: InputMaybe; + /** Sample standard deviation aggregate over matching `TrustedClaimIssuer` objects. */ + stddevSample?: InputMaybe; + /** Sum aggregate over matching `TrustedClaimIssuer` objects. */ + sum?: InputMaybe; + /** Population variance aggregate over matching `TrustedClaimIssuer` objects. */ + variancePopulation?: InputMaybe; + /** Sample variance aggregate over matching `TrustedClaimIssuer` objects. */ + varianceSample?: InputMaybe; +}; + +export type TrustedClaimIssuerAverageAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuerAverageAggregates = { + __typename?: 'TrustedClaimIssuerAverageAggregates'; + /** Mean average of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TrustedClaimIssuerDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + assetId?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + eventIdx?: InputMaybe; + id?: InputMaybe; + issuer?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type TrustedClaimIssuerDistinctCountAggregates = { + __typename?: 'TrustedClaimIssuerDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of assetId across the matching connection */ + assetId?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of eventIdx across the matching connection */ + eventIdx?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of issuer across the matching connection */ + issuer?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `TrustedClaimIssuer` object types. All fields are combined with a logical ‘and.’ */ +export type TrustedClaimIssuerFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `asset` relation. */ + asset?: InputMaybe; + /** Filter by the object’s `assetId` field. */ + assetId?: InputMaybe; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `eventIdx` field. */ + eventIdx?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `issuer` field. */ + issuer?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +export type TrustedClaimIssuerMaxAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuerMaxAggregates = { + __typename?: 'TrustedClaimIssuerMaxAggregates'; + /** Maximum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TrustedClaimIssuerMinAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuerMinAggregates = { + __typename?: 'TrustedClaimIssuerMinAggregates'; + /** Minimum of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TrustedClaimIssuerStddevPopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuerStddevPopulationAggregates = { + __typename?: 'TrustedClaimIssuerStddevPopulationAggregates'; + /** Population standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TrustedClaimIssuerStddevSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuerStddevSampleAggregates = { + __typename?: 'TrustedClaimIssuerStddevSampleAggregates'; + /** Sample standard deviation of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TrustedClaimIssuerSumAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuerSumAggregates = { + __typename?: 'TrustedClaimIssuerSumAggregates'; + /** Sum of eventIdx across the matching connection */ + eventIdx: Scalars['BigInt']['output']; +}; + +export type TrustedClaimIssuerVariancePopulationAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuerVariancePopulationAggregates = { + __typename?: 'TrustedClaimIssuerVariancePopulationAggregates'; + /** Population variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +export type TrustedClaimIssuerVarianceSampleAggregateFilter = { + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuerVarianceSampleAggregates = { + __typename?: 'TrustedClaimIssuerVarianceSampleAggregates'; + /** Sample variance of eventIdx across the matching connection */ + eventIdx?: Maybe; +}; + +/** A connection to a list of `TrustedClaimIssuer` values. */ +export type TrustedClaimIssuersConnection = { + __typename?: 'TrustedClaimIssuersConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `TrustedClaimIssuer` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `TrustedClaimIssuer` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `TrustedClaimIssuer` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `TrustedClaimIssuer` values. */ +export type TrustedClaimIssuersConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `TrustedClaimIssuer` edge in the connection. */ +export type TrustedClaimIssuersEdge = { + __typename?: 'TrustedClaimIssuersEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `TrustedClaimIssuer` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `TrustedClaimIssuer` for usage during aggregation. */ +export enum TrustedClaimIssuersGroupBy { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + Issuer = 'ISSUER', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type TrustedClaimIssuersHavingAverageInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuersHavingDistinctCountInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Conditions for `TrustedClaimIssuer` aggregates. */ +export type TrustedClaimIssuersHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type TrustedClaimIssuersHavingMaxInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuersHavingMinInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuersHavingStddevPopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuersHavingStddevSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuersHavingSumInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuersHavingVariancePopulationInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +export type TrustedClaimIssuersHavingVarianceSampleInput = { + createdAt?: InputMaybe; + eventIdx?: InputMaybe; +}; + +/** Methods to use when ordering `TrustedClaimIssuer`. */ +export enum TrustedClaimIssuersOrderBy { + AssetIdAsc = 'ASSET_ID_ASC', + AssetIdDesc = 'ASSET_ID_DESC', + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + EventIdxAsc = 'EVENT_IDX_ASC', + EventIdxDesc = 'EVENT_IDX_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + IssuerAsc = 'ISSUER_ASC', + IssuerDesc = 'ISSUER_DESC', + Natural = 'NATURAL', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type Venue = Node & { + __typename?: 'Venue'; + /** Reads and enables pagination through a set of `Asset`. */ + assetsByStoVenueIdAndOfferingAssetId: VenueAssetsByStoVenueIdAndOfferingAssetIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionVenueIdAndCreatedBlockId: VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByInstructionVenueIdAndUpdatedBlockId: VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoVenueIdAndCreatedBlockId: VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyConnection; + /** Reads and enables pagination through a set of `Block`. */ + blocksByStoVenueIdAndUpdatedBlockId: VenueBlocksByStoVenueIdAndUpdatedBlockIdManyToManyConnection; + createdAt?: Maybe; + /** Reads a single `Block` that is related to this `Venue`. */ + createdBlock?: Maybe; + createdBlockId: Scalars['String']['output']; + details?: Maybe; + id: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Identity`. */ + identitiesByStoVenueIdAndCreatorId: VenueIdentitiesByStoVenueIdAndCreatorIdManyToManyConnection; + /** Reads and enables pagination through a set of `Instruction`. */ + instructions: InstructionsConnection; + /** A globally unique identifier. Can be used in various places throughout the system to identify this single value. */ + nodeId: Scalars['ID']['output']; + /** Reads a single `Identity` that is related to this `Venue`. */ + owner?: Maybe; + ownerId: Scalars['String']['output']; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoVenueIdAndOfferingPortfolioId: VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyConnection; + /** Reads and enables pagination through a set of `Portfolio`. */ + portfoliosByStoVenueIdAndRaisingPortfolioId: VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyConnection; + signers: Scalars['JSON']['output']; + /** Reads and enables pagination through a set of `Sto`. */ + stos: StosConnection; + type: Scalars['String']['output']; + /** Reads a single `Block` that is related to this `Venue`. */ + updatedBlock?: Maybe; + updatedBlockId: Scalars['String']['output']; +}; + +export type VenueAssetsByStoVenueIdAndOfferingAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type VenueBlocksByStoVenueIdAndCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type VenueBlocksByStoVenueIdAndUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type VenueIdentitiesByStoVenueIdAndCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type VenueInstructionsArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type VenueStosArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type VenueAggregates = { + __typename?: 'VenueAggregates'; + /** Distinct count aggregates across the matching connection (ignoring before/after/first/last/offset) */ + distinctCount?: Maybe; + keys?: Maybe>; +}; + +/** A filter to be used against aggregates of `Venue` object types. */ +export type VenueAggregatesFilter = { + /** Distinct count aggregate over matching `Venue` objects. */ + distinctCount?: InputMaybe; + /** A filter that must pass for the relevant `Venue` object to be included within the aggregate. */ + filter?: InputMaybe; +}; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type VenueAssetsByStoVenueIdAndOfferingAssetIdManyToManyConnection = { + __typename?: 'VenueAssetsByStoVenueIdAndOfferingAssetIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Asset`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Asset` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Asset` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Asset` values, with data from `Sto`. */ +export type VenueAssetsByStoVenueIdAndOfferingAssetIdManyToManyConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type VenueAssetsByStoVenueIdAndOfferingAssetIdManyToManyEdge = { + __typename?: 'VenueAssetsByStoVenueIdAndOfferingAssetIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Asset` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingAssetId: StosConnection; +}; + +/** A `Asset` edge in the connection, with data from `Sto`. */ +export type VenueAssetsByStoVenueIdAndOfferingAssetIdManyToManyEdgeStosByOfferingAssetIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Block` values, with data from `Instruction`. */ +export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Instruction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Instruction`. */ +export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Instruction`. */ +export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByCreatedBlockId: InstructionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Instruction`. */ +export type VenueBlocksByInstructionVenueIdAndCreatedBlockIdManyToManyEdgeInstructionsByCreatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Instruction`. */ +export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Instruction`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Instruction`. */ +export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Block` edge in the connection, with data from `Instruction`. */ +export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** Reads and enables pagination through a set of `Instruction`. */ + instructionsByUpdatedBlockId: InstructionsConnection; + /** The `Block` at the end of the edge. */ + node?: Maybe; +}; + +/** A `Block` edge in the connection, with data from `Instruction`. */ +export type VenueBlocksByInstructionVenueIdAndUpdatedBlockIdManyToManyEdgeInstructionsByUpdatedBlockIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyConnection = { + __typename?: 'VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyEdge = { + __typename?: 'VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type VenueBlocksByStoVenueIdAndCreatedBlockIdManyToManyEdgeStosByCreatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type VenueBlocksByStoVenueIdAndUpdatedBlockIdManyToManyConnection = { + __typename?: 'VenueBlocksByStoVenueIdAndUpdatedBlockIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Block`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Block` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Block` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Block` values, with data from `Sto`. */ +export type VenueBlocksByStoVenueIdAndUpdatedBlockIdManyToManyConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type VenueBlocksByStoVenueIdAndUpdatedBlockIdManyToManyEdge = { + __typename?: 'VenueBlocksByStoVenueIdAndUpdatedBlockIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Block` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByUpdatedBlockId: StosConnection; +}; + +/** A `Block` edge in the connection, with data from `Sto`. */ +export type VenueBlocksByStoVenueIdAndUpdatedBlockIdManyToManyEdgeStosByUpdatedBlockIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +export type VenueDistinctCountAggregateFilter = { + _blockRange?: InputMaybe; + _id?: InputMaybe; + createdAt?: InputMaybe; + createdBlockId?: InputMaybe; + details?: InputMaybe; + id?: InputMaybe; + ownerId?: InputMaybe; + signers?: InputMaybe; + type?: InputMaybe; + updatedBlockId?: InputMaybe; +}; + +export type VenueDistinctCountAggregates = { + __typename?: 'VenueDistinctCountAggregates'; + /** Distinct count of _blockRange across the matching connection */ + _blockRange?: Maybe; + /** Distinct count of _id across the matching connection */ + _id?: Maybe; + /** Distinct count of createdAt across the matching connection */ + createdAt?: Maybe; + /** Distinct count of createdBlockId across the matching connection */ + createdBlockId?: Maybe; + /** Distinct count of details across the matching connection */ + details?: Maybe; + /** Distinct count of id across the matching connection */ + id?: Maybe; + /** Distinct count of ownerId across the matching connection */ + ownerId?: Maybe; + /** Distinct count of signers across the matching connection */ + signers?: Maybe; + /** Distinct count of type across the matching connection */ + type?: Maybe; + /** Distinct count of updatedBlockId across the matching connection */ + updatedBlockId?: Maybe; +}; + +/** A filter to be used against `Venue` object types. All fields are combined with a logical ‘and.’ */ +export type VenueFilter = { + /** Checks for all expressions in this list. */ + and?: InputMaybe>; + /** Filter by the object’s `createdAt` field. */ + createdAt?: InputMaybe; + /** Filter by the object’s `createdBlock` relation. */ + createdBlock?: InputMaybe; + /** Filter by the object’s `createdBlockId` field. */ + createdBlockId?: InputMaybe; + /** Filter by the object’s `details` field. */ + details?: InputMaybe; + /** Filter by the object’s `id` field. */ + id?: InputMaybe; + /** Filter by the object’s `instructions` relation. */ + instructions?: InputMaybe; + /** Some related `instructions` exist. */ + instructionsExist?: InputMaybe; + /** Negates the expression. */ + not?: InputMaybe; + /** Checks for any expressions in this list. */ + or?: InputMaybe>; + /** Filter by the object’s `owner` relation. */ + owner?: InputMaybe; + /** Filter by the object’s `ownerId` field. */ + ownerId?: InputMaybe; + /** Filter by the object’s `signers` field. */ + signers?: InputMaybe; + /** Filter by the object’s `stos` relation. */ + stos?: InputMaybe; + /** Some related `stos` exist. */ + stosExist?: InputMaybe; + /** Filter by the object’s `type` field. */ + type?: InputMaybe; + /** Filter by the object’s `updatedBlock` relation. */ + updatedBlock?: InputMaybe; + /** Filter by the object’s `updatedBlockId` field. */ + updatedBlockId?: InputMaybe; +}; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type VenueIdentitiesByStoVenueIdAndCreatorIdManyToManyConnection = { + __typename?: 'VenueIdentitiesByStoVenueIdAndCreatorIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Identity`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Identity` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Identity` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Identity` values, with data from `Sto`. */ +export type VenueIdentitiesByStoVenueIdAndCreatorIdManyToManyConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type VenueIdentitiesByStoVenueIdAndCreatorIdManyToManyEdge = { + __typename?: 'VenueIdentitiesByStoVenueIdAndCreatorIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Identity` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByCreatorId: StosConnection; +}; + +/** A `Identity` edge in the connection, with data from `Sto`. */ +export type VenueIdentitiesByStoVenueIdAndCreatorIdManyToManyEdgeStosByCreatorIdArgs = { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyConnection = { + __typename?: 'VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyEdge = { + __typename?: 'VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByOfferingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type VenuePortfoliosByStoVenueIdAndOfferingPortfolioIdManyToManyEdgeStosByOfferingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyConnection = { + __typename?: 'VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Portfolio`, info from the `Sto`, and the cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Portfolio` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Portfolio` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Portfolio` values, with data from `Sto`. */ +export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyConnectionGroupedAggregatesArgs = + { + groupBy: Array; + having?: InputMaybe; + }; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyEdge = { + __typename?: 'VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Portfolio` at the end of the edge. */ + node?: Maybe; + /** Reads and enables pagination through a set of `Sto`. */ + stosByRaisingPortfolioId: StosConnection; +}; + +/** A `Portfolio` edge in the connection, with data from `Sto`. */ +export type VenuePortfoliosByStoVenueIdAndRaisingPortfolioIdManyToManyEdgeStosByRaisingPortfolioIdArgs = + { + after?: InputMaybe; + before?: InputMaybe; + blockHeight?: InputMaybe; + distinct?: InputMaybe>>; + filter?: InputMaybe; + first?: InputMaybe; + last?: InputMaybe; + offset?: InputMaybe; + orderBy?: InputMaybe>; + }; + +/** A filter to be used against many `Instruction` object types. All fields are combined with a logical ‘and.’ */ +export type VenueToManyInstructionFilter = { + /** Aggregates across related `Instruction` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Instruction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Instruction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Instruction` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A filter to be used against many `Sto` object types. All fields are combined with a logical ‘and.’ */ +export type VenueToManyStoFilter = { + /** Aggregates across related `Sto` match the filter criteria. */ + aggregates?: InputMaybe; + /** Every related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + every?: InputMaybe; + /** No related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + none?: InputMaybe; + /** Some related `Sto` matches the filter criteria. All fields are combined with a logical ‘and.’ */ + some?: InputMaybe; +}; + +/** A connection to a list of `Venue` values. */ +export type VenuesConnection = { + __typename?: 'VenuesConnection'; + /** Aggregates across the matching connection (ignoring before/after/first/last/offset) */ + aggregates?: Maybe; + /** A list of edges which contains the `Venue` and cursor to aid in pagination. */ + edges: Array; + /** Grouped aggregates across the matching connection (ignoring before/after/first/last/offset) */ + groupedAggregates?: Maybe>; + /** A list of `Venue` objects. */ + nodes: Array>; + /** Information to aid in pagination. */ + pageInfo: PageInfo; + /** The count of *all* `Venue` you could get from the connection. */ + totalCount: Scalars['Int']['output']; +}; + +/** A connection to a list of `Venue` values. */ +export type VenuesConnectionGroupedAggregatesArgs = { + groupBy: Array; + having?: InputMaybe; +}; + +/** A `Venue` edge in the connection. */ +export type VenuesEdge = { + __typename?: 'VenuesEdge'; + /** A cursor for use in pagination. */ + cursor?: Maybe; + /** The `Venue` at the end of the edge. */ + node?: Maybe; +}; + +/** Grouping methods for `Venue` for usage during aggregation. */ +export enum VenuesGroupBy { + CreatedAt = 'CREATED_AT', + CreatedAtTruncatedToDay = 'CREATED_AT_TRUNCATED_TO_DAY', + CreatedAtTruncatedToHour = 'CREATED_AT_TRUNCATED_TO_HOUR', + CreatedBlockId = 'CREATED_BLOCK_ID', + Details = 'DETAILS', + Id = 'ID', + OwnerId = 'OWNER_ID', + Signers = 'SIGNERS', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export type VenuesHavingAverageInput = { + createdAt?: InputMaybe; +}; + +export type VenuesHavingDistinctCountInput = { + createdAt?: InputMaybe; +}; + +/** Conditions for `Venue` aggregates. */ +export type VenuesHavingInput = { + AND?: InputMaybe>; + OR?: InputMaybe>; + average?: InputMaybe; + distinctCount?: InputMaybe; + max?: InputMaybe; + min?: InputMaybe; + stddevPopulation?: InputMaybe; + stddevSample?: InputMaybe; + sum?: InputMaybe; + variancePopulation?: InputMaybe; + varianceSample?: InputMaybe; +}; + +export type VenuesHavingMaxInput = { + createdAt?: InputMaybe; +}; + +export type VenuesHavingMinInput = { + createdAt?: InputMaybe; +}; + +export type VenuesHavingStddevPopulationInput = { + createdAt?: InputMaybe; +}; + +export type VenuesHavingStddevSampleInput = { + createdAt?: InputMaybe; +}; + +export type VenuesHavingSumInput = { + createdAt?: InputMaybe; +}; + +export type VenuesHavingVariancePopulationInput = { + createdAt?: InputMaybe; +}; + +export type VenuesHavingVarianceSampleInput = { + createdAt?: InputMaybe; +}; + +/** Methods to use when ordering `Venue`. */ +export enum VenuesOrderBy { + CreatedAtAsc = 'CREATED_AT_ASC', + CreatedAtDesc = 'CREATED_AT_DESC', + CreatedBlockIdAsc = 'CREATED_BLOCK_ID_ASC', + CreatedBlockIdDesc = 'CREATED_BLOCK_ID_DESC', + DetailsAsc = 'DETAILS_ASC', + DetailsDesc = 'DETAILS_DESC', + IdAsc = 'ID_ASC', + IdDesc = 'ID_DESC', + InstructionsAverageBlockRangeAsc = 'INSTRUCTIONS_AVERAGE_BLOCK_RANGE_ASC', + InstructionsAverageBlockRangeDesc = 'INSTRUCTIONS_AVERAGE_BLOCK_RANGE_DESC', + InstructionsAverageCreatedAtAsc = 'INSTRUCTIONS_AVERAGE_CREATED_AT_ASC', + InstructionsAverageCreatedAtDesc = 'INSTRUCTIONS_AVERAGE_CREATED_AT_DESC', + InstructionsAverageCreatedBlockIdAsc = 'INSTRUCTIONS_AVERAGE_CREATED_BLOCK_ID_ASC', + InstructionsAverageCreatedBlockIdDesc = 'INSTRUCTIONS_AVERAGE_CREATED_BLOCK_ID_DESC', + InstructionsAverageEndAfterBlockAsc = 'INSTRUCTIONS_AVERAGE_END_AFTER_BLOCK_ASC', + InstructionsAverageEndAfterBlockDesc = 'INSTRUCTIONS_AVERAGE_END_AFTER_BLOCK_DESC', + InstructionsAverageEndBlockAsc = 'INSTRUCTIONS_AVERAGE_END_BLOCK_ASC', + InstructionsAverageEndBlockDesc = 'INSTRUCTIONS_AVERAGE_END_BLOCK_DESC', + InstructionsAverageFailureReasonAsc = 'INSTRUCTIONS_AVERAGE_FAILURE_REASON_ASC', + InstructionsAverageFailureReasonDesc = 'INSTRUCTIONS_AVERAGE_FAILURE_REASON_DESC', + InstructionsAverageIdAsc = 'INSTRUCTIONS_AVERAGE_ID_ASC', + InstructionsAverageIdDesc = 'INSTRUCTIONS_AVERAGE_ID_DESC', + InstructionsAverageMediatorsAsc = 'INSTRUCTIONS_AVERAGE_MEDIATORS_ASC', + InstructionsAverageMediatorsDesc = 'INSTRUCTIONS_AVERAGE_MEDIATORS_DESC', + InstructionsAverageMemoAsc = 'INSTRUCTIONS_AVERAGE_MEMO_ASC', + InstructionsAverageMemoDesc = 'INSTRUCTIONS_AVERAGE_MEMO_DESC', + InstructionsAverageStatusAsc = 'INSTRUCTIONS_AVERAGE_STATUS_ASC', + InstructionsAverageStatusDesc = 'INSTRUCTIONS_AVERAGE_STATUS_DESC', + InstructionsAverageTradeDateAsc = 'INSTRUCTIONS_AVERAGE_TRADE_DATE_ASC', + InstructionsAverageTradeDateDesc = 'INSTRUCTIONS_AVERAGE_TRADE_DATE_DESC', + InstructionsAverageTypeAsc = 'INSTRUCTIONS_AVERAGE_TYPE_ASC', + InstructionsAverageTypeDesc = 'INSTRUCTIONS_AVERAGE_TYPE_DESC', + InstructionsAverageUpdatedBlockIdAsc = 'INSTRUCTIONS_AVERAGE_UPDATED_BLOCK_ID_ASC', + InstructionsAverageUpdatedBlockIdDesc = 'INSTRUCTIONS_AVERAGE_UPDATED_BLOCK_ID_DESC', + InstructionsAverageValueDateAsc = 'INSTRUCTIONS_AVERAGE_VALUE_DATE_ASC', + InstructionsAverageValueDateDesc = 'INSTRUCTIONS_AVERAGE_VALUE_DATE_DESC', + InstructionsAverageVenueIdAsc = 'INSTRUCTIONS_AVERAGE_VENUE_ID_ASC', + InstructionsAverageVenueIdDesc = 'INSTRUCTIONS_AVERAGE_VENUE_ID_DESC', + InstructionsCountAsc = 'INSTRUCTIONS_COUNT_ASC', + InstructionsCountDesc = 'INSTRUCTIONS_COUNT_DESC', + InstructionsDistinctCountBlockRangeAsc = 'INSTRUCTIONS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + InstructionsDistinctCountBlockRangeDesc = 'INSTRUCTIONS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + InstructionsDistinctCountCreatedAtAsc = 'INSTRUCTIONS_DISTINCT_COUNT_CREATED_AT_ASC', + InstructionsDistinctCountCreatedAtDesc = 'INSTRUCTIONS_DISTINCT_COUNT_CREATED_AT_DESC', + InstructionsDistinctCountCreatedBlockIdAsc = 'INSTRUCTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + InstructionsDistinctCountCreatedBlockIdDesc = 'INSTRUCTIONS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + InstructionsDistinctCountEndAfterBlockAsc = 'INSTRUCTIONS_DISTINCT_COUNT_END_AFTER_BLOCK_ASC', + InstructionsDistinctCountEndAfterBlockDesc = 'INSTRUCTIONS_DISTINCT_COUNT_END_AFTER_BLOCK_DESC', + InstructionsDistinctCountEndBlockAsc = 'INSTRUCTIONS_DISTINCT_COUNT_END_BLOCK_ASC', + InstructionsDistinctCountEndBlockDesc = 'INSTRUCTIONS_DISTINCT_COUNT_END_BLOCK_DESC', + InstructionsDistinctCountFailureReasonAsc = 'INSTRUCTIONS_DISTINCT_COUNT_FAILURE_REASON_ASC', + InstructionsDistinctCountFailureReasonDesc = 'INSTRUCTIONS_DISTINCT_COUNT_FAILURE_REASON_DESC', + InstructionsDistinctCountIdAsc = 'INSTRUCTIONS_DISTINCT_COUNT_ID_ASC', + InstructionsDistinctCountIdDesc = 'INSTRUCTIONS_DISTINCT_COUNT_ID_DESC', + InstructionsDistinctCountMediatorsAsc = 'INSTRUCTIONS_DISTINCT_COUNT_MEDIATORS_ASC', + InstructionsDistinctCountMediatorsDesc = 'INSTRUCTIONS_DISTINCT_COUNT_MEDIATORS_DESC', + InstructionsDistinctCountMemoAsc = 'INSTRUCTIONS_DISTINCT_COUNT_MEMO_ASC', + InstructionsDistinctCountMemoDesc = 'INSTRUCTIONS_DISTINCT_COUNT_MEMO_DESC', + InstructionsDistinctCountStatusAsc = 'INSTRUCTIONS_DISTINCT_COUNT_STATUS_ASC', + InstructionsDistinctCountStatusDesc = 'INSTRUCTIONS_DISTINCT_COUNT_STATUS_DESC', + InstructionsDistinctCountTradeDateAsc = 'INSTRUCTIONS_DISTINCT_COUNT_TRADE_DATE_ASC', + InstructionsDistinctCountTradeDateDesc = 'INSTRUCTIONS_DISTINCT_COUNT_TRADE_DATE_DESC', + InstructionsDistinctCountTypeAsc = 'INSTRUCTIONS_DISTINCT_COUNT_TYPE_ASC', + InstructionsDistinctCountTypeDesc = 'INSTRUCTIONS_DISTINCT_COUNT_TYPE_DESC', + InstructionsDistinctCountUpdatedBlockIdAsc = 'INSTRUCTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + InstructionsDistinctCountUpdatedBlockIdDesc = 'INSTRUCTIONS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + InstructionsDistinctCountValueDateAsc = 'INSTRUCTIONS_DISTINCT_COUNT_VALUE_DATE_ASC', + InstructionsDistinctCountValueDateDesc = 'INSTRUCTIONS_DISTINCT_COUNT_VALUE_DATE_DESC', + InstructionsDistinctCountVenueIdAsc = 'INSTRUCTIONS_DISTINCT_COUNT_VENUE_ID_ASC', + InstructionsDistinctCountVenueIdDesc = 'INSTRUCTIONS_DISTINCT_COUNT_VENUE_ID_DESC', + InstructionsMaxBlockRangeAsc = 'INSTRUCTIONS_MAX_BLOCK_RANGE_ASC', + InstructionsMaxBlockRangeDesc = 'INSTRUCTIONS_MAX_BLOCK_RANGE_DESC', + InstructionsMaxCreatedAtAsc = 'INSTRUCTIONS_MAX_CREATED_AT_ASC', + InstructionsMaxCreatedAtDesc = 'INSTRUCTIONS_MAX_CREATED_AT_DESC', + InstructionsMaxCreatedBlockIdAsc = 'INSTRUCTIONS_MAX_CREATED_BLOCK_ID_ASC', + InstructionsMaxCreatedBlockIdDesc = 'INSTRUCTIONS_MAX_CREATED_BLOCK_ID_DESC', + InstructionsMaxEndAfterBlockAsc = 'INSTRUCTIONS_MAX_END_AFTER_BLOCK_ASC', + InstructionsMaxEndAfterBlockDesc = 'INSTRUCTIONS_MAX_END_AFTER_BLOCK_DESC', + InstructionsMaxEndBlockAsc = 'INSTRUCTIONS_MAX_END_BLOCK_ASC', + InstructionsMaxEndBlockDesc = 'INSTRUCTIONS_MAX_END_BLOCK_DESC', + InstructionsMaxFailureReasonAsc = 'INSTRUCTIONS_MAX_FAILURE_REASON_ASC', + InstructionsMaxFailureReasonDesc = 'INSTRUCTIONS_MAX_FAILURE_REASON_DESC', + InstructionsMaxIdAsc = 'INSTRUCTIONS_MAX_ID_ASC', + InstructionsMaxIdDesc = 'INSTRUCTIONS_MAX_ID_DESC', + InstructionsMaxMediatorsAsc = 'INSTRUCTIONS_MAX_MEDIATORS_ASC', + InstructionsMaxMediatorsDesc = 'INSTRUCTIONS_MAX_MEDIATORS_DESC', + InstructionsMaxMemoAsc = 'INSTRUCTIONS_MAX_MEMO_ASC', + InstructionsMaxMemoDesc = 'INSTRUCTIONS_MAX_MEMO_DESC', + InstructionsMaxStatusAsc = 'INSTRUCTIONS_MAX_STATUS_ASC', + InstructionsMaxStatusDesc = 'INSTRUCTIONS_MAX_STATUS_DESC', + InstructionsMaxTradeDateAsc = 'INSTRUCTIONS_MAX_TRADE_DATE_ASC', + InstructionsMaxTradeDateDesc = 'INSTRUCTIONS_MAX_TRADE_DATE_DESC', + InstructionsMaxTypeAsc = 'INSTRUCTIONS_MAX_TYPE_ASC', + InstructionsMaxTypeDesc = 'INSTRUCTIONS_MAX_TYPE_DESC', + InstructionsMaxUpdatedBlockIdAsc = 'INSTRUCTIONS_MAX_UPDATED_BLOCK_ID_ASC', + InstructionsMaxUpdatedBlockIdDesc = 'INSTRUCTIONS_MAX_UPDATED_BLOCK_ID_DESC', + InstructionsMaxValueDateAsc = 'INSTRUCTIONS_MAX_VALUE_DATE_ASC', + InstructionsMaxValueDateDesc = 'INSTRUCTIONS_MAX_VALUE_DATE_DESC', + InstructionsMaxVenueIdAsc = 'INSTRUCTIONS_MAX_VENUE_ID_ASC', + InstructionsMaxVenueIdDesc = 'INSTRUCTIONS_MAX_VENUE_ID_DESC', + InstructionsMinBlockRangeAsc = 'INSTRUCTIONS_MIN_BLOCK_RANGE_ASC', + InstructionsMinBlockRangeDesc = 'INSTRUCTIONS_MIN_BLOCK_RANGE_DESC', + InstructionsMinCreatedAtAsc = 'INSTRUCTIONS_MIN_CREATED_AT_ASC', + InstructionsMinCreatedAtDesc = 'INSTRUCTIONS_MIN_CREATED_AT_DESC', + InstructionsMinCreatedBlockIdAsc = 'INSTRUCTIONS_MIN_CREATED_BLOCK_ID_ASC', + InstructionsMinCreatedBlockIdDesc = 'INSTRUCTIONS_MIN_CREATED_BLOCK_ID_DESC', + InstructionsMinEndAfterBlockAsc = 'INSTRUCTIONS_MIN_END_AFTER_BLOCK_ASC', + InstructionsMinEndAfterBlockDesc = 'INSTRUCTIONS_MIN_END_AFTER_BLOCK_DESC', + InstructionsMinEndBlockAsc = 'INSTRUCTIONS_MIN_END_BLOCK_ASC', + InstructionsMinEndBlockDesc = 'INSTRUCTIONS_MIN_END_BLOCK_DESC', + InstructionsMinFailureReasonAsc = 'INSTRUCTIONS_MIN_FAILURE_REASON_ASC', + InstructionsMinFailureReasonDesc = 'INSTRUCTIONS_MIN_FAILURE_REASON_DESC', + InstructionsMinIdAsc = 'INSTRUCTIONS_MIN_ID_ASC', + InstructionsMinIdDesc = 'INSTRUCTIONS_MIN_ID_DESC', + InstructionsMinMediatorsAsc = 'INSTRUCTIONS_MIN_MEDIATORS_ASC', + InstructionsMinMediatorsDesc = 'INSTRUCTIONS_MIN_MEDIATORS_DESC', + InstructionsMinMemoAsc = 'INSTRUCTIONS_MIN_MEMO_ASC', + InstructionsMinMemoDesc = 'INSTRUCTIONS_MIN_MEMO_DESC', + InstructionsMinStatusAsc = 'INSTRUCTIONS_MIN_STATUS_ASC', + InstructionsMinStatusDesc = 'INSTRUCTIONS_MIN_STATUS_DESC', + InstructionsMinTradeDateAsc = 'INSTRUCTIONS_MIN_TRADE_DATE_ASC', + InstructionsMinTradeDateDesc = 'INSTRUCTIONS_MIN_TRADE_DATE_DESC', + InstructionsMinTypeAsc = 'INSTRUCTIONS_MIN_TYPE_ASC', + InstructionsMinTypeDesc = 'INSTRUCTIONS_MIN_TYPE_DESC', + InstructionsMinUpdatedBlockIdAsc = 'INSTRUCTIONS_MIN_UPDATED_BLOCK_ID_ASC', + InstructionsMinUpdatedBlockIdDesc = 'INSTRUCTIONS_MIN_UPDATED_BLOCK_ID_DESC', + InstructionsMinValueDateAsc = 'INSTRUCTIONS_MIN_VALUE_DATE_ASC', + InstructionsMinValueDateDesc = 'INSTRUCTIONS_MIN_VALUE_DATE_DESC', + InstructionsMinVenueIdAsc = 'INSTRUCTIONS_MIN_VENUE_ID_ASC', + InstructionsMinVenueIdDesc = 'INSTRUCTIONS_MIN_VENUE_ID_DESC', + InstructionsStddevPopulationBlockRangeAsc = 'INSTRUCTIONS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + InstructionsStddevPopulationBlockRangeDesc = 'INSTRUCTIONS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + InstructionsStddevPopulationCreatedAtAsc = 'INSTRUCTIONS_STDDEV_POPULATION_CREATED_AT_ASC', + InstructionsStddevPopulationCreatedAtDesc = 'INSTRUCTIONS_STDDEV_POPULATION_CREATED_AT_DESC', + InstructionsStddevPopulationCreatedBlockIdAsc = 'INSTRUCTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionsStddevPopulationCreatedBlockIdDesc = 'INSTRUCTIONS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionsStddevPopulationEndAfterBlockAsc = 'INSTRUCTIONS_STDDEV_POPULATION_END_AFTER_BLOCK_ASC', + InstructionsStddevPopulationEndAfterBlockDesc = 'INSTRUCTIONS_STDDEV_POPULATION_END_AFTER_BLOCK_DESC', + InstructionsStddevPopulationEndBlockAsc = 'INSTRUCTIONS_STDDEV_POPULATION_END_BLOCK_ASC', + InstructionsStddevPopulationEndBlockDesc = 'INSTRUCTIONS_STDDEV_POPULATION_END_BLOCK_DESC', + InstructionsStddevPopulationFailureReasonAsc = 'INSTRUCTIONS_STDDEV_POPULATION_FAILURE_REASON_ASC', + InstructionsStddevPopulationFailureReasonDesc = 'INSTRUCTIONS_STDDEV_POPULATION_FAILURE_REASON_DESC', + InstructionsStddevPopulationIdAsc = 'INSTRUCTIONS_STDDEV_POPULATION_ID_ASC', + InstructionsStddevPopulationIdDesc = 'INSTRUCTIONS_STDDEV_POPULATION_ID_DESC', + InstructionsStddevPopulationMediatorsAsc = 'INSTRUCTIONS_STDDEV_POPULATION_MEDIATORS_ASC', + InstructionsStddevPopulationMediatorsDesc = 'INSTRUCTIONS_STDDEV_POPULATION_MEDIATORS_DESC', + InstructionsStddevPopulationMemoAsc = 'INSTRUCTIONS_STDDEV_POPULATION_MEMO_ASC', + InstructionsStddevPopulationMemoDesc = 'INSTRUCTIONS_STDDEV_POPULATION_MEMO_DESC', + InstructionsStddevPopulationStatusAsc = 'INSTRUCTIONS_STDDEV_POPULATION_STATUS_ASC', + InstructionsStddevPopulationStatusDesc = 'INSTRUCTIONS_STDDEV_POPULATION_STATUS_DESC', + InstructionsStddevPopulationTradeDateAsc = 'INSTRUCTIONS_STDDEV_POPULATION_TRADE_DATE_ASC', + InstructionsStddevPopulationTradeDateDesc = 'INSTRUCTIONS_STDDEV_POPULATION_TRADE_DATE_DESC', + InstructionsStddevPopulationTypeAsc = 'INSTRUCTIONS_STDDEV_POPULATION_TYPE_ASC', + InstructionsStddevPopulationTypeDesc = 'INSTRUCTIONS_STDDEV_POPULATION_TYPE_DESC', + InstructionsStddevPopulationUpdatedBlockIdAsc = 'INSTRUCTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionsStddevPopulationUpdatedBlockIdDesc = 'INSTRUCTIONS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionsStddevPopulationValueDateAsc = 'INSTRUCTIONS_STDDEV_POPULATION_VALUE_DATE_ASC', + InstructionsStddevPopulationValueDateDesc = 'INSTRUCTIONS_STDDEV_POPULATION_VALUE_DATE_DESC', + InstructionsStddevPopulationVenueIdAsc = 'INSTRUCTIONS_STDDEV_POPULATION_VENUE_ID_ASC', + InstructionsStddevPopulationVenueIdDesc = 'INSTRUCTIONS_STDDEV_POPULATION_VENUE_ID_DESC', + InstructionsStddevSampleBlockRangeAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + InstructionsStddevSampleBlockRangeDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + InstructionsStddevSampleCreatedAtAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_CREATED_AT_ASC', + InstructionsStddevSampleCreatedAtDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_CREATED_AT_DESC', + InstructionsStddevSampleCreatedBlockIdAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionsStddevSampleCreatedBlockIdDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionsStddevSampleEndAfterBlockAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_END_AFTER_BLOCK_ASC', + InstructionsStddevSampleEndAfterBlockDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_END_AFTER_BLOCK_DESC', + InstructionsStddevSampleEndBlockAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_END_BLOCK_ASC', + InstructionsStddevSampleEndBlockDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_END_BLOCK_DESC', + InstructionsStddevSampleFailureReasonAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_FAILURE_REASON_ASC', + InstructionsStddevSampleFailureReasonDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_FAILURE_REASON_DESC', + InstructionsStddevSampleIdAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_ID_ASC', + InstructionsStddevSampleIdDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_ID_DESC', + InstructionsStddevSampleMediatorsAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_MEDIATORS_ASC', + InstructionsStddevSampleMediatorsDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_MEDIATORS_DESC', + InstructionsStddevSampleMemoAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_MEMO_ASC', + InstructionsStddevSampleMemoDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_MEMO_DESC', + InstructionsStddevSampleStatusAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_STATUS_ASC', + InstructionsStddevSampleStatusDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_STATUS_DESC', + InstructionsStddevSampleTradeDateAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_TRADE_DATE_ASC', + InstructionsStddevSampleTradeDateDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_TRADE_DATE_DESC', + InstructionsStddevSampleTypeAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_TYPE_ASC', + InstructionsStddevSampleTypeDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_TYPE_DESC', + InstructionsStddevSampleUpdatedBlockIdAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionsStddevSampleUpdatedBlockIdDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionsStddevSampleValueDateAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_VALUE_DATE_ASC', + InstructionsStddevSampleValueDateDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_VALUE_DATE_DESC', + InstructionsStddevSampleVenueIdAsc = 'INSTRUCTIONS_STDDEV_SAMPLE_VENUE_ID_ASC', + InstructionsStddevSampleVenueIdDesc = 'INSTRUCTIONS_STDDEV_SAMPLE_VENUE_ID_DESC', + InstructionsSumBlockRangeAsc = 'INSTRUCTIONS_SUM_BLOCK_RANGE_ASC', + InstructionsSumBlockRangeDesc = 'INSTRUCTIONS_SUM_BLOCK_RANGE_DESC', + InstructionsSumCreatedAtAsc = 'INSTRUCTIONS_SUM_CREATED_AT_ASC', + InstructionsSumCreatedAtDesc = 'INSTRUCTIONS_SUM_CREATED_AT_DESC', + InstructionsSumCreatedBlockIdAsc = 'INSTRUCTIONS_SUM_CREATED_BLOCK_ID_ASC', + InstructionsSumCreatedBlockIdDesc = 'INSTRUCTIONS_SUM_CREATED_BLOCK_ID_DESC', + InstructionsSumEndAfterBlockAsc = 'INSTRUCTIONS_SUM_END_AFTER_BLOCK_ASC', + InstructionsSumEndAfterBlockDesc = 'INSTRUCTIONS_SUM_END_AFTER_BLOCK_DESC', + InstructionsSumEndBlockAsc = 'INSTRUCTIONS_SUM_END_BLOCK_ASC', + InstructionsSumEndBlockDesc = 'INSTRUCTIONS_SUM_END_BLOCK_DESC', + InstructionsSumFailureReasonAsc = 'INSTRUCTIONS_SUM_FAILURE_REASON_ASC', + InstructionsSumFailureReasonDesc = 'INSTRUCTIONS_SUM_FAILURE_REASON_DESC', + InstructionsSumIdAsc = 'INSTRUCTIONS_SUM_ID_ASC', + InstructionsSumIdDesc = 'INSTRUCTIONS_SUM_ID_DESC', + InstructionsSumMediatorsAsc = 'INSTRUCTIONS_SUM_MEDIATORS_ASC', + InstructionsSumMediatorsDesc = 'INSTRUCTIONS_SUM_MEDIATORS_DESC', + InstructionsSumMemoAsc = 'INSTRUCTIONS_SUM_MEMO_ASC', + InstructionsSumMemoDesc = 'INSTRUCTIONS_SUM_MEMO_DESC', + InstructionsSumStatusAsc = 'INSTRUCTIONS_SUM_STATUS_ASC', + InstructionsSumStatusDesc = 'INSTRUCTIONS_SUM_STATUS_DESC', + InstructionsSumTradeDateAsc = 'INSTRUCTIONS_SUM_TRADE_DATE_ASC', + InstructionsSumTradeDateDesc = 'INSTRUCTIONS_SUM_TRADE_DATE_DESC', + InstructionsSumTypeAsc = 'INSTRUCTIONS_SUM_TYPE_ASC', + InstructionsSumTypeDesc = 'INSTRUCTIONS_SUM_TYPE_DESC', + InstructionsSumUpdatedBlockIdAsc = 'INSTRUCTIONS_SUM_UPDATED_BLOCK_ID_ASC', + InstructionsSumUpdatedBlockIdDesc = 'INSTRUCTIONS_SUM_UPDATED_BLOCK_ID_DESC', + InstructionsSumValueDateAsc = 'INSTRUCTIONS_SUM_VALUE_DATE_ASC', + InstructionsSumValueDateDesc = 'INSTRUCTIONS_SUM_VALUE_DATE_DESC', + InstructionsSumVenueIdAsc = 'INSTRUCTIONS_SUM_VENUE_ID_ASC', + InstructionsSumVenueIdDesc = 'INSTRUCTIONS_SUM_VENUE_ID_DESC', + InstructionsVariancePopulationBlockRangeAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + InstructionsVariancePopulationBlockRangeDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + InstructionsVariancePopulationCreatedAtAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_CREATED_AT_ASC', + InstructionsVariancePopulationCreatedAtDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_CREATED_AT_DESC', + InstructionsVariancePopulationCreatedBlockIdAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + InstructionsVariancePopulationCreatedBlockIdDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + InstructionsVariancePopulationEndAfterBlockAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_END_AFTER_BLOCK_ASC', + InstructionsVariancePopulationEndAfterBlockDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_END_AFTER_BLOCK_DESC', + InstructionsVariancePopulationEndBlockAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_END_BLOCK_ASC', + InstructionsVariancePopulationEndBlockDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_END_BLOCK_DESC', + InstructionsVariancePopulationFailureReasonAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_FAILURE_REASON_ASC', + InstructionsVariancePopulationFailureReasonDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_FAILURE_REASON_DESC', + InstructionsVariancePopulationIdAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_ID_ASC', + InstructionsVariancePopulationIdDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_ID_DESC', + InstructionsVariancePopulationMediatorsAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_MEDIATORS_ASC', + InstructionsVariancePopulationMediatorsDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_MEDIATORS_DESC', + InstructionsVariancePopulationMemoAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_MEMO_ASC', + InstructionsVariancePopulationMemoDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_MEMO_DESC', + InstructionsVariancePopulationStatusAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_STATUS_ASC', + InstructionsVariancePopulationStatusDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_STATUS_DESC', + InstructionsVariancePopulationTradeDateAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_TRADE_DATE_ASC', + InstructionsVariancePopulationTradeDateDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_TRADE_DATE_DESC', + InstructionsVariancePopulationTypeAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_TYPE_ASC', + InstructionsVariancePopulationTypeDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_TYPE_DESC', + InstructionsVariancePopulationUpdatedBlockIdAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + InstructionsVariancePopulationUpdatedBlockIdDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + InstructionsVariancePopulationValueDateAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_VALUE_DATE_ASC', + InstructionsVariancePopulationValueDateDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_VALUE_DATE_DESC', + InstructionsVariancePopulationVenueIdAsc = 'INSTRUCTIONS_VARIANCE_POPULATION_VENUE_ID_ASC', + InstructionsVariancePopulationVenueIdDesc = 'INSTRUCTIONS_VARIANCE_POPULATION_VENUE_ID_DESC', + InstructionsVarianceSampleBlockRangeAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + InstructionsVarianceSampleBlockRangeDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + InstructionsVarianceSampleCreatedAtAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_CREATED_AT_ASC', + InstructionsVarianceSampleCreatedAtDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_CREATED_AT_DESC', + InstructionsVarianceSampleCreatedBlockIdAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + InstructionsVarianceSampleCreatedBlockIdDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + InstructionsVarianceSampleEndAfterBlockAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_END_AFTER_BLOCK_ASC', + InstructionsVarianceSampleEndAfterBlockDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_END_AFTER_BLOCK_DESC', + InstructionsVarianceSampleEndBlockAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_END_BLOCK_ASC', + InstructionsVarianceSampleEndBlockDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_END_BLOCK_DESC', + InstructionsVarianceSampleFailureReasonAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_FAILURE_REASON_ASC', + InstructionsVarianceSampleFailureReasonDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_FAILURE_REASON_DESC', + InstructionsVarianceSampleIdAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_ID_ASC', + InstructionsVarianceSampleIdDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_ID_DESC', + InstructionsVarianceSampleMediatorsAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_MEDIATORS_ASC', + InstructionsVarianceSampleMediatorsDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_MEDIATORS_DESC', + InstructionsVarianceSampleMemoAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_MEMO_ASC', + InstructionsVarianceSampleMemoDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_MEMO_DESC', + InstructionsVarianceSampleStatusAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_STATUS_ASC', + InstructionsVarianceSampleStatusDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_STATUS_DESC', + InstructionsVarianceSampleTradeDateAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_TRADE_DATE_ASC', + InstructionsVarianceSampleTradeDateDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_TRADE_DATE_DESC', + InstructionsVarianceSampleTypeAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_TYPE_ASC', + InstructionsVarianceSampleTypeDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_TYPE_DESC', + InstructionsVarianceSampleUpdatedBlockIdAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + InstructionsVarianceSampleUpdatedBlockIdDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + InstructionsVarianceSampleValueDateAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_VALUE_DATE_ASC', + InstructionsVarianceSampleValueDateDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_VALUE_DATE_DESC', + InstructionsVarianceSampleVenueIdAsc = 'INSTRUCTIONS_VARIANCE_SAMPLE_VENUE_ID_ASC', + InstructionsVarianceSampleVenueIdDesc = 'INSTRUCTIONS_VARIANCE_SAMPLE_VENUE_ID_DESC', + Natural = 'NATURAL', + OwnerIdAsc = 'OWNER_ID_ASC', + OwnerIdDesc = 'OWNER_ID_DESC', + PrimaryKeyAsc = 'PRIMARY_KEY_ASC', + PrimaryKeyDesc = 'PRIMARY_KEY_DESC', + SignersAsc = 'SIGNERS_ASC', + SignersDesc = 'SIGNERS_DESC', + StosAverageBlockRangeAsc = 'STOS_AVERAGE_BLOCK_RANGE_ASC', + StosAverageBlockRangeDesc = 'STOS_AVERAGE_BLOCK_RANGE_DESC', + StosAverageCreatedAtAsc = 'STOS_AVERAGE_CREATED_AT_ASC', + StosAverageCreatedAtDesc = 'STOS_AVERAGE_CREATED_AT_DESC', + StosAverageCreatedBlockIdAsc = 'STOS_AVERAGE_CREATED_BLOCK_ID_ASC', + StosAverageCreatedBlockIdDesc = 'STOS_AVERAGE_CREATED_BLOCK_ID_DESC', + StosAverageCreatorIdAsc = 'STOS_AVERAGE_CREATOR_ID_ASC', + StosAverageCreatorIdDesc = 'STOS_AVERAGE_CREATOR_ID_DESC', + StosAverageEndAsc = 'STOS_AVERAGE_END_ASC', + StosAverageEndDesc = 'STOS_AVERAGE_END_DESC', + StosAverageIdAsc = 'STOS_AVERAGE_ID_ASC', + StosAverageIdDesc = 'STOS_AVERAGE_ID_DESC', + StosAverageMinimumInvestmentAsc = 'STOS_AVERAGE_MINIMUM_INVESTMENT_ASC', + StosAverageMinimumInvestmentDesc = 'STOS_AVERAGE_MINIMUM_INVESTMENT_DESC', + StosAverageNameAsc = 'STOS_AVERAGE_NAME_ASC', + StosAverageNameDesc = 'STOS_AVERAGE_NAME_DESC', + StosAverageOfferingAssetIdAsc = 'STOS_AVERAGE_OFFERING_ASSET_ID_ASC', + StosAverageOfferingAssetIdDesc = 'STOS_AVERAGE_OFFERING_ASSET_ID_DESC', + StosAverageOfferingPortfolioIdAsc = 'STOS_AVERAGE_OFFERING_PORTFOLIO_ID_ASC', + StosAverageOfferingPortfolioIdDesc = 'STOS_AVERAGE_OFFERING_PORTFOLIO_ID_DESC', + StosAverageRaisingAssetIdAsc = 'STOS_AVERAGE_RAISING_ASSET_ID_ASC', + StosAverageRaisingAssetIdDesc = 'STOS_AVERAGE_RAISING_ASSET_ID_DESC', + StosAverageRaisingPortfolioIdAsc = 'STOS_AVERAGE_RAISING_PORTFOLIO_ID_ASC', + StosAverageRaisingPortfolioIdDesc = 'STOS_AVERAGE_RAISING_PORTFOLIO_ID_DESC', + StosAverageRaisingTickerAsc = 'STOS_AVERAGE_RAISING_TICKER_ASC', + StosAverageRaisingTickerDesc = 'STOS_AVERAGE_RAISING_TICKER_DESC', + StosAverageStartAsc = 'STOS_AVERAGE_START_ASC', + StosAverageStartDesc = 'STOS_AVERAGE_START_DESC', + StosAverageStatusAsc = 'STOS_AVERAGE_STATUS_ASC', + StosAverageStatusDesc = 'STOS_AVERAGE_STATUS_DESC', + StosAverageStoIdAsc = 'STOS_AVERAGE_STO_ID_ASC', + StosAverageStoIdDesc = 'STOS_AVERAGE_STO_ID_DESC', + StosAverageTiersAsc = 'STOS_AVERAGE_TIERS_ASC', + StosAverageTiersDesc = 'STOS_AVERAGE_TIERS_DESC', + StosAverageUpdatedBlockIdAsc = 'STOS_AVERAGE_UPDATED_BLOCK_ID_ASC', + StosAverageUpdatedBlockIdDesc = 'STOS_AVERAGE_UPDATED_BLOCK_ID_DESC', + StosAverageVenueIdAsc = 'STOS_AVERAGE_VENUE_ID_ASC', + StosAverageVenueIdDesc = 'STOS_AVERAGE_VENUE_ID_DESC', + StosCountAsc = 'STOS_COUNT_ASC', + StosCountDesc = 'STOS_COUNT_DESC', + StosDistinctCountBlockRangeAsc = 'STOS_DISTINCT_COUNT_BLOCK_RANGE_ASC', + StosDistinctCountBlockRangeDesc = 'STOS_DISTINCT_COUNT_BLOCK_RANGE_DESC', + StosDistinctCountCreatedAtAsc = 'STOS_DISTINCT_COUNT_CREATED_AT_ASC', + StosDistinctCountCreatedAtDesc = 'STOS_DISTINCT_COUNT_CREATED_AT_DESC', + StosDistinctCountCreatedBlockIdAsc = 'STOS_DISTINCT_COUNT_CREATED_BLOCK_ID_ASC', + StosDistinctCountCreatedBlockIdDesc = 'STOS_DISTINCT_COUNT_CREATED_BLOCK_ID_DESC', + StosDistinctCountCreatorIdAsc = 'STOS_DISTINCT_COUNT_CREATOR_ID_ASC', + StosDistinctCountCreatorIdDesc = 'STOS_DISTINCT_COUNT_CREATOR_ID_DESC', + StosDistinctCountEndAsc = 'STOS_DISTINCT_COUNT_END_ASC', + StosDistinctCountEndDesc = 'STOS_DISTINCT_COUNT_END_DESC', + StosDistinctCountIdAsc = 'STOS_DISTINCT_COUNT_ID_ASC', + StosDistinctCountIdDesc = 'STOS_DISTINCT_COUNT_ID_DESC', + StosDistinctCountMinimumInvestmentAsc = 'STOS_DISTINCT_COUNT_MINIMUM_INVESTMENT_ASC', + StosDistinctCountMinimumInvestmentDesc = 'STOS_DISTINCT_COUNT_MINIMUM_INVESTMENT_DESC', + StosDistinctCountNameAsc = 'STOS_DISTINCT_COUNT_NAME_ASC', + StosDistinctCountNameDesc = 'STOS_DISTINCT_COUNT_NAME_DESC', + StosDistinctCountOfferingAssetIdAsc = 'STOS_DISTINCT_COUNT_OFFERING_ASSET_ID_ASC', + StosDistinctCountOfferingAssetIdDesc = 'STOS_DISTINCT_COUNT_OFFERING_ASSET_ID_DESC', + StosDistinctCountOfferingPortfolioIdAsc = 'STOS_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_ASC', + StosDistinctCountOfferingPortfolioIdDesc = 'STOS_DISTINCT_COUNT_OFFERING_PORTFOLIO_ID_DESC', + StosDistinctCountRaisingAssetIdAsc = 'STOS_DISTINCT_COUNT_RAISING_ASSET_ID_ASC', + StosDistinctCountRaisingAssetIdDesc = 'STOS_DISTINCT_COUNT_RAISING_ASSET_ID_DESC', + StosDistinctCountRaisingPortfolioIdAsc = 'STOS_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_ASC', + StosDistinctCountRaisingPortfolioIdDesc = 'STOS_DISTINCT_COUNT_RAISING_PORTFOLIO_ID_DESC', + StosDistinctCountRaisingTickerAsc = 'STOS_DISTINCT_COUNT_RAISING_TICKER_ASC', + StosDistinctCountRaisingTickerDesc = 'STOS_DISTINCT_COUNT_RAISING_TICKER_DESC', + StosDistinctCountStartAsc = 'STOS_DISTINCT_COUNT_START_ASC', + StosDistinctCountStartDesc = 'STOS_DISTINCT_COUNT_START_DESC', + StosDistinctCountStatusAsc = 'STOS_DISTINCT_COUNT_STATUS_ASC', + StosDistinctCountStatusDesc = 'STOS_DISTINCT_COUNT_STATUS_DESC', + StosDistinctCountStoIdAsc = 'STOS_DISTINCT_COUNT_STO_ID_ASC', + StosDistinctCountStoIdDesc = 'STOS_DISTINCT_COUNT_STO_ID_DESC', + StosDistinctCountTiersAsc = 'STOS_DISTINCT_COUNT_TIERS_ASC', + StosDistinctCountTiersDesc = 'STOS_DISTINCT_COUNT_TIERS_DESC', + StosDistinctCountUpdatedBlockIdAsc = 'STOS_DISTINCT_COUNT_UPDATED_BLOCK_ID_ASC', + StosDistinctCountUpdatedBlockIdDesc = 'STOS_DISTINCT_COUNT_UPDATED_BLOCK_ID_DESC', + StosDistinctCountVenueIdAsc = 'STOS_DISTINCT_COUNT_VENUE_ID_ASC', + StosDistinctCountVenueIdDesc = 'STOS_DISTINCT_COUNT_VENUE_ID_DESC', + StosMaxBlockRangeAsc = 'STOS_MAX_BLOCK_RANGE_ASC', + StosMaxBlockRangeDesc = 'STOS_MAX_BLOCK_RANGE_DESC', + StosMaxCreatedAtAsc = 'STOS_MAX_CREATED_AT_ASC', + StosMaxCreatedAtDesc = 'STOS_MAX_CREATED_AT_DESC', + StosMaxCreatedBlockIdAsc = 'STOS_MAX_CREATED_BLOCK_ID_ASC', + StosMaxCreatedBlockIdDesc = 'STOS_MAX_CREATED_BLOCK_ID_DESC', + StosMaxCreatorIdAsc = 'STOS_MAX_CREATOR_ID_ASC', + StosMaxCreatorIdDesc = 'STOS_MAX_CREATOR_ID_DESC', + StosMaxEndAsc = 'STOS_MAX_END_ASC', + StosMaxEndDesc = 'STOS_MAX_END_DESC', + StosMaxIdAsc = 'STOS_MAX_ID_ASC', + StosMaxIdDesc = 'STOS_MAX_ID_DESC', + StosMaxMinimumInvestmentAsc = 'STOS_MAX_MINIMUM_INVESTMENT_ASC', + StosMaxMinimumInvestmentDesc = 'STOS_MAX_MINIMUM_INVESTMENT_DESC', + StosMaxNameAsc = 'STOS_MAX_NAME_ASC', + StosMaxNameDesc = 'STOS_MAX_NAME_DESC', + StosMaxOfferingAssetIdAsc = 'STOS_MAX_OFFERING_ASSET_ID_ASC', + StosMaxOfferingAssetIdDesc = 'STOS_MAX_OFFERING_ASSET_ID_DESC', + StosMaxOfferingPortfolioIdAsc = 'STOS_MAX_OFFERING_PORTFOLIO_ID_ASC', + StosMaxOfferingPortfolioIdDesc = 'STOS_MAX_OFFERING_PORTFOLIO_ID_DESC', + StosMaxRaisingAssetIdAsc = 'STOS_MAX_RAISING_ASSET_ID_ASC', + StosMaxRaisingAssetIdDesc = 'STOS_MAX_RAISING_ASSET_ID_DESC', + StosMaxRaisingPortfolioIdAsc = 'STOS_MAX_RAISING_PORTFOLIO_ID_ASC', + StosMaxRaisingPortfolioIdDesc = 'STOS_MAX_RAISING_PORTFOLIO_ID_DESC', + StosMaxRaisingTickerAsc = 'STOS_MAX_RAISING_TICKER_ASC', + StosMaxRaisingTickerDesc = 'STOS_MAX_RAISING_TICKER_DESC', + StosMaxStartAsc = 'STOS_MAX_START_ASC', + StosMaxStartDesc = 'STOS_MAX_START_DESC', + StosMaxStatusAsc = 'STOS_MAX_STATUS_ASC', + StosMaxStatusDesc = 'STOS_MAX_STATUS_DESC', + StosMaxStoIdAsc = 'STOS_MAX_STO_ID_ASC', + StosMaxStoIdDesc = 'STOS_MAX_STO_ID_DESC', + StosMaxTiersAsc = 'STOS_MAX_TIERS_ASC', + StosMaxTiersDesc = 'STOS_MAX_TIERS_DESC', + StosMaxUpdatedBlockIdAsc = 'STOS_MAX_UPDATED_BLOCK_ID_ASC', + StosMaxUpdatedBlockIdDesc = 'STOS_MAX_UPDATED_BLOCK_ID_DESC', + StosMaxVenueIdAsc = 'STOS_MAX_VENUE_ID_ASC', + StosMaxVenueIdDesc = 'STOS_MAX_VENUE_ID_DESC', + StosMinBlockRangeAsc = 'STOS_MIN_BLOCK_RANGE_ASC', + StosMinBlockRangeDesc = 'STOS_MIN_BLOCK_RANGE_DESC', + StosMinCreatedAtAsc = 'STOS_MIN_CREATED_AT_ASC', + StosMinCreatedAtDesc = 'STOS_MIN_CREATED_AT_DESC', + StosMinCreatedBlockIdAsc = 'STOS_MIN_CREATED_BLOCK_ID_ASC', + StosMinCreatedBlockIdDesc = 'STOS_MIN_CREATED_BLOCK_ID_DESC', + StosMinCreatorIdAsc = 'STOS_MIN_CREATOR_ID_ASC', + StosMinCreatorIdDesc = 'STOS_MIN_CREATOR_ID_DESC', + StosMinEndAsc = 'STOS_MIN_END_ASC', + StosMinEndDesc = 'STOS_MIN_END_DESC', + StosMinIdAsc = 'STOS_MIN_ID_ASC', + StosMinIdDesc = 'STOS_MIN_ID_DESC', + StosMinMinimumInvestmentAsc = 'STOS_MIN_MINIMUM_INVESTMENT_ASC', + StosMinMinimumInvestmentDesc = 'STOS_MIN_MINIMUM_INVESTMENT_DESC', + StosMinNameAsc = 'STOS_MIN_NAME_ASC', + StosMinNameDesc = 'STOS_MIN_NAME_DESC', + StosMinOfferingAssetIdAsc = 'STOS_MIN_OFFERING_ASSET_ID_ASC', + StosMinOfferingAssetIdDesc = 'STOS_MIN_OFFERING_ASSET_ID_DESC', + StosMinOfferingPortfolioIdAsc = 'STOS_MIN_OFFERING_PORTFOLIO_ID_ASC', + StosMinOfferingPortfolioIdDesc = 'STOS_MIN_OFFERING_PORTFOLIO_ID_DESC', + StosMinRaisingAssetIdAsc = 'STOS_MIN_RAISING_ASSET_ID_ASC', + StosMinRaisingAssetIdDesc = 'STOS_MIN_RAISING_ASSET_ID_DESC', + StosMinRaisingPortfolioIdAsc = 'STOS_MIN_RAISING_PORTFOLIO_ID_ASC', + StosMinRaisingPortfolioIdDesc = 'STOS_MIN_RAISING_PORTFOLIO_ID_DESC', + StosMinRaisingTickerAsc = 'STOS_MIN_RAISING_TICKER_ASC', + StosMinRaisingTickerDesc = 'STOS_MIN_RAISING_TICKER_DESC', + StosMinStartAsc = 'STOS_MIN_START_ASC', + StosMinStartDesc = 'STOS_MIN_START_DESC', + StosMinStatusAsc = 'STOS_MIN_STATUS_ASC', + StosMinStatusDesc = 'STOS_MIN_STATUS_DESC', + StosMinStoIdAsc = 'STOS_MIN_STO_ID_ASC', + StosMinStoIdDesc = 'STOS_MIN_STO_ID_DESC', + StosMinTiersAsc = 'STOS_MIN_TIERS_ASC', + StosMinTiersDesc = 'STOS_MIN_TIERS_DESC', + StosMinUpdatedBlockIdAsc = 'STOS_MIN_UPDATED_BLOCK_ID_ASC', + StosMinUpdatedBlockIdDesc = 'STOS_MIN_UPDATED_BLOCK_ID_DESC', + StosMinVenueIdAsc = 'STOS_MIN_VENUE_ID_ASC', + StosMinVenueIdDesc = 'STOS_MIN_VENUE_ID_DESC', + StosStddevPopulationBlockRangeAsc = 'STOS_STDDEV_POPULATION_BLOCK_RANGE_ASC', + StosStddevPopulationBlockRangeDesc = 'STOS_STDDEV_POPULATION_BLOCK_RANGE_DESC', + StosStddevPopulationCreatedAtAsc = 'STOS_STDDEV_POPULATION_CREATED_AT_ASC', + StosStddevPopulationCreatedAtDesc = 'STOS_STDDEV_POPULATION_CREATED_AT_DESC', + StosStddevPopulationCreatedBlockIdAsc = 'STOS_STDDEV_POPULATION_CREATED_BLOCK_ID_ASC', + StosStddevPopulationCreatedBlockIdDesc = 'STOS_STDDEV_POPULATION_CREATED_BLOCK_ID_DESC', + StosStddevPopulationCreatorIdAsc = 'STOS_STDDEV_POPULATION_CREATOR_ID_ASC', + StosStddevPopulationCreatorIdDesc = 'STOS_STDDEV_POPULATION_CREATOR_ID_DESC', + StosStddevPopulationEndAsc = 'STOS_STDDEV_POPULATION_END_ASC', + StosStddevPopulationEndDesc = 'STOS_STDDEV_POPULATION_END_DESC', + StosStddevPopulationIdAsc = 'STOS_STDDEV_POPULATION_ID_ASC', + StosStddevPopulationIdDesc = 'STOS_STDDEV_POPULATION_ID_DESC', + StosStddevPopulationMinimumInvestmentAsc = 'STOS_STDDEV_POPULATION_MINIMUM_INVESTMENT_ASC', + StosStddevPopulationMinimumInvestmentDesc = 'STOS_STDDEV_POPULATION_MINIMUM_INVESTMENT_DESC', + StosStddevPopulationNameAsc = 'STOS_STDDEV_POPULATION_NAME_ASC', + StosStddevPopulationNameDesc = 'STOS_STDDEV_POPULATION_NAME_DESC', + StosStddevPopulationOfferingAssetIdAsc = 'STOS_STDDEV_POPULATION_OFFERING_ASSET_ID_ASC', + StosStddevPopulationOfferingAssetIdDesc = 'STOS_STDDEV_POPULATION_OFFERING_ASSET_ID_DESC', + StosStddevPopulationOfferingPortfolioIdAsc = 'STOS_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosStddevPopulationOfferingPortfolioIdDesc = 'STOS_STDDEV_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosStddevPopulationRaisingAssetIdAsc = 'STOS_STDDEV_POPULATION_RAISING_ASSET_ID_ASC', + StosStddevPopulationRaisingAssetIdDesc = 'STOS_STDDEV_POPULATION_RAISING_ASSET_ID_DESC', + StosStddevPopulationRaisingPortfolioIdAsc = 'STOS_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosStddevPopulationRaisingPortfolioIdDesc = 'STOS_STDDEV_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosStddevPopulationRaisingTickerAsc = 'STOS_STDDEV_POPULATION_RAISING_TICKER_ASC', + StosStddevPopulationRaisingTickerDesc = 'STOS_STDDEV_POPULATION_RAISING_TICKER_DESC', + StosStddevPopulationStartAsc = 'STOS_STDDEV_POPULATION_START_ASC', + StosStddevPopulationStartDesc = 'STOS_STDDEV_POPULATION_START_DESC', + StosStddevPopulationStatusAsc = 'STOS_STDDEV_POPULATION_STATUS_ASC', + StosStddevPopulationStatusDesc = 'STOS_STDDEV_POPULATION_STATUS_DESC', + StosStddevPopulationStoIdAsc = 'STOS_STDDEV_POPULATION_STO_ID_ASC', + StosStddevPopulationStoIdDesc = 'STOS_STDDEV_POPULATION_STO_ID_DESC', + StosStddevPopulationTiersAsc = 'STOS_STDDEV_POPULATION_TIERS_ASC', + StosStddevPopulationTiersDesc = 'STOS_STDDEV_POPULATION_TIERS_DESC', + StosStddevPopulationUpdatedBlockIdAsc = 'STOS_STDDEV_POPULATION_UPDATED_BLOCK_ID_ASC', + StosStddevPopulationUpdatedBlockIdDesc = 'STOS_STDDEV_POPULATION_UPDATED_BLOCK_ID_DESC', + StosStddevPopulationVenueIdAsc = 'STOS_STDDEV_POPULATION_VENUE_ID_ASC', + StosStddevPopulationVenueIdDesc = 'STOS_STDDEV_POPULATION_VENUE_ID_DESC', + StosStddevSampleBlockRangeAsc = 'STOS_STDDEV_SAMPLE_BLOCK_RANGE_ASC', + StosStddevSampleBlockRangeDesc = 'STOS_STDDEV_SAMPLE_BLOCK_RANGE_DESC', + StosStddevSampleCreatedAtAsc = 'STOS_STDDEV_SAMPLE_CREATED_AT_ASC', + StosStddevSampleCreatedAtDesc = 'STOS_STDDEV_SAMPLE_CREATED_AT_DESC', + StosStddevSampleCreatedBlockIdAsc = 'STOS_STDDEV_SAMPLE_CREATED_BLOCK_ID_ASC', + StosStddevSampleCreatedBlockIdDesc = 'STOS_STDDEV_SAMPLE_CREATED_BLOCK_ID_DESC', + StosStddevSampleCreatorIdAsc = 'STOS_STDDEV_SAMPLE_CREATOR_ID_ASC', + StosStddevSampleCreatorIdDesc = 'STOS_STDDEV_SAMPLE_CREATOR_ID_DESC', + StosStddevSampleEndAsc = 'STOS_STDDEV_SAMPLE_END_ASC', + StosStddevSampleEndDesc = 'STOS_STDDEV_SAMPLE_END_DESC', + StosStddevSampleIdAsc = 'STOS_STDDEV_SAMPLE_ID_ASC', + StosStddevSampleIdDesc = 'STOS_STDDEV_SAMPLE_ID_DESC', + StosStddevSampleMinimumInvestmentAsc = 'STOS_STDDEV_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosStddevSampleMinimumInvestmentDesc = 'STOS_STDDEV_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosStddevSampleNameAsc = 'STOS_STDDEV_SAMPLE_NAME_ASC', + StosStddevSampleNameDesc = 'STOS_STDDEV_SAMPLE_NAME_DESC', + StosStddevSampleOfferingAssetIdAsc = 'STOS_STDDEV_SAMPLE_OFFERING_ASSET_ID_ASC', + StosStddevSampleOfferingAssetIdDesc = 'STOS_STDDEV_SAMPLE_OFFERING_ASSET_ID_DESC', + StosStddevSampleOfferingPortfolioIdAsc = 'STOS_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosStddevSampleOfferingPortfolioIdDesc = 'STOS_STDDEV_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosStddevSampleRaisingAssetIdAsc = 'STOS_STDDEV_SAMPLE_RAISING_ASSET_ID_ASC', + StosStddevSampleRaisingAssetIdDesc = 'STOS_STDDEV_SAMPLE_RAISING_ASSET_ID_DESC', + StosStddevSampleRaisingPortfolioIdAsc = 'STOS_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosStddevSampleRaisingPortfolioIdDesc = 'STOS_STDDEV_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosStddevSampleRaisingTickerAsc = 'STOS_STDDEV_SAMPLE_RAISING_TICKER_ASC', + StosStddevSampleRaisingTickerDesc = 'STOS_STDDEV_SAMPLE_RAISING_TICKER_DESC', + StosStddevSampleStartAsc = 'STOS_STDDEV_SAMPLE_START_ASC', + StosStddevSampleStartDesc = 'STOS_STDDEV_SAMPLE_START_DESC', + StosStddevSampleStatusAsc = 'STOS_STDDEV_SAMPLE_STATUS_ASC', + StosStddevSampleStatusDesc = 'STOS_STDDEV_SAMPLE_STATUS_DESC', + StosStddevSampleStoIdAsc = 'STOS_STDDEV_SAMPLE_STO_ID_ASC', + StosStddevSampleStoIdDesc = 'STOS_STDDEV_SAMPLE_STO_ID_DESC', + StosStddevSampleTiersAsc = 'STOS_STDDEV_SAMPLE_TIERS_ASC', + StosStddevSampleTiersDesc = 'STOS_STDDEV_SAMPLE_TIERS_DESC', + StosStddevSampleUpdatedBlockIdAsc = 'STOS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosStddevSampleUpdatedBlockIdDesc = 'STOS_STDDEV_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosStddevSampleVenueIdAsc = 'STOS_STDDEV_SAMPLE_VENUE_ID_ASC', + StosStddevSampleVenueIdDesc = 'STOS_STDDEV_SAMPLE_VENUE_ID_DESC', + StosSumBlockRangeAsc = 'STOS_SUM_BLOCK_RANGE_ASC', + StosSumBlockRangeDesc = 'STOS_SUM_BLOCK_RANGE_DESC', + StosSumCreatedAtAsc = 'STOS_SUM_CREATED_AT_ASC', + StosSumCreatedAtDesc = 'STOS_SUM_CREATED_AT_DESC', + StosSumCreatedBlockIdAsc = 'STOS_SUM_CREATED_BLOCK_ID_ASC', + StosSumCreatedBlockIdDesc = 'STOS_SUM_CREATED_BLOCK_ID_DESC', + StosSumCreatorIdAsc = 'STOS_SUM_CREATOR_ID_ASC', + StosSumCreatorIdDesc = 'STOS_SUM_CREATOR_ID_DESC', + StosSumEndAsc = 'STOS_SUM_END_ASC', + StosSumEndDesc = 'STOS_SUM_END_DESC', + StosSumIdAsc = 'STOS_SUM_ID_ASC', + StosSumIdDesc = 'STOS_SUM_ID_DESC', + StosSumMinimumInvestmentAsc = 'STOS_SUM_MINIMUM_INVESTMENT_ASC', + StosSumMinimumInvestmentDesc = 'STOS_SUM_MINIMUM_INVESTMENT_DESC', + StosSumNameAsc = 'STOS_SUM_NAME_ASC', + StosSumNameDesc = 'STOS_SUM_NAME_DESC', + StosSumOfferingAssetIdAsc = 'STOS_SUM_OFFERING_ASSET_ID_ASC', + StosSumOfferingAssetIdDesc = 'STOS_SUM_OFFERING_ASSET_ID_DESC', + StosSumOfferingPortfolioIdAsc = 'STOS_SUM_OFFERING_PORTFOLIO_ID_ASC', + StosSumOfferingPortfolioIdDesc = 'STOS_SUM_OFFERING_PORTFOLIO_ID_DESC', + StosSumRaisingAssetIdAsc = 'STOS_SUM_RAISING_ASSET_ID_ASC', + StosSumRaisingAssetIdDesc = 'STOS_SUM_RAISING_ASSET_ID_DESC', + StosSumRaisingPortfolioIdAsc = 'STOS_SUM_RAISING_PORTFOLIO_ID_ASC', + StosSumRaisingPortfolioIdDesc = 'STOS_SUM_RAISING_PORTFOLIO_ID_DESC', + StosSumRaisingTickerAsc = 'STOS_SUM_RAISING_TICKER_ASC', + StosSumRaisingTickerDesc = 'STOS_SUM_RAISING_TICKER_DESC', + StosSumStartAsc = 'STOS_SUM_START_ASC', + StosSumStartDesc = 'STOS_SUM_START_DESC', + StosSumStatusAsc = 'STOS_SUM_STATUS_ASC', + StosSumStatusDesc = 'STOS_SUM_STATUS_DESC', + StosSumStoIdAsc = 'STOS_SUM_STO_ID_ASC', + StosSumStoIdDesc = 'STOS_SUM_STO_ID_DESC', + StosSumTiersAsc = 'STOS_SUM_TIERS_ASC', + StosSumTiersDesc = 'STOS_SUM_TIERS_DESC', + StosSumUpdatedBlockIdAsc = 'STOS_SUM_UPDATED_BLOCK_ID_ASC', + StosSumUpdatedBlockIdDesc = 'STOS_SUM_UPDATED_BLOCK_ID_DESC', + StosSumVenueIdAsc = 'STOS_SUM_VENUE_ID_ASC', + StosSumVenueIdDesc = 'STOS_SUM_VENUE_ID_DESC', + StosVariancePopulationBlockRangeAsc = 'STOS_VARIANCE_POPULATION_BLOCK_RANGE_ASC', + StosVariancePopulationBlockRangeDesc = 'STOS_VARIANCE_POPULATION_BLOCK_RANGE_DESC', + StosVariancePopulationCreatedAtAsc = 'STOS_VARIANCE_POPULATION_CREATED_AT_ASC', + StosVariancePopulationCreatedAtDesc = 'STOS_VARIANCE_POPULATION_CREATED_AT_DESC', + StosVariancePopulationCreatedBlockIdAsc = 'STOS_VARIANCE_POPULATION_CREATED_BLOCK_ID_ASC', + StosVariancePopulationCreatedBlockIdDesc = 'STOS_VARIANCE_POPULATION_CREATED_BLOCK_ID_DESC', + StosVariancePopulationCreatorIdAsc = 'STOS_VARIANCE_POPULATION_CREATOR_ID_ASC', + StosVariancePopulationCreatorIdDesc = 'STOS_VARIANCE_POPULATION_CREATOR_ID_DESC', + StosVariancePopulationEndAsc = 'STOS_VARIANCE_POPULATION_END_ASC', + StosVariancePopulationEndDesc = 'STOS_VARIANCE_POPULATION_END_DESC', + StosVariancePopulationIdAsc = 'STOS_VARIANCE_POPULATION_ID_ASC', + StosVariancePopulationIdDesc = 'STOS_VARIANCE_POPULATION_ID_DESC', + StosVariancePopulationMinimumInvestmentAsc = 'STOS_VARIANCE_POPULATION_MINIMUM_INVESTMENT_ASC', + StosVariancePopulationMinimumInvestmentDesc = 'STOS_VARIANCE_POPULATION_MINIMUM_INVESTMENT_DESC', + StosVariancePopulationNameAsc = 'STOS_VARIANCE_POPULATION_NAME_ASC', + StosVariancePopulationNameDesc = 'STOS_VARIANCE_POPULATION_NAME_DESC', + StosVariancePopulationOfferingAssetIdAsc = 'STOS_VARIANCE_POPULATION_OFFERING_ASSET_ID_ASC', + StosVariancePopulationOfferingAssetIdDesc = 'STOS_VARIANCE_POPULATION_OFFERING_ASSET_ID_DESC', + StosVariancePopulationOfferingPortfolioIdAsc = 'STOS_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_ASC', + StosVariancePopulationOfferingPortfolioIdDesc = 'STOS_VARIANCE_POPULATION_OFFERING_PORTFOLIO_ID_DESC', + StosVariancePopulationRaisingAssetIdAsc = 'STOS_VARIANCE_POPULATION_RAISING_ASSET_ID_ASC', + StosVariancePopulationRaisingAssetIdDesc = 'STOS_VARIANCE_POPULATION_RAISING_ASSET_ID_DESC', + StosVariancePopulationRaisingPortfolioIdAsc = 'STOS_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_ASC', + StosVariancePopulationRaisingPortfolioIdDesc = 'STOS_VARIANCE_POPULATION_RAISING_PORTFOLIO_ID_DESC', + StosVariancePopulationRaisingTickerAsc = 'STOS_VARIANCE_POPULATION_RAISING_TICKER_ASC', + StosVariancePopulationRaisingTickerDesc = 'STOS_VARIANCE_POPULATION_RAISING_TICKER_DESC', + StosVariancePopulationStartAsc = 'STOS_VARIANCE_POPULATION_START_ASC', + StosVariancePopulationStartDesc = 'STOS_VARIANCE_POPULATION_START_DESC', + StosVariancePopulationStatusAsc = 'STOS_VARIANCE_POPULATION_STATUS_ASC', + StosVariancePopulationStatusDesc = 'STOS_VARIANCE_POPULATION_STATUS_DESC', + StosVariancePopulationStoIdAsc = 'STOS_VARIANCE_POPULATION_STO_ID_ASC', + StosVariancePopulationStoIdDesc = 'STOS_VARIANCE_POPULATION_STO_ID_DESC', + StosVariancePopulationTiersAsc = 'STOS_VARIANCE_POPULATION_TIERS_ASC', + StosVariancePopulationTiersDesc = 'STOS_VARIANCE_POPULATION_TIERS_DESC', + StosVariancePopulationUpdatedBlockIdAsc = 'STOS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_ASC', + StosVariancePopulationUpdatedBlockIdDesc = 'STOS_VARIANCE_POPULATION_UPDATED_BLOCK_ID_DESC', + StosVariancePopulationVenueIdAsc = 'STOS_VARIANCE_POPULATION_VENUE_ID_ASC', + StosVariancePopulationVenueIdDesc = 'STOS_VARIANCE_POPULATION_VENUE_ID_DESC', + StosVarianceSampleBlockRangeAsc = 'STOS_VARIANCE_SAMPLE_BLOCK_RANGE_ASC', + StosVarianceSampleBlockRangeDesc = 'STOS_VARIANCE_SAMPLE_BLOCK_RANGE_DESC', + StosVarianceSampleCreatedAtAsc = 'STOS_VARIANCE_SAMPLE_CREATED_AT_ASC', + StosVarianceSampleCreatedAtDesc = 'STOS_VARIANCE_SAMPLE_CREATED_AT_DESC', + StosVarianceSampleCreatedBlockIdAsc = 'STOS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_ASC', + StosVarianceSampleCreatedBlockIdDesc = 'STOS_VARIANCE_SAMPLE_CREATED_BLOCK_ID_DESC', + StosVarianceSampleCreatorIdAsc = 'STOS_VARIANCE_SAMPLE_CREATOR_ID_ASC', + StosVarianceSampleCreatorIdDesc = 'STOS_VARIANCE_SAMPLE_CREATOR_ID_DESC', + StosVarianceSampleEndAsc = 'STOS_VARIANCE_SAMPLE_END_ASC', + StosVarianceSampleEndDesc = 'STOS_VARIANCE_SAMPLE_END_DESC', + StosVarianceSampleIdAsc = 'STOS_VARIANCE_SAMPLE_ID_ASC', + StosVarianceSampleIdDesc = 'STOS_VARIANCE_SAMPLE_ID_DESC', + StosVarianceSampleMinimumInvestmentAsc = 'STOS_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_ASC', + StosVarianceSampleMinimumInvestmentDesc = 'STOS_VARIANCE_SAMPLE_MINIMUM_INVESTMENT_DESC', + StosVarianceSampleNameAsc = 'STOS_VARIANCE_SAMPLE_NAME_ASC', + StosVarianceSampleNameDesc = 'STOS_VARIANCE_SAMPLE_NAME_DESC', + StosVarianceSampleOfferingAssetIdAsc = 'STOS_VARIANCE_SAMPLE_OFFERING_ASSET_ID_ASC', + StosVarianceSampleOfferingAssetIdDesc = 'STOS_VARIANCE_SAMPLE_OFFERING_ASSET_ID_DESC', + StosVarianceSampleOfferingPortfolioIdAsc = 'STOS_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_ASC', + StosVarianceSampleOfferingPortfolioIdDesc = 'STOS_VARIANCE_SAMPLE_OFFERING_PORTFOLIO_ID_DESC', + StosVarianceSampleRaisingAssetIdAsc = 'STOS_VARIANCE_SAMPLE_RAISING_ASSET_ID_ASC', + StosVarianceSampleRaisingAssetIdDesc = 'STOS_VARIANCE_SAMPLE_RAISING_ASSET_ID_DESC', + StosVarianceSampleRaisingPortfolioIdAsc = 'STOS_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_ASC', + StosVarianceSampleRaisingPortfolioIdDesc = 'STOS_VARIANCE_SAMPLE_RAISING_PORTFOLIO_ID_DESC', + StosVarianceSampleRaisingTickerAsc = 'STOS_VARIANCE_SAMPLE_RAISING_TICKER_ASC', + StosVarianceSampleRaisingTickerDesc = 'STOS_VARIANCE_SAMPLE_RAISING_TICKER_DESC', + StosVarianceSampleStartAsc = 'STOS_VARIANCE_SAMPLE_START_ASC', + StosVarianceSampleStartDesc = 'STOS_VARIANCE_SAMPLE_START_DESC', + StosVarianceSampleStatusAsc = 'STOS_VARIANCE_SAMPLE_STATUS_ASC', + StosVarianceSampleStatusDesc = 'STOS_VARIANCE_SAMPLE_STATUS_DESC', + StosVarianceSampleStoIdAsc = 'STOS_VARIANCE_SAMPLE_STO_ID_ASC', + StosVarianceSampleStoIdDesc = 'STOS_VARIANCE_SAMPLE_STO_ID_DESC', + StosVarianceSampleTiersAsc = 'STOS_VARIANCE_SAMPLE_TIERS_ASC', + StosVarianceSampleTiersDesc = 'STOS_VARIANCE_SAMPLE_TIERS_DESC', + StosVarianceSampleUpdatedBlockIdAsc = 'STOS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_ASC', + StosVarianceSampleUpdatedBlockIdDesc = 'STOS_VARIANCE_SAMPLE_UPDATED_BLOCK_ID_DESC', + StosVarianceSampleVenueIdAsc = 'STOS_VARIANCE_SAMPLE_VENUE_ID_ASC', + StosVarianceSampleVenueIdDesc = 'STOS_VARIANCE_SAMPLE_VENUE_ID_DESC', + TypeAsc = 'TYPE_ASC', + TypeDesc = 'TYPE_DESC', + UpdatedBlockIdAsc = 'UPDATED_BLOCK_ID_ASC', + UpdatedBlockIdDesc = 'UPDATED_BLOCK_ID_DESC', +} + +export type _Metadata = { + __typename?: '_Metadata'; + chain?: Maybe; + deployments?: Maybe; + dynamicDatasources?: Maybe; + evmChainId?: Maybe; + genesisHash?: Maybe; + indexerHealthy?: Maybe; + indexerNodeVersion?: Maybe; + lastCreatedPoiHeight?: Maybe; + lastFinalizedVerifiedHeight?: Maybe; + lastProcessedHeight?: Maybe; + lastProcessedTimestamp?: Maybe; + latestSyncedPoiHeight?: Maybe; + queryNodeVersion?: Maybe; + rowCountEstimate?: Maybe>>; + specName?: Maybe; + startHeight?: Maybe; + targetHeight?: Maybe; + unfinalizedBlocks?: Maybe; +}; + +export type _Metadatas = { + __typename?: '_Metadatas'; + nodes: Array>; + totalCount: Scalars['Int']['output']; +}; + +export enum Account_Histories_Distinct_Enum { + Account = 'ACCOUNT', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + EventId = 'EVENT_ID', + Id = 'ID', + Identity = 'IDENTITY', + Permissions = 'PERMISSIONS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Accounts_Distinct_Enum { + Address = 'ADDRESS', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + EventId = 'EVENT_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + PermissionsId = 'PERMISSIONS_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Agent_Group_Memberships_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + GroupId = 'GROUP_ID', + Id = 'ID', + Member = 'MEMBER', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Agent_Groups_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + Permissions = 'PERMISSIONS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Asset_Documents_Distinct_Enum { + AssetId = 'ASSET_ID', + ContentHash = 'CONTENT_HASH', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + DocumentId = 'DOCUMENT_ID', + FiledAt = 'FILED_AT', + Id = 'ID', + Link = 'LINK', + Name = 'NAME', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Asset_Holders_Distinct_Enum { + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Asset_Mandatory_Mediators_Distinct_Enum { + AddedById = 'ADDED_BY_ID', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Asset_Pre_Approvals_Distinct_Enum { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Asset_Transactions_Distinct_Enum { + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + ExtrinsicIdx = 'EXTRINSIC_IDX', + FromPortfolioId = 'FROM_PORTFOLIO_ID', + FundingRound = 'FUNDING_ROUND', + Id = 'ID', + InstructionId = 'INSTRUCTION_ID', + InstructionMemo = 'INSTRUCTION_MEMO', + NftIds = 'NFT_IDS', + ToPortfolioId = 'TO_PORTFOLIO_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Assets_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventIdx = 'EVENT_IDX', + FundingRound = 'FUNDING_ROUND', + Id = 'ID', + Identifiers = 'IDENTIFIERS', + IsCompliancePaused = 'IS_COMPLIANCE_PAUSED', + IsDivisible = 'IS_DIVISIBLE', + IsFrozen = 'IS_FROZEN', + IsNftCollection = 'IS_NFT_COLLECTION', + IsUniquenessRequired = 'IS_UNIQUENESS_REQUIRED', + Name = 'NAME', + OwnerId = 'OWNER_ID', + Ticker = 'TICKER', + TotalSupply = 'TOTAL_SUPPLY', + TotalTransfers = 'TOTAL_TRANSFERS', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Authorizations_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Data = 'DATA', + Expiry = 'EXPIRY', + FromId = 'FROM_ID', + Id = 'ID', + Status = 'STATUS', + ToId = 'TO_ID', + ToKey = 'TO_KEY', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Blocks_Distinct_Enum { + BlockId = 'BLOCK_ID', + CountEvents = 'COUNT_EVENTS', + CountExtrinsics = 'COUNT_EXTRINSICS', + CountExtrinsicsError = 'COUNT_EXTRINSICS_ERROR', + CountExtrinsicsSigned = 'COUNT_EXTRINSICS_SIGNED', + CountExtrinsicsSuccess = 'COUNT_EXTRINSICS_SUCCESS', + CountExtrinsicsUnsigned = 'COUNT_EXTRINSICS_UNSIGNED', + CreatedAt = 'CREATED_AT', + Datetime = 'DATETIME', + ExtrinsicsRoot = 'EXTRINSICS_ROOT', + Hash = 'HASH', + Id = 'ID', + ParentHash = 'PARENT_HASH', + ParentId = 'PARENT_ID', + SpecVersionId = 'SPEC_VERSION_ID', + StateRoot = 'STATE_ROOT', +} + +export enum Bridge_Events_Distinct_Enum { + Amount = 'AMOUNT', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + EventIdx = 'EVENT_IDX', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + Recipient = 'RECIPIENT', + TxHash = 'TX_HASH', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Child_Identities_Distinct_Enum { + ChildId = 'CHILD_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + ParentId = 'PARENT_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Claim_Scopes_Distinct_Enum { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + Scope = 'SCOPE', + Target = 'TARGET', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Claims_Distinct_Enum { + CddId = 'CDD_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + CustomClaimTypeId = 'CUSTOM_CLAIM_TYPE_ID', + EventIdx = 'EVENT_IDX', + Expiry = 'EXPIRY', + FilterExpiry = 'FILTER_EXPIRY', + Id = 'ID', + IssuanceDate = 'ISSUANCE_DATE', + IssuerId = 'ISSUER_ID', + Jurisdiction = 'JURISDICTION', + LastUpdateDate = 'LAST_UPDATE_DATE', + RevokeDate = 'REVOKE_DATE', + Scope = 'SCOPE', + TargetId = 'TARGET_ID', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Compliances_Distinct_Enum { + AssetId = 'ASSET_ID', + ComplianceId = 'COMPLIANCE_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Data = 'DATA', + Id = 'ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Confidential_Accounts_Distinct_Enum { + Account = 'ACCOUNT', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorId = 'CREATOR_ID', + EventIdx = 'EVENT_IDX', + FrozenForAsset = 'FROZEN_FOR_ASSET', + Id = 'ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Confidential_Asset_Histories_Distinct_Enum { + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + ExtrinsicIdx = 'EXTRINSIC_IDX', + FromId = 'FROM_ID', + Id = 'ID', + Memo = 'MEMO', + ToId = 'TO_ID', + TransactionId = 'TRANSACTION_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Confidential_Asset_Holders_Distinct_Enum { + AccountId = 'ACCOUNT_ID', + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Confidential_Asset_Movements_Distinct_Enum { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + FromId = 'FROM_ID', + Id = 'ID', + Proof = 'PROOF', + ToId = 'TO_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Confidential_Assets_Distinct_Enum { + AllowedVenues = 'ALLOWED_VENUES', + AssetId = 'ASSET_ID', + Auditors = 'AUDITORS', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorId = 'CREATOR_ID', + Data = 'DATA', + EventIdx = 'EVENT_IDX', + Id = 'ID', + IsFrozen = 'IS_FROZEN', + Mediators = 'MEDIATORS', + Ticker = 'TICKER', + TotalSupply = 'TOTAL_SUPPLY', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + VenueFiltering = 'VENUE_FILTERING', +} + +export enum Confidential_Legs_Distinct_Enum { + AssetAuditors = 'ASSET_AUDITORS', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + Mediators = 'MEDIATORS', + ReceiverId = 'RECEIVER_ID', + SenderId = 'SENDER_ID', + TransactionId = 'TRANSACTION_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Confidential_Transaction_Affirmations_Distinct_Enum { + AccountId = 'ACCOUNT_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + LegId = 'LEG_ID', + Party = 'PARTY', + Proofs = 'PROOFS', + Status = 'STATUS', + TransactionId = 'TRANSACTION_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Confidential_Transactions_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + Memo = 'MEMO', + PendingAffirmations = 'PENDING_AFFIRMATIONS', + Status = 'STATUS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + VenueId = 'VENUE_ID', +} + +export enum Confidential_Venues_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorId = 'CREATOR_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + VenueId = 'VENUE_ID', +} + +export enum Custom_Claim_Types_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + Name = 'NAME', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Debugs_Distinct_Enum { + Context = 'CONTEXT', + CreatedAt = 'CREATED_AT', + Id = 'ID', + Line = 'LINE', +} + +export enum Distribution_Payments_Distinct_Enum { + Amount = 'AMOUNT', + AmountAfterTax = 'AMOUNT_AFTER_TAX', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + DistributionId = 'DISTRIBUTION_ID', + EventId = 'EVENT_ID', + Id = 'ID', + Reclaimed = 'RECLAIMED', + TargetId = 'TARGET_ID', + Tax = 'TAX', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Distributions_Distinct_Enum { + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Currency = 'CURRENCY', + ExpiresAt = 'EXPIRES_AT', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + LocalId = 'LOCAL_ID', + PaymentAt = 'PAYMENT_AT', + PerShare = 'PER_SHARE', + PortfolioId = 'PORTFOLIO_ID', + Remaining = 'REMAINING', + Taxes = 'TAXES', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Events_Distinct_Enum { + Attributes = 'ATTRIBUTES', + AttributesTxt = 'ATTRIBUTES_TXT', + BlockId = 'BLOCK_ID', + ClaimExpiry = 'CLAIM_EXPIRY', + ClaimIssuer = 'CLAIM_ISSUER', + ClaimScope = 'CLAIM_SCOPE', + ClaimType = 'CLAIM_TYPE', + CorporateActionTicker = 'CORPORATE_ACTION_TICKER', + CreatedAt = 'CREATED_AT', + EventArg_0 = 'EVENT_ARG_0', + EventArg_1 = 'EVENT_ARG_1', + EventArg_2 = 'EVENT_ARG_2', + EventArg_3 = 'EVENT_ARG_3', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + ExtrinsicId = 'EXTRINSIC_ID', + ExtrinsicIdx = 'EXTRINSIC_IDX', + FundraiserOfferingAsset = 'FUNDRAISER_OFFERING_ASSET', + Id = 'ID', + ModuleId = 'MODULE_ID', + SpecVersionId = 'SPEC_VERSION_ID', + TransferTo = 'TRANSFER_TO', +} + +export enum Extrinsics_Distinct_Enum { + Address = 'ADDRESS', + BlockId = 'BLOCK_ID', + CallId = 'CALL_ID', + CreatedAt = 'CREATED_AT', + ExtrinsicHash = 'EXTRINSIC_HASH', + ExtrinsicIdx = 'EXTRINSIC_IDX', + ExtrinsicLength = 'EXTRINSIC_LENGTH', + Id = 'ID', + ModuleId = 'MODULE_ID', + Nonce = 'NONCE', + Params = 'PARAMS', + ParamsTxt = 'PARAMS_TXT', + Signed = 'SIGNED', + SignedbyAddress = 'SIGNEDBY_ADDRESS', + SpecVersionId = 'SPEC_VERSION_ID', + Success = 'SUCCESS', +} + +export enum Found_Types_Distinct_Enum { + CreatedAt = 'CREATED_AT', + Id = 'ID', + RawType = 'RAW_TYPE', +} + +export enum Fundings_Distinct_Enum { + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + FundingRound = 'FUNDING_ROUND', + Id = 'ID', + TotalFundingAmount = 'TOTAL_FUNDING_AMOUNT', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Identities_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + Did = 'DID', + EventId = 'EVENT_ID', + Id = 'ID', + PrimaryAccount = 'PRIMARY_ACCOUNT', + SecondaryKeysFrozen = 'SECONDARY_KEYS_FROZEN', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Instruction_Affirmations_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Expiry = 'EXPIRY', + Id = 'ID', + Identity = 'IDENTITY', + InstructionId = 'INSTRUCTION_ID', + IsAutomaticallyAffirmed = 'IS_AUTOMATICALLY_AFFIRMED', + IsMediator = 'IS_MEDIATOR', + OffChainReceiptId = 'OFF_CHAIN_RECEIPT_ID', + PartyId = 'PARTY_ID', + Portfolios = 'PORTFOLIOS', + Status = 'STATUS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Instruction_Events_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Event = 'EVENT', + EventIdx = 'EVENT_IDX', + FailureReason = 'FAILURE_REASON', + Id = 'ID', + Identity = 'IDENTITY', + InstructionId = 'INSTRUCTION_ID', + OffChainReceiptId = 'OFF_CHAIN_RECEIPT_ID', + Portfolio = 'PORTFOLIO', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Instruction_Parties_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + Identity = 'IDENTITY', + InstructionId = 'INSTRUCTION_ID', + IsMediator = 'IS_MEDIATOR', + Portfolios = 'PORTFOLIOS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Instructions_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + EndAfterBlock = 'END_AFTER_BLOCK', + EndBlock = 'END_BLOCK', + FailureReason = 'FAILURE_REASON', + Id = 'ID', + Mediators = 'MEDIATORS', + Memo = 'MEMO', + Status = 'STATUS', + TradeDate = 'TRADE_DATE', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + ValueDate = 'VALUE_DATE', + VenueId = 'VENUE_ID', +} + +export enum Investments_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + Id = 'ID', + InvestorId = 'INVESTOR_ID', + OfferingAssetId = 'OFFERING_ASSET_ID', + OfferingToken = 'OFFERING_TOKEN', + OfferingTokenAmount = 'OFFERING_TOKEN_AMOUNT', + RaiseToken = 'RAISE_TOKEN', + RaiseTokenAmount = 'RAISE_TOKEN_AMOUNT', + RaisingAssetId = 'RAISING_ASSET_ID', + StoId = 'STO_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Legs_Distinct_Enum { + Addresses = 'ADDRESSES', + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + From = 'FROM', + FromPortfolio = 'FROM_PORTFOLIO', + Id = 'ID', + InstructionId = 'INSTRUCTION_ID', + LegIndex = 'LEG_INDEX', + LegType = 'LEG_TYPE', + NftIds = 'NFT_IDS', + Ticker = 'TICKER', + To = 'TO', + ToPortfolio = 'TO_PORTFOLIO', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Migrations_Distinct_Enum { + CreatedAt = 'CREATED_AT', + Executed = 'EXECUTED', + Id = 'ID', + Number = 'NUMBER', + ProcessedBlock = 'PROCESSED_BLOCK', + Version = 'VERSION', +} + +export enum Multi_Sig_Proposal_Votes_Distinct_Enum { + Action = 'ACTION', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + EventIdx = 'EVENT_IDX', + ExtrinsicIdx = 'EXTRINSIC_IDX', + Id = 'ID', + ProposalId = 'PROPOSAL_ID', + SignerId = 'SIGNER_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Multi_Sig_Proposals_Distinct_Enum { + ApprovalCount = 'APPROVAL_COUNT', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorAccount = 'CREATOR_ACCOUNT', + CreatorId = 'CREATOR_ID', + Datetime = 'DATETIME', + EventIdx = 'EVENT_IDX', + ExtrinsicIdx = 'EXTRINSIC_IDX', + Id = 'ID', + MultisigId = 'MULTISIG_ID', + Params = 'PARAMS', + ProposalId = 'PROPOSAL_ID', + RejectionCount = 'REJECTION_COUNT', + Status = 'STATUS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Multi_Sig_Signers_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + MultisigId = 'MULTISIG_ID', + SignerType = 'SIGNER_TYPE', + SignerValue = 'SIGNER_VALUE', + Status = 'STATUS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Multi_Sigs_Distinct_Enum { + Address = 'ADDRESS', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorAccountId = 'CREATOR_ACCOUNT_ID', + CreatorId = 'CREATOR_ID', + Id = 'ID', + SignaturesRequired = 'SIGNATURES_REQUIRED', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Nft_Holders_Distinct_Enum { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + NftIds = 'NFT_IDS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Off_Chain_Receipts_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + LegId = 'LEG_ID', + Metadata = 'METADATA', + Signer = 'SIGNER', + Uid = 'UID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Permissions_Distinct_Enum { + Assets = 'ASSETS', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + Id = 'ID', + Portfolios = 'PORTFOLIOS', + Transactions = 'TRANSACTIONS', + TransactionGroups = 'TRANSACTION_GROUPS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Polyx_Transactions_Distinct_Enum { + Address = 'ADDRESS', + Amount = 'AMOUNT', + CallId = 'CALL_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + ExtrinsicId = 'EXTRINSIC_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + Memo = 'MEMO', + ModuleId = 'MODULE_ID', + ToAddress = 'TO_ADDRESS', + ToId = 'TO_ID', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Portfolio_Movements_Distinct_Enum { + Address = 'ADDRESS', + Amount = 'AMOUNT', + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + FromId = 'FROM_ID', + Id = 'ID', + Memo = 'MEMO', + NftIds = 'NFT_IDS', + ToId = 'TO_ID', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Portfolios_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + CustodianId = 'CUSTODIAN_ID', + DeletedAt = 'DELETED_AT', + EventIdx = 'EVENT_IDX', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + Name = 'NAME', + Number = 'NUMBER', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Proposal_Votes_Distinct_Enum { + Account = 'ACCOUNT', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + ProposalId = 'PROPOSAL_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + Vote = 'VOTE', + Weight = 'WEIGHT', +} + +export enum Proposals_Distinct_Enum { + Balance = 'BALANCE', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Description = 'DESCRIPTION', + Id = 'ID', + OwnerId = 'OWNER_ID', + Proposer = 'PROPOSER', + Snapshotted = 'SNAPSHOTTED', + State = 'STATE', + TotalAyeWeight = 'TOTAL_AYE_WEIGHT', + TotalNayWeight = 'TOTAL_NAY_WEIGHT', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + Url = 'URL', +} + +export enum Staking_Events_Distinct_Enum { + Amount = 'AMOUNT', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + EventId = 'EVENT_ID', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + NominatedValidators = 'NOMINATED_VALIDATORS', + StashAccount = 'STASH_ACCOUNT', + TransactionId = 'TRANSACTION_ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Stat_Types_Distinct_Enum { + AssetId = 'ASSET_ID', + ClaimIssuerId = 'CLAIM_ISSUER_ID', + ClaimType = 'CLAIM_TYPE', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + CustomClaimTypeId = 'CUSTOM_CLAIM_TYPE_ID', + Id = 'ID', + OpType = 'OP_TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Stos_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + CreatorId = 'CREATOR_ID', + End = 'END', + Id = 'ID', + MinimumInvestment = 'MINIMUM_INVESTMENT', + Name = 'NAME', + OfferingAssetId = 'OFFERING_ASSET_ID', + OfferingPortfolioId = 'OFFERING_PORTFOLIO_ID', + RaisingAssetId = 'RAISING_ASSET_ID', + RaisingPortfolioId = 'RAISING_PORTFOLIO_ID', + RaisingTicker = 'RAISING_TICKER', + Start = 'START', + Status = 'STATUS', + StoId = 'STO_ID', + Tiers = 'TIERS', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + VenueId = 'VENUE_ID', +} + +export enum Subquery_Versions_Distinct_Enum { + CreatedAt = 'CREATED_AT', + Id = 'ID', + UpdatedAt = 'UPDATED_AT', + Version = 'VERSION', +} + +export enum Ticker_External_Agent_Actions_Distinct_Enum { + AssetId = 'ASSET_ID', + CallerId = 'CALLER_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventId = 'EVENT_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + PalletName = 'PALLET_NAME', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Ticker_External_Agent_Histories_Distinct_Enum { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + EventIdx = 'EVENT_IDX', + Id = 'ID', + IdentityId = 'IDENTITY_ID', + Permissions = 'PERMISSIONS', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Ticker_External_Agents_Distinct_Enum { + AssetId = 'ASSET_ID', + CallerId = 'CALLER_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Datetime = 'DATETIME', + EventIdx = 'EVENT_IDX', + Id = 'ID', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Transfer_Compliance_Exemptions_Distinct_Enum { + AssetId = 'ASSET_ID', + ClaimType = 'CLAIM_TYPE', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + ExemptedEntityId = 'EXEMPTED_ENTITY_ID', + Id = 'ID', + OpType = 'OP_TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Transfer_Compliances_Distinct_Enum { + AssetId = 'ASSET_ID', + ClaimIssuerId = 'CLAIM_ISSUER_ID', + ClaimType = 'CLAIM_TYPE', + ClaimValue = 'CLAIM_VALUE', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Id = 'ID', + Max = 'MAX', + Min = 'MIN', + StatTypeId = 'STAT_TYPE_ID', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + Value = 'VALUE', +} + +export enum Transfer_Managers_Distinct_Enum { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + ExemptedEntities = 'EXEMPTED_ENTITIES', + Id = 'ID', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', + Value = 'VALUE', +} + +export enum Trusted_Claim_Issuers_Distinct_Enum { + AssetId = 'ASSET_ID', + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + EventIdx = 'EVENT_IDX', + Id = 'ID', + Issuer = 'ISSUER', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} + +export enum Venues_Distinct_Enum { + CreatedAt = 'CREATED_AT', + CreatedBlockId = 'CREATED_BLOCK_ID', + Details = 'DETAILS', + Id = 'ID', + OwnerId = 'OWNER_ID', + Signers = 'SIGNERS', + Type = 'TYPE', + UpdatedBlockId = 'UPDATED_BLOCK_ID', +} diff --git a/src/middleware/typesV1.ts b/src/middleware/typesV1.ts index 293e44278d..9f0ab08ba9 100644 --- a/src/middleware/typesV1.ts +++ b/src/middleware/typesV1.ts @@ -3,6 +3,7 @@ import { Scalars } from '~/middleware/types'; export enum ClaimScopeTypeEnum { Identity = 'Identity', Ticker = 'Ticker', + Asset = 'Asset', Custom = 'Custom', } diff --git a/src/testUtils/mocks/dataSources.ts b/src/testUtils/mocks/dataSources.ts index 3f352376f9..a95bc838ee 100644 --- a/src/testUtils/mocks/dataSources.ts +++ b/src/testUtils/mocks/dataSources.ts @@ -1672,7 +1672,7 @@ function isOption(codec: any): codec is Option { return typeof codec?.unwrap === 'function'; } -export type MockCodec = C & { eq: jest.Mock }; +export type MockCodec = C & { eq: jest.Mock; toHex: jest.Mock }; /** * @hidden @@ -1686,6 +1686,7 @@ const createMockCodec = (codec: unknown, isEmpty: boolean): Moc (clone as any)._isCodec = true; clone.isEmpty = isEmpty; clone.eq = jest.fn(); + clone.toHex = jest.fn(); return clone; }; @@ -1712,6 +1713,7 @@ const createMockStringCodec = (value?: string | T): MockCodec value, + toHex: () => `0x${value}`, }, value === undefined ); diff --git a/src/utils/__tests__/conversion.ts b/src/utils/__tests__/conversion.ts index 487cb97f29..56c8e29adb 100644 --- a/src/utils/__tests__/conversion.ts +++ b/src/utils/__tests__/conversion.ts @@ -85,9 +85,11 @@ import { CustomClaimType as MiddlewareCustomClaimType, Instruction, InstructionStatusEnum, + LegTypeEnum, ModuleIdEnum, Portfolio as MiddlewarePortfolio, } from '~/middleware/types'; +import { Instruction as LatestMiddlewareInstruction } from '~/middleware/typesLatest'; import { ClaimScopeTypeEnum } from '~/middleware/typesV1'; import { dsMockUtils, entityMockUtils } from '~/testUtils/mocks'; import { @@ -157,7 +159,7 @@ import { import { InstructionStatus, PermissionGroupIdentifier } from '~/types/internal'; import { tuple } from '~/types/utils'; import { DUMMY_ACCOUNT_ID, MAX_BALANCE, MAX_DECIMALS, MAX_TICKER_LENGTH } from '~/utils/constants'; -import * as internalUtils from '~/utils/internal'; +import * as utilsInternalModule from '~/utils/internal'; import { padString } from '~/utils/internal'; import { @@ -225,6 +227,7 @@ import { isLeiValid, keyAndValueToStatUpdate, keyToAddress, + latestMiddlewareInstructionToHistoricInstruction, legToFungibleLeg, legToNonFungibleLeg, meshAffirmationStatusToAffirmationStatus, @@ -269,6 +272,7 @@ import { permissionGroupIdentifierToAgentGroup, permissionsLikeToPermissions, permissionsToMeshPermissions, + portfolioIdStringToPortfolio, portfolioIdToMeshPortfolioId, portfolioLikeToPortfolio, portfolioLikeToPortfolioId, @@ -4261,11 +4265,25 @@ describe('meshClaimTypeToClaimType', () => { }); describe('middlewareScopeToScope and scopeToMiddlewareScope', () => { + let context: Context; + beforeAll(() => { + dsMockUtils.initMocks(); + context = dsMockUtils.getContextInstance(); + }); + + afterEach(() => { + dsMockUtils.reset(); + }); + + afterAll(() => { + dsMockUtils.cleanup(); + }); + describe('middlewareScopeToScope', () => { it('should convert a MiddlewareScope object to a Scope', () => { let result = middlewareScopeToScope({ type: ClaimScopeTypeEnum.Ticker, - value: 'SOMETHING\u0000\u0000\u0000', + value: 'SOMETHING', }); expect(result).toEqual({ type: ScopeType.Ticker, value: 'SOMETHING' }); @@ -4287,20 +4305,24 @@ describe('middlewareScopeToScope and scopeToMiddlewareScope', () => { }); describe('scopeToMiddlewareScope', () => { - it('should convert a Scope to a MiddlewareScope object', () => { + it('should convert a Scope to a MiddlewareScope object', async () => { let scope: Scope = { type: ScopeType.Identity, value: 'someDid' }; - let result = scopeToMiddlewareScope(scope); + let result = await scopeToMiddlewareScope(scope, context); expect(result).toEqual({ type: ClaimScopeTypeEnum.Identity, value: scope.value }); - scope = { type: ScopeType.Ticker, value: 'someTicker' }; - result = scopeToMiddlewareScope(scope); - expect(result).toEqual({ type: ClaimScopeTypeEnum.Ticker, value: 'someTicker\0\0' }); + const getAssetIdForMiddlewareSpy = jest.spyOn(utilsInternalModule, 'getAssetIdForMiddleware'); + scope = { type: ScopeType.Ticker, value: 'SOME_TICKER' }; + getAssetIdForMiddlewareSpy.mockResolvedValue('0x1234'); + result = await scopeToMiddlewareScope(scope, context); + expect(result).toEqual({ type: ClaimScopeTypeEnum.Asset, value: '0x1234' }); - result = scopeToMiddlewareScope(scope, false); - expect(result).toEqual({ type: ClaimScopeTypeEnum.Ticker, value: 'someTicker' }); + scope = { type: ScopeType.Ticker, value: 'SOME_TICKER' }; + getAssetIdForMiddlewareSpy.mockResolvedValue('SOME_TICKER'); + result = await scopeToMiddlewareScope(scope, context); + expect(result).toEqual({ type: ClaimScopeTypeEnum.Ticker, value: 'SOME_TICKER' }); scope = { type: ScopeType.Custom, value: 'customValue' }; - result = scopeToMiddlewareScope(scope); + result = await scopeToMiddlewareScope(scope, context); expect(result).toEqual({ type: ClaimScopeTypeEnum.Custom, value: scope.value }); }); }); @@ -4424,6 +4446,158 @@ describe('middlewareInstructionToHistoricInstruction', () => { }); }); +describe('latestMiddlewareInstructionToHistoricInstruction', () => { + it('should convert a middleware Instruction object to a HistoricInstruction', () => { + const instructionId1 = new BigNumber(1); + const instructionId2 = new BigNumber(2); + const instructionId3 = new BigNumber(3); + const blockNumber = new BigNumber(1234); + const blockHash = 'someHash'; + const memo = 'memo'; + const ticker = 'SOME_TICKER'; + const amount1 = new BigNumber(10); + const nftId = new BigNumber(5); + const amount3 = new BigNumber(100); + const venueId = new BigNumber(1); + const createdAt = new Date('2022/01/01'); + const status = InstructionStatusEnum.Executed; + const portfolioDid1 = 'portfolioDid1'; + const portfolioKind1 = 'Default'; + + const portfolioDid2 = 'portfolioDid2'; + const portfolioKind2 = '10'; + const type1 = InstructionType.SettleOnAffirmation; + const type2 = InstructionType.SettleOnBlock; + const endBlock = new BigNumber(1238); + const type3 = InstructionType.SettleManual; + const endAfterBlock = new BigNumber(10); + + const legs1 = [ + { + legType: LegTypeEnum.Fungible, + assetId: ticker, + ticker, + amount: amount1.shiftedBy(6).toString(), + fromPortfolio: portfolioKind1, + from: portfolioDid1, + toPortfolio: portfolioKind2, + to: portfolioDid2, + }, + ]; + const legs2 = [ + { + legType: LegTypeEnum.NonFungible, + aassetId: ticker, + ticker, + nftIds: [nftId.toString()], + fromPortfolio: portfolioKind2, + from: portfolioDid2, + toPortfolio: portfolioKind1, + to: portfolioDid1, + }, + ]; + const legs3 = [ + { + legType: LegTypeEnum.OffChain, + assetId: ticker, + ticker, + amount: amount3.shiftedBy(6).toString(), + from: portfolioDid2, + to: portfolioDid1, + }, + ]; + + const context = dsMockUtils.getContextInstance(); + + let instruction = { + id: instructionId1.toString(), + createdBlock: { + blockId: blockNumber.toNumber(), + hash: blockHash, + datetime: createdAt, + }, + status, + memo, + venueId: venueId.toString(), + settlementType: type1, + legs: { + nodes: legs1, + }, + } as unknown as LatestMiddlewareInstruction; + + let result = latestMiddlewareInstructionToHistoricInstruction(instruction, context); + + expect(result.id).toEqual(instructionId1); + expect(result.blockHash).toEqual(blockHash); + expect(result.blockNumber).toEqual(blockNumber); + expect(result.status).toEqual(status); + expect(result.memo).toEqual(memo); + expect(result.type).toEqual(InstructionType.SettleOnAffirmation); + expect(result.venueId).toEqual(venueId); + expect(result.createdAt).toEqual(createdAt); + const resultLeg = result.legs[0] as FungibleLeg; + expect(resultLeg.asset.ticker).toBe(ticker); + expect(resultLeg.amount).toEqual(amount1); + expect(resultLeg.from.owner.did).toBe(portfolioDid1); + expect(resultLeg.to.owner.did).toBe(portfolioDid2); + expect((result.legs[0].to as NumberedPortfolio).id).toEqual(new BigNumber(portfolioKind2)); + + instruction = { + id: instructionId2.toString(), + createdBlock: { + blockId: blockNumber.toNumber(), + hash: blockHash, + datetime: createdAt, + }, + status, + type: type2, + endBlock: endBlock.toString(), + venueId: venueId.toString(), + legs: { + nodes: legs2, + }, + } as unknown as LatestMiddlewareInstruction; + + result = latestMiddlewareInstructionToHistoricInstruction(instruction, context); + + expect(result.id).toEqual(instructionId2); + expect(result.memo).toBeNull(); + expect(result.type).toEqual(InstructionType.SettleOnBlock); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + expect((result as any).endBlock).toEqual(endBlock); + expect(result.venueId).toEqual(venueId); + expect(result.createdAt).toEqual(createdAt); + expect(result.legs.length).toEqual(0); + + instruction = { + id: instructionId3.toString(), + createdBlock: { + blockId: blockNumber.toNumber(), + hash: blockHash, + datetime: createdAt, + }, + status, + type: type3, + endAfterBlock: endAfterBlock.toString(), + venueId: venueId.toString(), + legs: { + nodes: legs3, + }, + } as unknown as LatestMiddlewareInstruction; + + result = latestMiddlewareInstructionToHistoricInstruction(instruction, context); + + expect(result.id).toEqual(instructionId3); + expect(result.memo).toBeNull(); + expect(result.type).toEqual(InstructionType.SettleManual); + // eslint-disable-next-line @typescript-eslint/no-explicit-any + expect((result as any).endAfterBlock).toEqual(endAfterBlock); + expect(result.venueId).toEqual(venueId); + expect(result.createdAt).toEqual(createdAt); + expect(result.legs.length).toEqual(0); + }); +}); + describe('middlewareEventDetailsToEventIdentifier', () => { it('should convert Event details to an EventIdentifier', () => { const eventIdx = 3; @@ -4455,7 +4629,7 @@ describe('middlewareClaimToClaimData', () => { beforeAll(() => { dsMockUtils.initMocks(); entityMockUtils.initMocks(); - createClaimSpy = jest.spyOn(internalUtils, 'createClaim'); + createClaimSpy = jest.spyOn(utilsInternalModule, 'createClaim'); }); afterEach(() => { @@ -9845,3 +10019,20 @@ describe('toCustomClaimTypeWithIdentity', () => { ]); }); }); + +describe('portfolioIdStringToPortfolio', () => { + test('should convert a valid id string to MiddlewarePortfolio object', () => { + const id = '12345/678'; + const expectedOutput = { identityId: '12345', number: 678 }; + + expect(portfolioIdStringToPortfolio(id)).toEqual(expectedOutput); + }); + + test('should return NaN for invalid number part', () => { + const id = '12345/abc'; + const result = portfolioIdStringToPortfolio(id); + + expect(result.identityId).toBe('12345'); + expect(result.number).toBeNaN(); + }); +}); diff --git a/src/utils/__tests__/internal.ts b/src/utils/__tests__/internal.ts index 48cfd33503..68f3e13a6e 100644 --- a/src/utils/__tests__/internal.ts +++ b/src/utils/__tests__/internal.ts @@ -54,6 +54,7 @@ import { tuple } from '~/types/utils'; import { MAX_TICKER_LENGTH, MINIMUM_SQ_VERSION, + SETTLEMENTS_V2_SQ_VERSION, SUPPORTED_NODE_SEMVER, SUPPORTED_SPEC_SEMVER, } from '~/utils/constants'; @@ -83,11 +84,14 @@ import { delay, filterEventRecords, getApiAtBlock, + getAssetIdForMiddleware, + getAssetIdFromMiddleware, getCheckpointValue, getDid, getExemptedIds, getIdentity, getIdentityFromKeyRecord, + getLatestSqVersion, getPortfolioIdsByName, getSecondaryAccountPermissions, hasSameElements, @@ -2299,3 +2303,119 @@ describe('areSameClaims', () => { expect(result).toBeFalsy(); }); }); + +describe('getLatestSqVersion', () => { + let context: Context; + beforeAll(() => { + dsMockUtils.initMocks(); + context = dsMockUtils.getContextInstance(); + }); + + afterEach(() => { + dsMockUtils.reset(); + entityMockUtils.reset(); + }); + + afterAll(() => { + dsMockUtils.cleanup(); + }); + + it('should return latest SQ version', async () => { + dsMockUtils.createApolloQueryMock(latestSqVersionQuery(), { + subqueryVersions: { + nodes: [ + { + version: '9.6.0', + }, + ], + }, + }); + + let result = await getLatestSqVersion(context); + + expect(result).toEqual('9.6.0'); + + dsMockUtils.createApolloQueryMock(latestSqVersionQuery(), { + subqueryVersions: { + nodes: [], + }, + }); + + result = await getLatestSqVersion(context); + + expect(result).toEqual('1.0.0'); + }); +}); + +describe('getAssetIdForMiddleware', () => { + let context: Context; + let latestSqVersionQueryMock: jest.Mock; + + beforeAll(() => { + dsMockUtils.initMocks(); + entityMockUtils.initMocks(); + context = dsMockUtils.getContextInstance(); + latestSqVersionQueryMock = dsMockUtils.createApolloQueryMock(latestSqVersionQuery(), { + subqueryVersions: { + nodes: [ + { + version: '15.0.0', + }, + ], + }, + }); + }); + + afterEach(() => { + dsMockUtils.reset(); + entityMockUtils.reset(); + }); + + afterAll(() => { + dsMockUtils.cleanup(); + }); + + it('should return asset ID compatible with middleware', async () => { + const baseAsset = entityMockUtils.getBaseAssetInstance({ ticker: 'SOME_TICKER' }); + const result = await getAssetIdForMiddleware(baseAsset, context); + + expect(result).toEqual('SOME_TICKER'); + }); + + it('should return asset ID for legacy ticker compatible with middleware', async () => { + latestSqVersionQueryMock.mockResolvedValue({ + data: { + subqueryVersions: { + nodes: [ + { + version: SETTLEMENTS_V2_SQ_VERSION, + }, + ], + }, + }, + }); + const ticker = 'SOME_TICKER'; + const mockTicker = dsMockUtils.createMockTicker(ticker); + mockTicker.toHex = jest.fn(); + mockTicker.toHex.mockReturnValue('0x1111'); + + jest.spyOn(utilsConversionModule, 'stringToTicker').mockReturnValue(mockTicker); + + const result = await getAssetIdForMiddleware('SOME_TICKER', context); + + expect(result).toEqual('0xc5ad37bd0d02c8ce39a7b943f45f0ebc'); + }); +}); + +describe('getAssetIdFromMiddleware', () => { + it('should return asset ID from middleware', async () => { + const assetId = '0x1234'; + const ticker = 'SOME_TICKER'; + const result = getAssetIdFromMiddleware({ + id: assetId, + ticker, + }); + + expect(result).toEqual(ticker); + }); +}); diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 544802e628..5151d57754 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -108,7 +108,7 @@ export const SUPPORTED_NODE_SEMVER = coerce(SUPPORTED_NODE_VERSION_RANGE)!.versi /** * The Polymesh chain spec version range that is compatible with this version of the SDK */ -export const SUPPORTED_SPEC_VERSION_RANGE = '6.0 || 6.1'; +export const SUPPORTED_SPEC_VERSION_RANGE = '6.0 || 6.1 || 6.2 || 6.3'; // eslint-disable-next-line @typescript-eslint/no-non-null-assertion export const SUPPORTED_SPEC_SEMVER = coerce(SUPPORTED_SPEC_VERSION_RANGE)!.version; @@ -142,6 +142,8 @@ export const DEFAULT_CDD_ID = '0x00000000000000000000000000000000000000000000000 */ export const MINIMUM_SQ_VERSION = '10.1.0'; +export const SETTLEMENTS_V2_SQ_VERSION = '16.0.0-alpha.1'; + /** * Global metadata key used to conventionally register an NFT image */ diff --git a/src/utils/conversion.ts b/src/utils/conversion.ts index e61c4550b5..782f545b72 100644 --- a/src/utils/conversion.ts +++ b/src/utils/conversion.ts @@ -84,7 +84,6 @@ import { groupBy, includes, map, - padEnd, range, rangeRight, snakeCase, @@ -117,10 +116,19 @@ import { Claim as MiddlewareClaim, CustomClaimType as MiddlewareCustomClaimType, Instruction, + Leg as MiddlewareLeg, + LegTypeEnum, ModuleIdEnum, Portfolio as MiddlewarePortfolio, + PortfolioMovement as MiddlewarePortfolioMovement, + SettlementResultEnum, } from '~/middleware/types'; -import { ClaimScopeTypeEnum, MiddlewareScope } from '~/middleware/typesV1'; +import { + Instruction as LatestMiddlewareInstruction, + InstructionTypeEnum, + Leg as LatestMiddlewareLeg, +} from '~/middleware/typesLatest'; +import { ClaimScopeTypeEnum, MiddlewareScope, SettlementDirectionEnum } from '~/middleware/typesV1'; import { AssetComplianceResult, AuthorizationType as MeshAuthorizationType, @@ -158,6 +166,7 @@ import { ExternalAgentCondition, FungiblePortfolioMovement, HistoricInstruction, + HistoricSettlement, IdentityCondition, IdentityWithClaims, InputCorporateActionTargets, @@ -170,6 +179,7 @@ import { InstructionType, KnownAssetType, KnownNftType, + Leg, MetadataKeyId, MetadataLockStatus, MetadataSpec, @@ -254,6 +264,8 @@ import { asTicker, conditionsAreEqual, createClaim, + getAssetIdForMiddleware, + getAssetIdFromMiddleware, isModuleOrTagMatch, optionize, padString, @@ -2175,7 +2187,11 @@ export function middlewareScopeToScope(scope: MiddlewareScope): Scope { switch (type) { case ClaimScopeTypeEnum.Ticker: - return { type: ScopeType.Ticker, value: removePadding(value) }; + case ClaimScopeTypeEnum.Asset: + return { + type: ScopeType.Ticker, + value: getAssetIdFromMiddleware({ id: value, ticker: value }), + }; case ClaimScopeTypeEnum.Identity: case ClaimScopeTypeEnum.Custom: return { type: scope.type as ScopeType, value }; @@ -2193,15 +2209,27 @@ export function middlewareScopeToScope(scope: MiddlewareScope): Scope { /** * @hidden */ -export function scopeToMiddlewareScope(scope: Scope, padTicker = true): MiddlewareScope { +export async function scopeToMiddlewareScope( + scope: Scope, + context: Context +): Promise { const { type, value } = scope; switch (type) { - case ScopeType.Ticker: + case ScopeType.Ticker: { + const middlewareAssetId = await getAssetIdForMiddleware(value, context); + if (value === middlewareAssetId) { + // old SQ is used + return { + type: ClaimScopeTypeEnum.Ticker, + value, + }; + } return { - type: ClaimScopeTypeEnum.Ticker, - value: padTicker ? padEnd(value, 12, '\0') : value, + type: ClaimScopeTypeEnum.Asset, + value: middlewareAssetId, }; + } case ScopeType.Identity: case ScopeType.Custom: return { type: ClaimScopeTypeEnum[scope.type], value }; @@ -4717,3 +4745,250 @@ export function toCustomClaimTypeWithIdentity( did: item.identity?.did, })); } + +/** + * @hidden + */ +export function portfolioIdStringToPortfolio(id: string): MiddlewarePortfolio { + const [identityId, number] = id.split('/'); + + return { identityId, number: parseInt(number, 10) } as MiddlewarePortfolio; +} + +/** + * @hidden + */ +function portfolioMovementsToHistoricSettlements( + portfolioMovements: MiddlewarePortfolioMovement[], + context: Context, + handleMiddlewareAddress: (address: string, context: Context) => Account +): HistoricSettlement[] { + return portfolioMovements.map( + ({ createdBlock, fromId, toId, asset, amount, address: accountAddress }) => { + const { blockId, hash } = createdBlock!; + return { + blockNumber: new BigNumber(blockId), + blockHash: hash, + status: SettlementResultEnum.Executed, + accounts: [handleMiddlewareAddress(accountAddress, context)], + legs: [ + { + asset: new FungibleAsset({ ticker: getAssetIdFromMiddleware(asset) }, context), + amount: new BigNumber(amount).shiftedBy(-6), + direction: SettlementDirectionEnum.None, + from: middlewarePortfolioToPortfolio(portfolioIdStringToPortfolio(fromId), context), + to: middlewarePortfolioToPortfolio(portfolioIdStringToPortfolio(toId), context), + }, + ], + }; + } + ); +} + +/** + * @hidden + */ +export function toHistoricalSettlements( + settlementsResult: MiddlewareLeg[], + portfolioMovements: MiddlewarePortfolioMovement[], + portfolioFilter: string, + context: Context +): HistoricSettlement[] { + let data: HistoricSettlement[] = []; + + const getDirection = (fromId: string): SettlementDirectionEnum => { + if (fromId === portfolioFilter) { + return SettlementDirectionEnum.Outgoing; + } + return SettlementDirectionEnum.Incoming; + }; + + /* eslint-disable @typescript-eslint/no-non-null-assertion */ + settlementsResult.forEach(({ settlement }) => { + const { + createdBlock, + result: settlementResult, + legs: { nodes: legs }, + } = settlement!; + + const { blockId, hash } = createdBlock!; + + data.push({ + blockNumber: new BigNumber(blockId), + blockHash: hash, + status: settlementResult as unknown as SettlementResultEnum, + accounts: legs[0].addresses.map( + (accountAddress: string) => + new Account({ address: keyToAddress(accountAddress, context) }, context) + ), + legs: legs.map(({ fromId, toId, assetId, amount }) => ({ + asset: new FungibleAsset({ ticker: assetId }, context), + amount: new BigNumber(amount).shiftedBy(-6), + direction: getDirection(fromId), + from: middlewarePortfolioToPortfolio(portfolioIdStringToPortfolio(fromId), context), + to: middlewarePortfolioToPortfolio(portfolioIdStringToPortfolio(toId), context), + })), + }); + }); + + data = [ + ...data, + ...portfolioMovementsToHistoricSettlements( + portfolioMovements, + context, + (accountAddress: string) => + new Account({ address: keyToAddress(accountAddress, context) }, context) + ), + ]; + /* eslint-enable @typescript-eslint/no-non-null-assertion */ + + return data.sort((a, b) => a.blockNumber.minus(b.blockNumber).toNumber()); +} + +/** + * @hidden + */ +export function latestMiddlewareLegToLeg(leg: LatestMiddlewareLeg, context: Context): Leg { + const { from, fromPortfolio, to, toPortfolio, assetId, ticker, amount } = leg; + + return { + asset: new FungibleAsset( + { ticker: getAssetIdFromMiddleware({ id: assetId, ticker }) }, + context + ), + amount: new BigNumber(amount).shiftedBy(-6), + from: middlewarePortfolioToPortfolio( + { identityId: from, number: fromPortfolio! } as MiddlewarePortfolio, + context + ), + to: middlewarePortfolioToPortfolio( + { identityId: to, number: toPortfolio! } as MiddlewarePortfolio, + context + ), + }; +} + +/** + * @hidden + */ +export function latestMiddlewareDataToHistoricalSettlements( + settlementsResult: LatestMiddlewareLeg[], + portfolioMovements: MiddlewarePortfolioMovement[], + filter: { + identityId: string; + portfolio?: number; + }, + context: Context +): HistoricSettlement[] { + let data: HistoricSettlement[] = []; + + const getDirection = (leg: LatestMiddlewareLeg): SettlementDirectionEnum => { + const { from, fromPortfolio, to, toPortfolio } = leg; + const { identityId, portfolio } = filter; + + let result = SettlementDirectionEnum.None; + + if (from === identityId && fromPortfolio === portfolio) { + result = SettlementDirectionEnum.Incoming; + } else if (to === identityId && toPortfolio === portfolio) { + result = SettlementDirectionEnum.Outgoing; + } + + return result; + }; + + /* eslint-disable @typescript-eslint/no-non-null-assertion */ + settlementsResult.forEach(({ instruction }) => { + const { + createdBlock, + status, + legs: { nodes: legs }, + } = instruction!; + + const { blockId, hash } = createdBlock!; + + data.push({ + blockNumber: new BigNumber(blockId), + blockHash: hash, + status: status as unknown as SettlementResultEnum, + accounts: legs[0].addresses.map((address: string) => new Account({ address }, context)), + legs: legs + .filter(leg => leg.legType === LegTypeEnum.Fungible) + .map(leg => ({ + ...latestMiddlewareLegToLeg(leg, context), + direction: getDirection(leg), + })), + }); + }); + + data = [ + ...data, + ...portfolioMovementsToHistoricSettlements( + portfolioMovements, + context, + (accountAddress: string) => new Account({ address: accountAddress }, context) + ), + ]; + /* eslint-enable @typescript-eslint/no-non-null-assertion */ + + return data.sort((a, b) => a.blockNumber.minus(b.blockNumber).toNumber()); +} + +/** + * @hidden + */ +export function latestMiddlewareInstructionToHistoricInstruction( + instruction: LatestMiddlewareInstruction, + context: Context +): HistoricInstruction { + /* eslint-disable @typescript-eslint/no-non-null-assertion */ + const { + id: instructionId, + status, + type, + endBlock, + endAfterBlock, + tradeDate, + valueDate, + legs: { nodes: legs }, + memo, + createdBlock, + venueId, + } = instruction; + const { blockId, hash, datetime } = createdBlock!; + + let typeDetails; + + if (type === InstructionTypeEnum.SettleManual) { + typeDetails = { + type: InstructionType.SettleManual, + endAfterBlock: new BigNumber(endAfterBlock!), + }; + } else if (type === InstructionTypeEnum.SettleOnBlock) { + typeDetails = { + type: InstructionType.SettleOnBlock, + endBlock: new BigNumber(endBlock!), + }; + } else { + typeDetails = { + type: InstructionType.SettleOnAffirmation, + }; + } + + return { + id: new BigNumber(instructionId), + blockNumber: new BigNumber(blockId), + blockHash: hash, + status, + tradeDate, + valueDate, + ...typeDetails, + memo: memo ?? null, + venueId: new BigNumber(venueId), + createdAt: new Date(datetime), + legs: legs + .filter(leg => leg.legType === LegTypeEnum.Fungible) + .map(leg => latestMiddlewareLegToLeg(leg, context)), + }; + /* eslint-enable @typescript-eslint/no-non-null-assertion */ +} diff --git a/src/utils/internal.ts b/src/utils/internal.ts index 555cdb46f7..e139874eb2 100644 --- a/src/utils/internal.ts +++ b/src/utils/internal.ts @@ -20,8 +20,8 @@ import { } from '@polkadot/types/lookup'; import type { Callback, Codec, Observable } from '@polkadot/types/types'; import { AnyFunction, AnyTuple, IEvent, ISubmittableResult } from '@polkadot/types/types'; -import { stringUpperFirst } from '@polkadot/util'; -import { decodeAddress, encodeAddress } from '@polkadot/util-crypto'; +import { hexAddPrefix, hexStripPrefix, stringToHex, stringUpperFirst } from '@polkadot/util'; +import { blake2AsHex, decodeAddress, encodeAddress } from '@polkadot/util-crypto'; import BigNumber from 'bignumber.js'; import stringify from 'json-stable-stringify'; import { differenceWith, flatMap, isEqual, mapValues, noop, padEnd, uniq } from 'lodash'; @@ -43,6 +43,7 @@ import { } from '~/internal'; import { latestSqVersionQuery } from '~/middleware/queries'; import { Claim as MiddlewareClaim, ClaimTypeEnum, Query } from '~/middleware/types'; +import { Asset as MiddlewareAsset } from '~/middleware/typesLatest'; import { MiddlewareScope } from '~/middleware/typesV1'; import { CaCheckpointType, @@ -92,6 +93,7 @@ import { import { MAX_TICKER_LENGTH, MINIMUM_SQ_VERSION, + SETTLEMENTS_V2_SQ_VERSION, STATE_RUNTIME_VERSION_CALL, SUPPORTED_NODE_SEMVER, SUPPORTED_NODE_VERSION_RANGE, @@ -102,6 +104,7 @@ import { import { bigNumberToU32, claimIssuerToMeshClaimIssuer, + coerceHexToString, identitiesToBtreeSet, identityIdToString, meshClaimTypeToClaimType, @@ -113,6 +116,7 @@ import { statisticsOpTypeToStatType, statsClaimToStatClaimInputType, stringToAccountId, + stringToTicker, transferRestrictionTypeToStatOpType, u64ToBigNumber, } from '~/utils/conversion'; @@ -1891,3 +1895,60 @@ export function areSameClaims( return ClaimType[type] === claim.type; } + +/** + * @hidden + * + * Get latest SQ version + */ +export async function getLatestSqVersion(context: Context): Promise { + const { + data: { + subqueryVersions: { + nodes: [sqVersion], + }, + }, + } = await context.queryMiddleware>(latestSqVersionQuery()); + + return sqVersion?.version || '1.0.0'; +} + +/** + * @hidden + */ +const getAssetIdForLegacyTicker = (ticker: string, context: Context): string => { + const assetComponents = [stringToHex('legacy_ticker'), stringToTicker(ticker, context).toHex()]; + + const data = hexAddPrefix(assetComponents.map(e => hexStripPrefix(e)).join('')); + + return blake2AsHex(data, 128); +}; + +/** + * @hidden + */ +export async function getAssetIdForMiddleware( + asset: string | BaseAsset, + context: Context +): Promise { + const ticker = asTicker(asset); + + const sqVersion = await getLatestSqVersion(context); + + if (lt(sqVersion, SETTLEMENTS_V2_SQ_VERSION)) { + // old SQ requires no change + return ticker; + } + + return getAssetIdForLegacyTicker(ticker, context); +} + +/** + * @hidden + */ +export function getAssetIdFromMiddleware( + assetIdAndTicker: Falsyable> +): string { + const { ticker } = assetIdAndTicker!; + return coerceHexToString(ticker!); +}